diff --git a/.github/workflows/issue_bot.yml b/.github/workflows/issue_bot.yml new file mode 100644 index 000000000..21ab4119f --- /dev/null +++ b/.github/workflows/issue_bot.yml @@ -0,0 +1,25 @@ +name: Issue Bot +on: + schedule: + - cron: "20 */12 * * *" + workflow_dispatch: + +jobs: + close-issues: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - uses: actions/stale@v9.0.0 + with: + any-of-labels: 'wait 4 close' + exempt-issue-labels: 'hold' + days-before-issue-stale: 5 + days-before-issue-close: 3 + 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".' + days-before-pr-stale: -1 + days-before-pr-close: -1 + repo-token: ${{ secrets.GITHUB_TOKEN }} + # debug-only: true diff --git a/.github/workflows/translation.yml b/.github/workflows/translation.yml index 626d90ac4..ec0080da0 100644 --- a/.github/workflows/translation.yml +++ b/.github/workflows/translation.yml @@ -1,12 +1,13 @@ name: Run the po generator script on: + workflow_dispatch: push: branches: - dev jobs: - build: + run_scripts: if: github.repository == 'wavelog/wavelog' runs-on: ubuntu-latest @@ -29,9 +30,13 @@ jobs: run: | git config --global user.name "github-actions" git config --global user.email "github-actions@github.com" - git add . - git commit -m "po/mo updates" - git push + if [[ -n $(git status --porcelain) ]]; then + git add . + git commit -m "po/mo updates" + git push + else + echo "No changes to commit." + fi env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 865dda99c..defe920c8 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 @@ -51,8 +50,13 @@ Wavelog-support can be reached by creating an issue here at github. If you've an ## Contributing -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) +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) + +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), [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/) 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 27a4a0d61..335522087 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -394,10 +394,9 @@ $config['cache_query_string'] = FALSE; | Encryption Key |-------------------------------------------------------------------------- | -| If you use the Encryption class, you must set an encryption key. -| See the user guide for more info. +| Encryption Key is used to encrypt sensitive data. Choose a strong and secure key. +| Example: 'cnawuihp87f4g3ofb837rf93brlcve378rgf93be9837dgvzcl39rlzfbrzvc834lvvf83frgv83zrbzv' | -| https://codeigniter.com/user_guide/libraries/encryption.html | */ $config['encryption_key'] = 'flossie1234555541'; @@ -670,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 03983d214..4b866b010 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 211; +$config['migration_version'] = 214; /* |-------------------------------------------------------------------------- @@ -37,5 +37,20 @@ $config['migration_version'] = 211; $config['migration_path'] = APPPATH . 'migrations/'; +/* +|-------------------------------------------------------------------------- +| Migration Lockfile +|-------------------------------------------------------------------------- +| +| Path to the migration lockfile. +| This lockfile prevents migrations from running twice +| +*/ +$config['migration_lockfile'] = sys_get_temp_dir() . '/.migration_running'; + +// the maximum age of the lockfile in seconds +$config['migration_lf_maxage'] = 300; + + /* End of file migration.php */ /* Location: ./application/config/migration.php */ diff --git a/application/controllers/Accumulated.php b/application/controllers/Accumulated.php index 3f024d14b..f8616fb4b 100644 --- a/application/controllers/Accumulated.php +++ b/application/controllers/Accumulated.php @@ -10,7 +10,7 @@ class Accumulated 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'); } } @@ -40,10 +40,10 @@ class Accumulated extends CI_Controller { //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'); + $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, $period); 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..7dd8af5f7 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() { diff --git a/application/controllers/Api.php b/application/controllers/Api.php index 738d7b75b..a2bdd5a83 100644 --- a/application/controllers/Api.php +++ b/application/controllers/Api.php @@ -325,6 +325,7 @@ class API extends CI_Controller { { http_response_code(200); echo json_encode(['status' => 'successfull', 'message' => 'No new QSOs available.', 'lastfetchedid' => $fetchfromid, 'exported_qsos' => 0, 'adif' => null]); + return; } //convert data to ADIF @@ -551,6 +552,11 @@ class API extends CI_Controller { $user_id = $this->api_model->key_userid($obj['key']); + // Special Case: Yaesu Radio's use CW-U and CW-L which aren't official ADIF Modes. We override this here to CW + if (isset($obj['mode']) && (strtoupper($obj['mode']) == 'CW-U' || strtoupper($obj['mode']) == 'CW-L')) { + $obj['mode'] = 'CW'; + } + // Store Result to Database $this->cat->update($obj, $user_id); diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 754fceda5..675ff5990 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; 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 d0cad9fd8..7aef397c9 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() { @@ -21,8 +21,19 @@ class Contesting extends CI_Controller { $this->load->model('contesting_model'); $this->load->model('bands'); + // Getting the live/post mode from GET command + // 0 = live + // 1 = post (manual) + $get_manual_mode = $this->security->xss_clean($this->input->get('manual')); + if ($get_manual_mode == '0' || $get_manual_mode == '1') { + $data['manual_mode'] = $get_manual_mode; + } else { + show_404(); + } + $data['my_gridsquare'] = $this->stations->find_gridsquare(); $data['radios'] = $this->cat->radios(); + $data['radio_last_updated'] = $this->cat->last_updated()->row(); $data['modes'] = $this->modes->active(); $data['contestnames'] = $this->contesting_model->getActivecontests(); $data['bands'] = $this->bands->get_user_bands_for_qso_entry(); diff --git a/application/controllers/Cron.php b/application/controllers/Cron.php index a122876c1..125ee37de 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(); @@ -94,6 +95,9 @@ class cron extends CI_Controller { 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,7 +105,7 @@ 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 { @@ -142,7 +146,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 +258,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..8741cbf01 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -43,6 +43,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 54115cb98..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'); } @@ -42,9 +42,11 @@ class Debug extends CI_Controller // get mig version from config file $this->load->config('migration'); $data['migration_config'] = $this->config->item('migration_version'); + $data['migration_lockfile'] = $this->config->item('migration_lockfile'); + $data['miglock_lifetime'] = $this->config->item('migration_lf_maxage'); // compare mig versions - if ($data['migration_version'] !== $data['migration_config'] && file_exists('application/cache/.migration_running')) { + if ($data['migration_version'] != $data['migration_config'] && file_exists($data['migration_lockfile'])) { $data['migration_is_uptodate'] = false; } else { $data['migration_is_uptodate'] = true; diff --git a/application/controllers/Distances.php b/application/controllers/Distances.php index f68287ca1..5c65831fa 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() 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..b6b8d2d60 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'); @@ -345,7 +345,7 @@ 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'); @@ -388,6 +388,7 @@ class eqsl extends CI_Controller { return $error; } + session_write_close(); foreach ($images as $image) { $content = file_get_contents("https://www.eqsl.cc" . $image->getAttribute('src')); if ($content === false) { @@ -408,7 +409,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'); } @@ -424,7 +425,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'); } $errors = 0; @@ -484,7 +485,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..53ce1a0df 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'); } } diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 6f3f77b0a..061c12c7a 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -139,7 +139,7 @@ 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)); @@ -1047,7 +1047,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 +1071,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 +1319,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..fa3976e05 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'); } } diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php index 563e2cd2e..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'); @@ -180,8 +178,8 @@ class Lookup extends CI_Controller { public function get_county() { $json = []; - if(!empty($this->input->get("query"))) { - $county = $this->input->get("state"); + if(!empty($this->security->xss_clean($this->input->get("query")))) { + $county = $this->security->xss_clean($this->input->get("state")); $cleanedcounty = explode('(', $county); $cleanedcounty = trim($cleanedcounty[0]); diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 3c4412e23..cb8de7ba0 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 @@ -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/Migrate.php b/application/controllers/Migrate.php index 65bf69dba..d1da26609 100644 --- a/application/controllers/Migrate.php +++ b/application/controllers/Migrate.php @@ -3,6 +3,7 @@ class Migrate extends CI_Controller { public function index() { $this->load->library('Migration'); + $this->load->config('migration'); $result = array(); $latest = $this->migration->latest(); @@ -12,7 +13,7 @@ class Migrate extends CI_Controller { log_message('error', 'Migration failed'); $result['status'] = 'error'; } else { - while (file_exists(APPPATH . 'cache/.migration_running')) { + while (file_exists($this->config->item('migration_lockfile'))) { sleep(1); } $result['status'] = 'success'; 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..821997281 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'); } } diff --git a/application/controllers/Oqrs.php b/application/controllers/Oqrs.php index 52ba6d31a..5e723d484 100644 --- a/application/controllers/Oqrs.php +++ b/application/controllers/Oqrs.php @@ -11,8 +11,8 @@ 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() { 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 5463a0681..0e64e53c3 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,13 +16,24 @@ 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->input->get('manual', TRUE); + if ($get_manual_mode == '0' || $get_manual_mode == '1') { + $data['manual_mode'] = $get_manual_mode; + } else { + show_404(); + } $data['active_station_profile'] = $this->stations->find_active(); $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['query'] = $this->logbook_model->last_custom('5'); $data['dxcc'] = $this->logbook_model->fetchDxcc(); $data['iota'] = $this->logbook_model->fetchIota(); @@ -105,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'); } @@ -136,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); } } @@ -162,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'); @@ -194,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, @@ -251,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() { @@ -265,10 +272,10 @@ class QSO extends CI_Controller { $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(); @@ -285,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(); @@ -294,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 @@ -306,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'); @@ -327,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'); @@ -369,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'); @@ -409,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)) { @@ -439,10 +446,8 @@ class QSO extends CI_Controller { $this->load->library('sota'); $json = []; - if (!empty($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); @@ -451,32 +456,30 @@ class QSO extends CI_Controller { public function get_wwff() { $json = []; - if(!empty($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); } } @@ -487,32 +490,30 @@ class QSO extends CI_Controller { public function get_pota() { $json = []; - if(!empty($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); } } @@ -526,32 +527,30 @@ class QSO extends CI_Controller { public function get_dok() { $json = []; - if(!empty($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); } } @@ -562,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); @@ -571,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); @@ -580,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); @@ -588,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'); @@ -597,7 +596,7 @@ 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'); } + 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(); @@ -609,7 +608,7 @@ class QSO extends CI_Controller { 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 : ''; @@ -623,7 +622,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 6bdad93f2..e58673a43 100644 --- a/application/controllers/Radio.php +++ b/application/controllers/Radio.php @@ -1,15 +1,14 @@ load->model('user_model'); // Check if users logged in - if($this->user_model->validate_session() == 0) { + if ($this->user_model->validate_session() == 0) { // user is not logged in redirect('user/login'); } @@ -17,9 +16,14 @@ // load the view $data['page_title'] = __("Hardware Interfaces"); + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/radio.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/radio.js")), + ]; + $this->load->view('interface_assets/header', $data); $this->load->view('radio/index'); - $this->load->view('interface_assets/footer'); + $this->load->view('interface_assets/footer', $footerData); } function status() { @@ -29,7 +33,7 @@ // Check if users logged in - if($this->user_model->validate_session() == 0) { + if ($this->user_model->validate_session() == 0) { // user is not logged in redirect('user/login'); } @@ -37,57 +41,87 @@ $this->load->model('cat'); $query = $this->cat->status(); - if ($query->num_rows() > 0) - { + + if ($query->num_rows() > 0) { echo ""; - echo ""; - echo ""; - echo ""; - echo "" ; - echo ""; + echo ""; + echo ""; + echo ""; + echo ""; + echo ""; + echo ""; + echo ""; echo ""; - foreach ($query->result() as $row) - { + foreach ($query->result() as $row) { echo ""; - echo ""; + echo ""; 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") { echo ""; } elseif (empty($row->mode_rx) || $row->mode_rx == "non") { - echo ""; + echo ""; } else { - echo ""; + echo ""; + } + + // 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'); } $phpdate = strtotime($row->timestamp); - echo "" ; - echo "" ; + echo ""; + + $last_updated = $this->cat->last_updated()->row()->id; + + if ($last_updated == $row->id) { + echo ''; + } else { + echo ''; + } + + $defaul_user_radio = $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? NULL; + if (!$defaul_user_radio) { + echo '"; echo ""; } echo ""; } else { echo ""; - echo ""; + echo ""; echo ""; } - } function json($id) { + $clean_id = $this->security->xss_clean($id); + $this->load->model('user_model'); // Check if users logged in - if($this->user_model->validate_session() == 0) { + if ($this->user_model->validate_session() == 0) { // user is not logged in // Return Json data header('Content-Type: application/json'); @@ -95,18 +129,16 @@ "error" => "not_logged_in" ), JSON_PRETTY_PRINT); } else { - session_write_close(); + session_write_close(); header('Content-Type: application/json'); $this->load->model('cat'); - $query = $this->cat->radio_status($id); + $query = $this->cat->radio_status($clean_id); - if ($query->num_rows() > 0) - { - foreach ($query->result() as $row) - { + if ($query->num_rows() > 0) { + foreach ($query->result() as $row) { $frequency = $row->frequency; @@ -123,7 +155,7 @@ $mode = "FM"; } } else { - $mode=null; + $mode = null; } if ($row->prop_mode == "SAT") { @@ -143,7 +175,7 @@ if (empty($sat_mode_uplink)) { $sat_mode = ""; } elseif ($sat_mode_uplink !== $sat_mode_downlink) { - $sat_mode = $sat_mode_uplink."/".$sat_mode_downlink; + $sat_mode = $sat_mode_uplink . "/" . $sat_mode_downlink; } else { $sat_mode = $sat_mode_uplink; } @@ -164,22 +196,35 @@ $updated_at = $minutes; // Return Json data - $a_ret['frequency']=$frequency; - if (isset($frequency_rx) && ($frequency_rx != null)) { $a_ret['frequency_rx']=$frequency_rx; } - if (isset($mode) && ($mode != null)) { $a_ret['mode']=$mode; } - if (isset($sat_mode) && ($sat_mode != null)) { $a_ret['satmode']=$sat_mode; } - if (isset($sat_name) && ($sat_name != null)) { $a_ret['satname']=$sat_name; } - if (isset($power) && ($power != null)) { $a_ret['power']=$power; } - if (isset($prop_mode) && ($prop_mode != null)) { $a_ret['prop_mode']=$prop_mode; } - $a_ret['update_minutes_ago']=$updated_at; + $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; + } + if (isset($sat_mode) && ($sat_mode != null)) { + $a_ret['satmode'] = $sat_mode; + } + if (isset($sat_name) && ($sat_name != null)) { + $a_ret['satname'] = $sat_name; + } + if (isset($power) && ($power != null)) { + $a_ret['power'] = $power; + } + if (isset($prop_mode) && ($prop_mode != null)) { + $a_ret['prop_mode'] = $prop_mode; + } + $a_ret['update_minutes_ago'] = $updated_at; echo json_encode($a_ret, JSON_PRETTY_PRINT); } } } } - function get_mode_designator($frequency) - { + function get_mode_designator($frequency) { if ($frequency > 21000000 && $frequency < 22000000) return "H"; if ($frequency > 28000000 && $frequency < 30000000) @@ -207,21 +252,60 @@ } function delete($id) { + + $clean_id = $this->security->xss_clean($id); + // 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!'); redirect('dashboard'); } + if (!$this->user_model->authorize(3)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + } $this->load->model('cat'); - $this->cat->delete($id); + $this->cat->delete($clean_id); + + if ($clean_id == $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? '') { + $this->release_default_radio(); + } $this->session->set_flashdata('message', 'Radio Profile Deleted'); session_write_close(); redirect('radio'); + } + function set_default_radio() { + + // get the radio_id from POST + $clean_radio_id = $this->security->xss_clean($this->input->post('radio_id')); + + // Check Auth + $this->load->model('user_model'); + if (!$this->user_model->authorize(3)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + } + + // we unset the current default radio + $this->release_default_radio(); + + // Set the user_option and session data + $this->user_options_model->set_option('cat', 'default_radio', array('radio_id' => $clean_radio_id)); + $this->session->set_userdata('radio', $clean_radio_id); + } + + function release_default_radio() { + // Check Auth + $this->load->model('user_model'); + if (!$this->user_model->authorize(3)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + } + + // Unset the user_option and session data + $this->user_options_model->del_option('cat', 'default_radio'); + $this->session->unset_userdata('radio'); } } - - -?> diff --git a/application/controllers/Satellite.php b/application/controllers/Satellite.php index ef49f6ce0..04860825b 100644 --- a/application/controllers/Satellite.php +++ b/application/controllers/Satellite.php @@ -12,7 +12,7 @@ class Satellite 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'); } } public function index() @@ -138,4 +138,145 @@ class Satellite extends CI_Controller { echo json_encode($sat_list, JSON_FORCE_OBJECT); } + public function flightpath() { + $this->load->model('satellite_model'); + $this->load->model('stations'); + + $pageData['satellites'] = $this->satellite_model->get_all_satellites_with_tle(); + + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/satellite.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite.js")), + 'assets/js/sections/three-orbit-controls.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/three-orbit-controls.js")), + 'assets/js/sections/satellite_functions.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite_functions.js")), + 'assets/js/sections/flightpath.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/flightpath.js")), + ]; + + $homegrid = explode(',', $this->stations->find_gridsquare()); + + $this->load->library('Qra'); + $pageData['latlng'] = $this->qra->qra2latlong($homegrid[0]); + + // Render Page + $pageData['page_title'] = "Satellite Flightpath"; + $this->load->view('interface_assets/header', $pageData); + $this->load->view('satellite/flightpath'); + $this->load->view('interface_assets/footer', $footerData); + } + + public function get_tle() { + $sat = $this->security->xss_clean($this->input->post('sat')); + $this->load->model('satellite_model'); + $satellite_data = $this->satellite_model->get_tle($sat); + + header('Content-Type: application/json'); + echo json_encode($satellite_data, JSON_FORCE_OBJECT); + } + + public function pass() { + $this->load->model('satellite_model'); + $this->load->model('stations'); + $active_station_id = $this->stations->find_active(); + $pageData['activegrid'] = $this->stations->gridsquare_from_station($active_station_id); + + $pageData['satellites'] = $this->satellite_model->get_all_satellites_with_tle(); + + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/satpasses.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satpasses.js")), + ]; + + // Render Page + $pageData['page_title'] = "Satellite pass"; + $this->load->view('interface_assets/header', $pageData); + $this->load->view('satellite/pass'); + $this->load->view('interface_assets/footer', $footerData); + } + + public function searchpasses() { + try { + $result = $this->get_tle_for_predict(); + $this->calcpass($result); + } + catch (Exception $e) { + header("Content-type: application/json"); + echo json_encode(['ok' => 'Error', 'message' => $e->getMessage() . $e->getCode()]); + } + } + + public function get_tle_for_predict() { + $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 "./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(); + $qth = new Predict_QTH(); + $qth->alt = $this->security->xss_clean($this->input->post('altitude')); // Altitude in meters + + $strQRA = $this->security->xss_clean($this->input->post('yourgrid')); + + 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(!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + $homecoordinates = $this->qra->qra2latlong($this->security->xss_clean($this->input->post('yourgrid'))); + + $qth->lat = $homecoordinates[0]; + $qth->lon = $homecoordinates[1]; + + $temp = preg_split('/\n/', $sat_tle->tle); + + $tle = new Predict_TLE($sat_tle->satellite, $temp[0], $temp[1]); // Instantiate it + $sat = new Predict_Sat($tle); // Load up the satellite data + + $now = Predict_Time::get_current_daynum(); // get the current time as Julian Date (daynum) + + // You can modify some preferences in Predict(), the defaults are below + // + $predict->minEle = intval($this->security->xss_clean($this->input->post('minelevation'))); // Minimum elevation for a pass + $predict->timeRes = 1; // Pass details: time resolution in seconds + $predict->numEntries = 20; // Pass details: number of entries per pass + // $predict->threshold = -6; // Twilight threshold (sun must be at this lat or lower) + + // Get the passes and filter visible only, takes about 4 seconds for 10 days + $results = $predict->get_passes($sat, $qth, $now, 1); + $filtered = $predict->filterVisiblePasses($results); + + $zone = $this->security->xss_clean($this->input->post('timezone')); + + // 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; + $data['format'] = $format; + $this->load->view('satellite/passtable', $data); + } } 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/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..d0acdbe5e 100644 --- a/application/controllers/Timeline.php +++ b/application/controllers/Timeline.php @@ -8,7 +8,7 @@ class Timeline 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/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 a1537ef69..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'); } @@ -372,5 +372,60 @@ class Update extends CI_Controller { } + public function update_tle() { + $mtime = microtime(); + $mtime = explode(" ",$mtime); + $mtime = $mtime[1] + $mtime[0]; + $starttime = $mtime; + + $url = 'https://www.amsat.org/tle/dailytle.txt'; + $curl = curl_init($url); + + curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + + $response = curl_exec($curl); + + $count = 0; + + if ($response === false) { + echo 'Error: ' . curl_error($curl); + } else { + $this->db->empty_table("tle"); + // Split the response into an array of lines + $lines = explode("\n", $response); + + $satname = ''; + $tleline1 = ''; + $tleline2 = ''; + // Process each line + for ($i = 0; $i < count($lines); $i += 3) { + $count++; + // Check if there are at least three lines remaining + if (isset($lines[$i], $lines[$i + 1], $lines[$i + 2])) { + // Get the three lines + $satname = $lines[$i]; + $tleline1 = $lines[$i + 1]; + $tleline2 = $lines[$i + 2]; + $sql = "INSERT INTO tle (satelliteid, tle) select id, ? from satellite where name = ? or exportname = ?"; + $this->db->query($sql,array($tleline1."\n".$tleline2,$satname,$satname)); + } + } + } + + curl_close($curl); + + $mtime = microtime(); + $mtime = explode(" ",$mtime); + $mtime = $mtime[1] + $mtime[0]; + $endtime = $mtime; + $totaltime = ($endtime - $starttime); + echo "This page was created in ".$totaltime." seconds
"; + echo "Records inserted: " . $count . "
"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('tle_update', $datetime , 'no'); + } + } ?> diff --git a/application/controllers/User.php b/application/controllers/User.php index f6345645f..18f31eaaa 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,7 +659,7 @@ 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, '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', '', time() - 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', '', time() - 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', '', time() - 3600, ''); $this->session->set_flashdata('error', __("Login failed. Try again.")); redirect('user/login'); } - + } if ($this->form_validation->run() == FALSE) { @@ -865,11 +889,10 @@ 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, 'secure' => FALSE @@ -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', '', time() - 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); + + // 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..5706e9920 100644 --- a/application/controllers/Visitor.php +++ b/application/controllers/Visitor.php @@ -224,7 +224,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 +260,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 +294,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 +321,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) { 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/Frequency.php b/application/libraries/Frequency.php index 55fa02adf..5be7854fc 100644 --- a/application/libraries/Frequency.php +++ b/application/libraries/Frequency.php @@ -225,9 +225,95 @@ 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) { + + $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/Qra.php b/application/libraries/Qra.php index 7b6675638..d14e0ceb1 100644 --- a/application/libraries/Qra.php +++ b/application/libraries/Qra.php @@ -140,7 +140,9 @@ class Qra { } 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); } 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 9606248c7..7f883bd12 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-17 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" @@ -15,7 +15,79 @@ 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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -28,11 +100,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" @@ -54,12 +127,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 +150,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "" @@ -145,7 +219,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Валиден" @@ -165,12 +239,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "" @@ -180,7 +254,7 @@ msgstr "" #: 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/logbookadvanced/index.php:618 #: 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 @@ -195,12 +269,12 @@ msgstr "" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -238,6 +312,10 @@ msgstr "" msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -259,12 +337,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -275,7 +353,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +363,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +383,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -343,74 +421,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -437,7 +515,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "" @@ -458,17 +536,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Регистриране на състезание" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "" @@ -480,20 +558,44 @@ msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -502,42 +604,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -558,7 +660,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "" @@ -568,7 +670,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -586,19 +688,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -628,7 +730,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -791,15 +893,15 @@ msgstr "Дневник" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -814,18 +916,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -844,17 +946,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: 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,7 +968,7 @@ msgstr "" #: 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" @@ -877,10 +979,10 @@ msgstr "" #: 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/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 @@ -888,36 +990,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -958,12 +1061,12 @@ msgstr "" msgid "Mode" msgstr "Режим" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -985,12 +1088,12 @@ msgstr "Режим" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1013,7 +1116,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1023,7 +1126,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1037,13 +1139,13 @@ msgstr "" msgid "Country" msgstr "Държава" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1055,7 +1157,7 @@ msgstr "Държава" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1064,17 +1166,17 @@ msgstr "Държава" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1092,7 +1194,7 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1104,8 +1206,8 @@ msgstr "" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1116,11 +1218,11 @@ msgstr "" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1132,14 +1234,14 @@ msgstr "" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1155,26 +1257,26 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1183,13 +1285,13 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1231,8 +1333,8 @@ msgstr "" msgid "Band" msgstr "Обхват" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1251,11 +1353,11 @@ msgstr "Обхват" msgid "Frequency" msgstr "Честота" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1273,22 +1375,21 @@ msgstr "Честота" msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1310,7 +1411,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1318,28 +1419,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1348,7 +1476,7 @@ 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 @@ -1360,16 +1488,16 @@ msgstr "" 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 "Редактиране на бележката" @@ -1491,7 +1619,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "" @@ -1499,8 +1627,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1512,8 +1678,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1531,15 +1697,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1557,10 +1787,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 "" @@ -1572,9 +1799,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1607,15 +1835,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1623,22 +1859,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1689,8 +1916,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1702,7 +1929,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1725,20 +1952,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 "" @@ -1747,52 +1971,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1800,27 +2017,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1846,7 +2042,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "" @@ -1906,96 +2102,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2029,7 +2249,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2041,6 +2261,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 "" @@ -2077,31 +2375,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2130,7 +2428,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2143,7 +2441,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Месец" @@ -2163,25 +2461,25 @@ msgstr "" #: 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/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 @@ -2202,26 +2500,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2236,7 +2537,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2275,17 +2576,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2308,7 +2609,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2319,7 +2622,7 @@ msgstr "Сателит" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2334,22 +2637,23 @@ 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/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 "" @@ -2378,44 +2682,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2425,12 +2729,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2445,19 +2749,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2467,7 +2771,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2510,8 +2814,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2524,7 +2828,7 @@ 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 @@ -2552,8 +2856,8 @@ msgstr "Дата" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2579,7 +2883,7 @@ msgstr "Час" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2613,9 +2917,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2630,13 +2934,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2705,6 +3008,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2713,8 +3018,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2876,7 +3182,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2884,15 +3191,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2916,7 +3221,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 "" @@ -2927,7 +3232,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2948,7 +3253,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 "" @@ -2961,8 +3266,8 @@ 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 @@ -2973,7 +3278,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3019,8 +3324,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 @@ -3029,12 +3334,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 @@ -3047,10 +3352,10 @@ 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/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" @@ -3088,17 +3393,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3114,212 +3419,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3367,23 +3679,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3560,11 +3872,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 " @@ -3572,28 +3893,28 @@ 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 "" @@ -3650,7 +3971,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3673,7 +3994,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3681,30 +4013,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:101 -#: 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 "" @@ -3741,7 +4063,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3752,7 +4074,7 @@ msgid "City" msgstr "Град" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3785,14 +4107,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3842,7 +4173,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3938,17 +4269,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3956,20 +4296,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3977,7 +4326,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 " @@ -3986,13 +4335,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 "" @@ -4016,8 +4365,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4072,12 +4421,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4209,9 +4552,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4377,7 +4718,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4413,8 +4754,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4442,10 +4783,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4479,7 +4821,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4534,8 +4876,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4679,14 +5021,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4736,6 +5078,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4749,79 +5092,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4845,7 +5188,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4853,7 +5196,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4861,7 +5204,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4869,7 +5212,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4877,7 +5220,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4885,7 +5228,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4893,7 +5236,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4901,7 +5244,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4909,7 +5252,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4917,7 +5260,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4925,7 +5268,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4933,7 +5276,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4941,7 +5284,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4949,7 +5292,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4957,7 +5300,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4965,7 +5308,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4973,7 +5316,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4981,7 +5324,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5003,69 +5346,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 msgid "Attention: you need to set an active station location." msgstr "Внимание: трябва да зададете местоположение на активната станция." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Разбивка на QSO-тата" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Разбивка по държави" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5095,10 +5438,10 @@ msgstr "Необходими" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5125,15 +5468,15 @@ msgstr "Изпратени" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5155,12 +5498,12 @@ msgstr "Получени" msgid "Requested" msgstr "Заявени" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5254,242 +5597,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5497,98 +5845,117 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5599,7 +5966,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 @@ -5807,6 +6175,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5814,8 +6186,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5928,66 +6300,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6104,19 +6605,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6124,79 +6633,79 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6467,8 +6976,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6489,44 +6998,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6535,18 +7075,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6556,15 +7096,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6573,18 +7113,18 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6595,10 +7135,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6613,14 +7153,14 @@ msgstr "Не" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6647,23 +7187,23 @@ msgstr "" msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6682,8 +7222,8 @@ msgstr "" msgid "Bureau" msgstr "Бюро" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6700,8 +7240,8 @@ msgstr "Бюро" msgid "Direct" msgstr "Директено" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6718,8 +7258,8 @@ msgstr "Директено" msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6729,221 +7269,207 @@ msgstr "" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6980,32 +7506,6 @@ msgstr "" 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 "" @@ -7105,59 +7605,59 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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 "Ръчно синхронизиране" @@ -7669,7 +8169,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 "" @@ -7992,35 +8492,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 "" @@ -8140,7 +8625,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:690 msgid "Previous Contacts" msgstr "Предишни контакти" @@ -8181,16 +8666,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "IOTA референция" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8256,15 +8741,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8282,15 +8771,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8376,6 +8869,75 @@ msgstr "" 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 "" @@ -8396,10 +8958,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 @@ -8449,26 +9007,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8690,8 +9236,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 @@ -8711,8 +9257,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8780,122 +9326,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8903,304 +9448,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9248,6 +9739,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 "" @@ -9272,12 +9768,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 "" @@ -9494,9 +10030,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 @@ -9576,7 +10113,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9602,6 +10139,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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 "" @@ -9631,13 +10175,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 @@ -9680,10 +10224,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 "" @@ -10017,6 +10557,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 "" @@ -10031,96 +10687,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 "" @@ -10170,10 +10747,6 @@ msgstr "Подробности за QSO" msgid "QSL Management" msgstr "Управление на QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Общо разстояние" @@ -10245,10 +10818,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Качване на лице на QSL картичка" @@ -10277,7 +10846,7 @@ msgstr "Маркирайте QSL карта като поискана(Дирек msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" 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..7eae3d45c --- /dev/null +++ b/application/locale/bs/LC_MESSAGES/messages.po @@ -0,0 +1,10953 @@ +# 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-22 13:37+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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 +#: application/views/interface_assets/header.php:150 +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:374 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: 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 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:376 +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:384 +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:245 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:252 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:263 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:319 +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/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:91 +msgid "Valid" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:158 +#: 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 +#, 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:170 +#: application/views/interface_assets/header.php:194 +#: application/views/logbookadvanced/index.php:618 +#: 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 +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:164 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:150 +#: application/views/logbookadvanced/index.php:585 +#: 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:210 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:170 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +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 +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:1285 +#: 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:264 +#: 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:83 +#: application/views/qso/edit_ajax.php:336 +#: 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:1286 +#: 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:284 +#: 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/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:1287 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/qso/edit_ajax.php:346 +#: 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:188 +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:230 +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:168 +#: 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/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:280 +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:379 +#: 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:137 +#: application/controllers/Options.php:148 +#: 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:396 +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:247 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:126 +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 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:284 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:111 +#: application/controllers/Visitor.php:132 +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/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:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:390 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:245 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:307 +#: 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:416 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +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:377 +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:388 +#: 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:402 +#: 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/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/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +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:461 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:462 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:463 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:471 +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:391 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:420 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:428 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:450 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:475 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:488 +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:653 +#: application/controllers/Logbook.php:668 +#: 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:573 +#: 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:656 +#: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 +#: 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:384 +#: 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 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:659 +#: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 +#: 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:381 +#: 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:665 +#: 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/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 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1280 +#: 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/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/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/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:175 +#: application/views/logbookadvanced/index.php:549 +#: 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:78 +#: 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/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:104 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1281 +#: 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:552 +#: 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:79 +#: 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/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 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1282 +#: 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:555 +#: 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:80 +#: 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/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/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1283 +#: 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/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:118 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/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: 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/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 +#: 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:82 +#: application/views/qso/edit_ajax.php:318 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:202 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:1288 +#: 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:173 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/edit.php:64 +#: application/views/logbookadvanced/index.php:167 +#: application/views/logbookadvanced/index.php:588 +#: 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:86 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:177 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:1289 +#: 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/dashboard/index.php:13 +#: 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:171 +#: application/views/logbookadvanced/index.php:561 +#: 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:87 +#: 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/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:257 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/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1290 +#: 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/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:88 +#: 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:1291 +#: 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/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/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:186 +#: application/views/logbookadvanced/index.php:558 +#: 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:89 +#: 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/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:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:87 +#: 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/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 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:603 +#: 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/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/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1314 +#: 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:159 +#: 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:134 +#: 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 +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:423 +#: 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:272 +#: 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: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 +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: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 +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 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:175 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:297 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:299 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:373 +#: application/controllers/Options.php:378 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:375 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:413 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:432 +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 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:104 +#: application/views/interface_assets/header.php:413 +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:426 +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:242 +#: application/views/dashboard/index.php:259 +#: 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:432 +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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Satellite.php:37 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:60 +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:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 +#: 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:99 +#: application/views/visitor/layout/header.php:100 +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:18 +#: 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:377 +#: application/views/interface_assets/header.php:488 +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:608 +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/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:486 +#: 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:518 +#: 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:278 +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:17 +#: application/views/interface_assets/header.php:148 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:152 +#: 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:268 +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:356 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:88 +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:79 +#: application/controllers/Visitor.php:142 +#: application/controllers/Visitor.php:169 +#: application/controllers/Visitor.php:199 +#: application/controllers/Visitor.php:478 +#: 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/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:205 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:411 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:444 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:427 +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:4143 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4154 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4157 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4160 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4163 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4166 +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:220 +#: 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:225 +#: 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/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/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/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:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/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/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:170 +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:83 +#: 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/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:53 +#: 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/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/components/hamsat/table.php:29 +#: 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:197 +#: 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/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:206 +#: 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/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/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 +#: 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:150 +#: 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/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: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:507 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: 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 +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:42 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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:140 +#: 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/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:57 +#: 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:47 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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:141 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:256 +#: 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/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:201 +#: 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:61 +#: 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:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 +#: 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:622 +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/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:622 +#: 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/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 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 +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" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:135 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:152 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +#, 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:158 application/views/adif/import.php:273 +#: 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 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:166 +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/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:179 application/views/adif/import.php:225 +#: 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:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:220 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 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:242 +#, 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:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:251 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:258 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:260 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:269 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +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:107 +#: 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:431 +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:477 +#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: 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/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:119 +#: application/views/update/index.php:30 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:497 +#: 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/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/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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 +#: 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/bandmap/list.php:73 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 +#: 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/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/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/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/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/interface_assets/footer.php:2109 +#: application/views/qso/edit_ajax.php:378 +#: 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/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:528 +#: 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:521 +#: 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/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/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/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/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 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#, 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/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:250 +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/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:247 +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/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:253 +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/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:256 +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/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:259 +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/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:265 +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/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:262 +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:117 +#: application/views/timeline/index.php:204 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:236 +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:162 +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:153 +#: application/views/contesting/index.php:171 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:564 +#: 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:203 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 +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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 +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 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:350 +#: 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:482 +#: 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:303 +#: application/views/view_log/qso.php:570 +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:540 +#: 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/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:152 +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:469 +#: 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:296 +#: application/views/view_log/qso.php:563 +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:94 +#: application/views/contesting/index.php:169 +#: 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: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 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 +#: application/views/qso/index.php:433 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:208 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:232 +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/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 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +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 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +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 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +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 +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:158 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:606 +#: 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 +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:21 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:612 +#: 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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: 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:466 +#: 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:24 +#: application/views/qso/edit_ajax.php:548 +#: application/views/view_log/qso.php:275 +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:34 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:539 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 "" + +#: 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 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:168 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:172 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:174 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:175 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:211 +#: 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 +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/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:77 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:100 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:101 +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:102 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:109 +#, 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:401 +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:219 +#: 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:220 +#: 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:221 +#: 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:222 +#: 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:223 +#: 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:224 +#: 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:225 +#: 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:226 +#: 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:227 +#: 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:228 +#: 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:229 +#: 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:230 +#: 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:231 +#: 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:232 +#: 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:233 +#: 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:234 +#: 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:235 +#: 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:236 +#: 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 "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:56 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:63 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:71 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:79 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:88 +#, 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:94 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:101 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:107 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:115 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:121 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:211 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:251 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +#: 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/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: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/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 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 +#: 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/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/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 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/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:496 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: 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 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:286 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:349 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:146 +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:120 +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:649 +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/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:366 +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:243 +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:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:614 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:609 +#: 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 "" + +#: 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:318 +#: application/views/view_log/qso.php:434 +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:601 +#: application/views/visitor/layout/footer.php:245 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:512 +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:434 +#: 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:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +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:160 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:166 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:186 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:192 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:202 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:212 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:218 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:228 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:234 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:251 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:253 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:270 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:276 +#: 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:282 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:333 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:335 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:97 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:371 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:386 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:394 +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" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:435 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:436 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:438 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:446 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:525 +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:410 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:22 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:73 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:87 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:142 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:153 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:218 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 +#: 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:495 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 +#: 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:494 +#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: 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/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 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/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: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/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 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:313 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 +#: 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:408 +#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: 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 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 +#: 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/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 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 +#: 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/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 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 +#: 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/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:206 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:334 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:344 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:355 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:414 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:426 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:429 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +#: application/views/qso/edit_ajax.php:595 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:431 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:432 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:434 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:435 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:437 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:438 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:440 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:441 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:443 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:444 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:450 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:470 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:473 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:476 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:479 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:482 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:485 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:488 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:494 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:496 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:505 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:524 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:627 +#: 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:148 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:149 +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:404 +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: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/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: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 +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:576 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:168 +#: src/QSLManager/QSO.php:300 +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:133 +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/view_log/qso.php:542 +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:177 +msgid "QTH" +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: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 "" + +#: application/views/qso/edit_ajax.php:369 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:403 +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 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:416 +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 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:436 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +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 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:530 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:576 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:581 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:593 +#: 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 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:596 +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:690 +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:439 +#: 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:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:456 +#: 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:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:538 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:645 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:647 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:704 +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/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:323 +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 +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 +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 +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 +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 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:340 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:342 +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:170 +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:148 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:160 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:167 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:168 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:169 +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: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:40 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:42 application/views/update/index.php:62 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:45 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:47 +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 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:60 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:61 +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:128 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:221 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:228 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:404 +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 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:679 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:241 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:75 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:83 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:97 +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..a3a813493 --- /dev/null +++ b/application/locale/cnr/LC_MESSAGES/messages.po @@ -0,0 +1,10953 @@ +# 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-22 13:37+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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 +#: application/views/interface_assets/header.php:150 +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:374 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: 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 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:376 +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:384 +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:245 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:252 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:263 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:319 +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/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:91 +msgid "Valid" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:158 +#: 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 +#, 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:170 +#: application/views/interface_assets/header.php:194 +#: application/views/logbookadvanced/index.php:618 +#: 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 +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:164 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:150 +#: application/views/logbookadvanced/index.php:585 +#: 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:210 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:170 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +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 +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:1285 +#: 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:264 +#: 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:83 +#: application/views/qso/edit_ajax.php:336 +#: 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:1286 +#: 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:284 +#: 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/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:1287 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/qso/edit_ajax.php:346 +#: 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:188 +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:230 +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:168 +#: 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/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:280 +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:379 +#: 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:137 +#: application/controllers/Options.php:148 +#: 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:396 +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:247 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:126 +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 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:284 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:111 +#: application/controllers/Visitor.php:132 +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/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:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:390 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:245 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:307 +#: 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:416 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +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:377 +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:388 +#: 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:402 +#: 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/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/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +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:461 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:462 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:463 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:471 +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:391 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:420 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:428 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:450 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:475 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:488 +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:653 +#: application/controllers/Logbook.php:668 +#: 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:573 +#: 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:656 +#: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 +#: 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:384 +#: 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 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:659 +#: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 +#: 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:381 +#: 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:665 +#: 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/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 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1280 +#: 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/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/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/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:175 +#: application/views/logbookadvanced/index.php:549 +#: 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:78 +#: 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/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:104 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1281 +#: 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:552 +#: 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:79 +#: 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/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 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1282 +#: 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:555 +#: 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:80 +#: 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/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/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1283 +#: 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/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:118 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/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: 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/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 +#: 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:82 +#: application/views/qso/edit_ajax.php:318 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:202 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:1288 +#: 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:173 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/edit.php:64 +#: application/views/logbookadvanced/index.php:167 +#: application/views/logbookadvanced/index.php:588 +#: 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:86 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:177 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:1289 +#: 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/dashboard/index.php:13 +#: 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:171 +#: application/views/logbookadvanced/index.php:561 +#: 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:87 +#: 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/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:257 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/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1290 +#: 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/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:88 +#: 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:1291 +#: 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/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/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:186 +#: application/views/logbookadvanced/index.php:558 +#: 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:89 +#: 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/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:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:87 +#: 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/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 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:603 +#: 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/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/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1314 +#: 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:159 +#: 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:134 +#: 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 +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:423 +#: 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:272 +#: 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: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 +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: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 +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 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:175 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:297 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:299 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:373 +#: application/controllers/Options.php:378 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:375 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:413 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:432 +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 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:104 +#: application/views/interface_assets/header.php:413 +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:426 +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:242 +#: application/views/dashboard/index.php:259 +#: 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:432 +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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Satellite.php:37 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:60 +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:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 +#: 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:99 +#: application/views/visitor/layout/header.php:100 +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:18 +#: 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:377 +#: application/views/interface_assets/header.php:488 +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:608 +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/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:486 +#: 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:518 +#: 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:278 +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:17 +#: application/views/interface_assets/header.php:148 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:152 +#: 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:268 +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:356 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:88 +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:79 +#: application/controllers/Visitor.php:142 +#: application/controllers/Visitor.php:169 +#: application/controllers/Visitor.php:199 +#: application/controllers/Visitor.php:478 +#: 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/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:205 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:411 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:444 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:427 +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:4143 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4154 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4157 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4160 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4163 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4166 +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:220 +#: 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:225 +#: 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/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/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/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:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/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/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:170 +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:83 +#: 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/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:53 +#: 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/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/components/hamsat/table.php:29 +#: 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:197 +#: 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/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:206 +#: 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/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/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 +#: 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:150 +#: 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/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: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:507 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: 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 +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:42 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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:140 +#: 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/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:57 +#: 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:47 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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:141 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:256 +#: 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/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:201 +#: 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:61 +#: 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:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 +#: 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:622 +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/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:622 +#: 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/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 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 +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" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:135 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:152 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +#, 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:158 application/views/adif/import.php:273 +#: 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 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:166 +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/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:179 application/views/adif/import.php:225 +#: 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:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:220 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 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:242 +#, 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:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:251 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:258 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:260 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:269 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +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:107 +#: 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:431 +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:477 +#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: 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/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:119 +#: application/views/update/index.php:30 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:497 +#: 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/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/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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 +#: 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/bandmap/list.php:73 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 +#: 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/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/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/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/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/interface_assets/footer.php:2109 +#: application/views/qso/edit_ajax.php:378 +#: 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/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:528 +#: 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:521 +#: 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/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/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/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/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 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#, 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/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:250 +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/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:247 +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/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:253 +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/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:256 +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/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:259 +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/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:265 +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/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:262 +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:117 +#: application/views/timeline/index.php:204 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:236 +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:162 +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:153 +#: application/views/contesting/index.php:171 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:564 +#: 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:203 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 +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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 +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 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:350 +#: 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:482 +#: 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:303 +#: application/views/view_log/qso.php:570 +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:540 +#: 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/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:152 +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:469 +#: 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:296 +#: application/views/view_log/qso.php:563 +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:94 +#: application/views/contesting/index.php:169 +#: 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: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 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 +#: application/views/qso/index.php:433 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:208 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:232 +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/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 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +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 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +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 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +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 +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:158 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:606 +#: 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 +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:21 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:612 +#: 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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: 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:466 +#: 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:24 +#: application/views/qso/edit_ajax.php:548 +#: application/views/view_log/qso.php:275 +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:34 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:539 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 "" + +#: 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 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:168 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:172 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:174 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:175 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:211 +#: 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 +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/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:77 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:100 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:101 +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:102 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:109 +#, 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:401 +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:219 +#: 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:220 +#: 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:221 +#: 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:222 +#: 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:223 +#: 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:224 +#: 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:225 +#: 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:226 +#: 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:227 +#: 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:228 +#: 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:229 +#: 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:230 +#: 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:231 +#: 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:232 +#: 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:233 +#: 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:234 +#: 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:235 +#: 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:236 +#: 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 "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:56 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:63 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:71 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:79 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:88 +#, 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:94 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:101 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:107 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:115 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:121 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:211 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:251 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +#: 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/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: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/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 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 +#: 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/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/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 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/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:496 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: 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 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:286 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:349 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:146 +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:120 +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:649 +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/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:366 +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:243 +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:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:614 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:609 +#: 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 "" + +#: 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:318 +#: application/views/view_log/qso.php:434 +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:601 +#: application/views/visitor/layout/footer.php:245 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:512 +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:434 +#: 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:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +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:160 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:166 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:186 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:192 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:202 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:212 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:218 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:228 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:234 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:251 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:253 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:270 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:276 +#: 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:282 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:333 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:335 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:97 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:371 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:386 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:394 +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" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:435 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:436 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:438 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:446 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:525 +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:410 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:22 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:73 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:87 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:142 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:153 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:218 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 +#: 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:495 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 +#: 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:494 +#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: 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/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 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/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: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/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 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:313 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 +#: 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:408 +#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: 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 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 +#: 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/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 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 +#: 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/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 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 +#: 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/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:206 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:334 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:344 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:355 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:414 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:426 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:429 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +#: application/views/qso/edit_ajax.php:595 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:431 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:432 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:434 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:435 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:437 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:438 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:440 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:441 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:443 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:444 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:450 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:470 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:473 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:476 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:479 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:482 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:485 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:488 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:494 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:496 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:505 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:524 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:627 +#: 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:148 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:149 +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:404 +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: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/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: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 +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:576 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:168 +#: src/QSLManager/QSO.php:300 +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:133 +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/view_log/qso.php:542 +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:177 +msgid "QTH" +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: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 "" + +#: application/views/qso/edit_ajax.php:369 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:403 +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 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:416 +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 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:436 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +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 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:530 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:576 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:581 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:593 +#: 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 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:596 +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:690 +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:439 +#: 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:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:456 +#: 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:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:538 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:645 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:647 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:704 +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/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:323 +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 +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 +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 +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 +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 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:340 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:342 +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:170 +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:148 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:160 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:167 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:168 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:169 +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: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:40 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:42 application/views/update/index.php:62 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:45 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:47 +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 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:60 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:61 +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:128 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:221 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:228 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:404 +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 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:679 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:241 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:75 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:83 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:97 +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 1f1e46ad0..2da5256bb 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 bfb3392c0..57058c700 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # Ondřej Koloničný , 2024. +# Michal Šiman , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-22 07:07+0000\n" -"Last-Translator: Ondřej Koloničný \n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-17 10:47+0000\n" +"Last-Translator: Michal Šiman \n" "Language-Team: Czech \n" "Language: cs_CZ\n" @@ -18,6 +19,78 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 5.6.2\n" +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 msgid "Accumulated Statistics" @@ -29,11 +102,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Lokátory" @@ -55,29 +129,30 @@ 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 "" #: application/controllers/Adif.php:18 msgid "valid date" -msgstr "" +msgstr "platné datum" #: application/controllers/Adif.php:20 msgid "date incorrect" -msgstr "" +msgstr "špatné datum" #: application/controllers/Adif.php:29 application/views/adif/import.php:24 msgid "ADIF Export" msgstr "ADIF export" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "ADIF import / export" @@ -143,10 +218,10 @@ msgstr "Klíč nebyl nalezen" #: application/controllers/Api.php:120 msgid "Key Invalid - either not found or disabled" -msgstr "" +msgstr "Neplatný klíč - nebyl nalezen nebo je zakázán" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Platný" @@ -166,12 +241,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "Diplomy - %s" @@ -181,7 +256,7 @@ msgstr "Diplomy - %s" #: 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/logbookadvanced/index.php:618 #: 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 @@ -196,12 +271,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -237,6 +312,10 @@ msgstr "" #: application/controllers/Timeline.php:104 #: application/controllers/Timeline.php:107 msgid "Log View" +msgstr "Zobrazení deníku" + +#: application/controllers/Awards.php:454 +msgid " and band " msgstr "" #: application/controllers/Awards.php:457 @@ -260,12 +339,12 @@ msgid " and " msgstr " a " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,7 +355,7 @@ msgstr " a " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +365,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +385,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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,74 +423,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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 "" -#: 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -438,7 +517,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "" @@ -459,17 +538,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Závodní deník" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Závody" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "" @@ -481,20 +560,44 @@ msgid "Continents" msgstr "Kontinenty" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -503,42 +606,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -559,7 +662,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas export lokátorů" @@ -569,7 +672,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +690,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -630,7 +733,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -794,15 +897,15 @@ msgstr "" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -817,18 +920,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -847,17 +950,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: 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,7 +972,7 @@ msgstr "" #: 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" @@ -880,10 +983,10 @@ msgstr "" #: 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/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 @@ -891,36 +994,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -961,12 +1065,12 @@ msgstr "" msgid "Mode" msgstr "Režim" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -988,12 +1092,12 @@ msgstr "Režim" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1016,7 +1120,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1026,7 +1130,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1040,13 +1143,13 @@ msgstr "" msgid "Country" msgstr "Země" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1058,7 +1161,7 @@ msgstr "Země" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1067,17 +1170,17 @@ msgstr "Země" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1095,7 +1198,7 @@ msgstr "" msgid "State" msgstr "Stát" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1107,8 +1210,8 @@ msgstr "Stát" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1119,11 +1222,11 @@ msgstr "Stát" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1135,14 +1238,14 @@ msgstr "Stát" msgid "Gridsquare" msgstr "Locátor" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1158,26 +1261,26 @@ msgstr "Locátor" msgid "Distance" msgstr "Vzdálenost" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1186,13 +1289,13 @@ msgstr "Vzdálenost" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1234,8 +1337,8 @@ msgstr "Vzdálenost" msgid "Band" msgstr "Pásmo" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1254,11 +1357,11 @@ msgstr "Pásmo" msgid "Frequency" msgstr "Frekvence" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1276,22 +1379,21 @@ msgstr "Frekvence" msgid "Operator" msgstr "Operátor" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1313,7 +1415,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1321,28 +1423,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Režimy" @@ -1351,7 +1480,7 @@ 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 @@ -1363,16 +1492,16 @@ msgstr "" 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" @@ -1494,7 +1623,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "OQRS požadavky" @@ -1502,8 +1631,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1515,8 +1685,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1534,15 +1704,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "Tisk žádaných QSL" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/qso/index.php:312 +msgid "Radio" +msgstr "Rádio" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Možnosti" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Smazat" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1560,10 +1794,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 "" @@ -1575,9 +1806,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1610,15 +1842,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1626,22 +1866,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1692,8 +1923,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1705,7 +1936,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1728,20 +1959,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 "" @@ -1750,52 +1978,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1803,27 +2024,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Smazat" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1849,7 +2049,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Témata" @@ -1909,96 +2109,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2032,7 +2256,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2044,6 +2268,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 "" @@ -2080,31 +2382,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2133,7 +2435,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2146,7 +2448,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Měsíc" @@ -2166,25 +2468,25 @@ msgstr "" #: 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/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 @@ -2205,26 +2507,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2239,7 +2544,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2278,17 +2583,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2311,7 +2616,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2322,7 +2629,7 @@ msgstr "Satelit" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2337,22 +2644,23 @@ 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/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 "Zobrazit" @@ -2381,44 +2689,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2428,12 +2736,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2448,19 +2756,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2470,7 +2778,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2513,8 +2821,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2527,7 +2835,7 @@ 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 @@ -2555,8 +2863,8 @@ msgstr "Datum" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2582,7 +2890,7 @@ msgstr "Čas" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2616,9 +2924,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2633,13 +2941,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2708,6 +3015,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2716,8 +3025,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2879,7 +3189,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2887,15 +3198,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "API klíče" @@ -2919,7 +3228,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" @@ -2930,7 +3239,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2951,7 +3260,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 "" @@ -2964,8 +3273,8 @@ 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 @@ -2976,7 +3285,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3022,8 +3331,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 @@ -3032,12 +3341,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 @@ -3050,10 +3359,10 @@ 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/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" @@ -3091,17 +3400,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3117,212 +3426,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: 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: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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3370,23 +3686,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3563,11 +3879,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 " @@ -3575,28 +3900,28 @@ 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 "" @@ -3653,7 +3978,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3676,7 +4001,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3684,30 +4020,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:101 -#: 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 "" @@ -3744,7 +4070,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3755,7 +4081,7 @@ msgid "City" msgstr "Město" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3788,14 +4114,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3845,7 +4180,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3941,17 +4276,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3959,20 +4303,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3980,7 +4333,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 " @@ -3989,13 +4342,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 "" @@ -4019,8 +4372,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4075,12 +4428,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -msgstr "Rádio" - #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 #: application/views/contesting/index.php:94 @@ -4212,9 +4559,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4380,7 +4725,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4416,8 +4761,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4445,10 +4790,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Dnes" @@ -4482,7 +4828,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4537,8 +4883,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4682,14 +5028,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4739,6 +5085,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4752,79 +5099,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4848,7 +5195,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4856,7 +5203,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4864,7 +5211,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4872,7 +5219,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4880,7 +5227,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4888,7 +5235,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4896,7 +5243,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4904,7 +5251,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4912,7 +5259,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4920,7 +5267,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4928,7 +5275,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4936,7 +5283,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4944,7 +5291,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4952,7 +5299,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4960,7 +5307,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4968,7 +5315,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4976,7 +5323,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4984,7 +5331,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5006,22 +5353,22 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" @@ -5029,47 +5376,47 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:94 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:101 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:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:211 #: 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:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Počet zemí" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5099,10 +5446,10 @@ msgstr "Zbývá" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5129,15 +5476,15 @@ msgstr "Odesláno" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5159,12 +5506,12 @@ msgstr "Přijato" msgid "Requested" msgstr "Vyžádáno" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5258,242 +5605,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5502,98 +5854,117 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5604,7 +5975,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 @@ -5812,6 +6184,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5819,8 +6195,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5933,66 +6309,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "lokátor" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Celkový počet" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL karta" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Režim vývojáře" @@ -6109,19 +6614,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "Globální nastavení" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6129,79 +6642,79 @@ msgstr "Globální nastavení" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "Aktualizace souborů" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "Informace pro ladění" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "Informace o účtu" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "Štítky" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "eQSL import / export" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "Nápověda" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "Fórum" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "Odhlásit se" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6472,8 +6985,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6494,44 +7007,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6540,18 +7084,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6561,15 +7105,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6578,18 +7122,18 @@ msgstr "Ano" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6600,10 +7144,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6618,14 +7162,14 @@ msgstr "Ne" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6652,23 +7196,23 @@ msgstr "Ve frontě" msgid "Invalid (Ignore)" msgstr "Neplatné (Ignorováno)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6687,8 +7231,8 @@ msgstr "" msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6705,8 +7249,8 @@ msgstr "" msgid "Direct" msgstr "Přímá" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6723,8 +7267,8 @@ msgstr "Přímá" msgid "Electronic" msgstr "Elektronická" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6734,221 +7278,207 @@ msgstr "Elektronická" msgid "Manager" msgstr "Správce" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "Možnosti" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6985,32 +7515,6 @@ msgstr "" 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 "" @@ -7114,58 +7618,58 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7686,7 +8190,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 "" @@ -8011,35 +8515,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 "" @@ -8159,7 +8648,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:690 msgid "Previous Contacts" msgstr "Předchozí spojení" @@ -8200,16 +8689,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 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:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8273,15 +8762,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Návrhy" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8299,15 +8792,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8393,6 +8890,75 @@ msgstr "" 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 "Časové pásmo" + +#: 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 "" @@ -8413,10 +8979,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 @@ -8466,26 +9028,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8707,8 +9257,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 @@ -8728,8 +9278,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8797,122 +9347,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8920,304 +9469,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9265,6 +9760,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 "" @@ -9289,12 +9789,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 "" @@ -9511,9 +10051,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 @@ -9593,7 +10134,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9619,6 +10160,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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" @@ -9648,13 +10196,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 @@ -9697,10 +10245,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" @@ -10043,6 +10587,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 "" @@ -10057,100 +10721,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 "" @@ -10200,10 +10781,6 @@ msgstr "Detail spojení" msgid "QSL Management" msgstr "Správa QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "eQSL karta" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Celková vzdálenost" @@ -10275,10 +10852,6 @@ msgstr "Více QSO" msgid "Details" msgstr "Detaily" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "" @@ -10307,7 +10880,7 @@ msgstr "Označit QSL lístek jak odeslaný (Direct)" msgid "eQSL picture" msgstr "obrázek eQSL" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "CSV" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 439df2fda..2a34294f1 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 dcdbbcfc5..e39337e02 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -10,20 +10,95 @@ # Byt3 , 2024. # Kim - DG9VH , 2024. # Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +# Rasmus , 2024. +# Fabian Berg , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-08-01 15:51+0000\n" -"Last-Translator: Fabian Berg <80885850+HB9HIL@users.noreply.github.com>\n" -"Language-Team: German \n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-22 13:37+0000\n" +"Last-Translator: Fabian Berg \n" +"Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" + +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -33,14 +108,15 @@ msgstr "Kumulierte Statistiken" #: application/controllers/Activated_gridmap.php:10 #: application/views/activated_gridmap/index.php:5 msgid "Activated Gridsquare Map" -msgstr "Aktivierte Planquadrate Karte" +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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Planquadrate" @@ -49,7 +125,7 @@ msgstr "Planquadrate" #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:375 msgid "Gridsquares confirmed" -msgstr "Planquadrate bestätigt" +msgstr "Bestätigte Planquadrate" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 @@ -62,14 +138,15 @@ 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 "Aktivierer Karte" +msgstr "Karte der Aktivierer" #: application/controllers/Adif.php:18 msgid "valid date" @@ -77,16 +154,16 @@ msgstr "gültiges Datum" #: application/controllers/Adif.php:20 msgid "date incorrect" -msgstr "Datum nicht korrekt" +msgstr "Ungültiges Datum" #: application/controllers/Adif.php:29 application/views/adif/import.php:24 msgid "ADIF Export" msgstr "ADIF Export" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" -msgstr "ADIF Import / Export" +msgstr "ADIF Import/Export" #: application/controllers/Adif.php:169 application/views/adif/import.php:21 #: application/views/lotw/import.php:3 @@ -104,7 +181,7 @@ msgstr "Stations-Standort ist nicht gültig für diesen Benutzer" #: application/controllers/Adif.php:252 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" -msgstr "ADIF Importiert" +msgstr "ADIF importiert" #: application/controllers/Adif.php:263 msgid "DCL Import" @@ -112,7 +189,7 @@ msgstr "DCL Import" #: application/controllers/Adif.php:319 msgid "DCL Data Imported" -msgstr "DCL Daten importiert" +msgstr "DCL-Daten importiert" #: application/controllers/Api.php:26 msgid "API" @@ -120,25 +197,25 @@ msgstr "API" #: application/controllers/Api.php:50 application/views/api/description.php:26 msgid "API Description" -msgstr "API Beschreibung" +msgstr "API-Beschreibung" #: application/controllers/Api.php:51 msgid "API Key is required. Do not change this field" -msgstr "API Schlüssel ist notwendig. Verändere dieses Feld nicht" +msgstr "API-Schlüssel ist notwendig. Verändere dieses Feld nicht" #: application/controllers/Api.php:57 msgid "Edit API Description" -msgstr "Bearbeite API Beschreibung" +msgstr "Bearbeite API-Beschreibung" #: application/controllers/Api.php:69 #, php-format msgid "API Key %s description has been updated." -msgstr "API Schlüssel %s Beschreibung wurde aktualisiert." +msgstr "API-Schlüssel %s Beschreibung wurde aktualisiert." #: application/controllers/Api.php:109 #, php-format msgid "API Key %s has been deleted" -msgstr "API Schlüssel %s wurde gelöscht" +msgstr "API-Schlüssel %s wurde gelöscht" #: application/controllers/Api.php:118 msgid "Key Disabled" @@ -150,10 +227,10 @@ 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" +msgstr "Schlüssel ungültig – entweder nicht gefunden oder deaktiviert" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Gültig" @@ -173,22 +250,22 @@ 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 #, php-format msgid "Awards - %s" -msgstr "Diplome - %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:170 #: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:618 #: 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 @@ -203,12 +280,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -220,7 +297,7 @@ msgstr "DXCC" #: application/controllers/Awards.php:251 msgid "Awards - WAJA" -msgstr "Diplome - WAJA" +msgstr "Diplome – WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 #: application/views/interface_assets/header.php:210 @@ -234,7 +311,7 @@ msgstr "VUCC" #: application/controllers/Awards.php:405 msgid "Log View - VUCC" -msgstr "Log Ansicht - VUCC" +msgstr "Log Ansicht – VUCC" #: application/controllers/Awards.php:453 #: application/controllers/Timeline.php:92 @@ -244,7 +321,11 @@ msgstr "Log Ansicht - VUCC" #: application/controllers/Timeline.php:104 #: application/controllers/Timeline.php:107 msgid "Log View" -msgstr "Log Ansicht" +msgstr "Log-Ansicht" + +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " und Band " #: application/controllers/Awards.php:457 msgid " and sat " @@ -267,12 +348,12 @@ msgid " and " msgstr " und " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -283,7 +364,7 @@ msgstr " und " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 @@ -293,18 +374,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 @@ -313,18 +394,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -351,74 +432,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" -msgstr "Log Ansicht - 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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" +msgstr "ITU-Zonen" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -438,16 +519,16 @@ msgstr "Bearbeite Band" #: application/controllers/Options.php:148 #: application/views/options/sidebar.php:10 msgid "DXCluster" -msgstr "DXCluster" +msgstr "DX-Cluster" #: application/controllers/Cabrillo.php:20 msgid "Export Cabrillo" -msgstr "Cabrillo Export" +msgstr "Cabrillo-Export" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" -msgstr "CFD Export" +msgstr "CFD-Export" #: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 #: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 @@ -464,19 +545,19 @@ msgstr "Kein Benutzer hat Clublog konfiguriert." #: application/controllers/Contestcalendar.php:19 #: application/views/interface_assets/header.php:247 msgid "Contest Calendar" -msgstr "Contest Kalender" +msgstr "Contest-Kalender" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Contest-Logging" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Conteste" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "Aktualisiere Contest" @@ -488,20 +569,48 @@ msgid "Continents" msgstr "Kontinente" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" -msgstr "Cron Manager" +msgstr "Cron-Manager" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Bearbeite Cronjob" -#: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:386 -msgid "SOTA CSV Export" -msgstr "SOTA CSV Export" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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 +msgid "SOTA CSV Export" +msgstr "SOTA CSV-Export" + +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "Dashboard" @@ -510,35 +619,35 @@ msgstr "Dashboard" msgid "Number of days with QSOs each year" msgstr "Anzahl der Tage mit QSOs pro Jahr" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Daten jetzt migrieren" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "Migration wurde bereits durchgeführt. Nochmal ausführen?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Keine Daten die migriert werden müssen" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Migration nicht möglich" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog wurde erfolgreich aktualisiert!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() nicht verfügbar. Überprüfe das Fehlerprotokoll." -#: application/controllers/Debug.php:273 +#: 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 " @@ -548,7 +657,7 @@ msgstr "" "Sofern keine Probleme ersichtlich sind, kannst du die beiden Ordner 'assets/" "qslcard' und 'images/eqsl_card_images' löschen." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "Datenmigration fehlgeschlagen! Bitte das Fehlerprotokoll prüfen." @@ -569,9 +678,9 @@ msgid "and band" msgstr "und Band" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" -msgstr "DX Atlas Planquadrat Export" +msgstr "DX-Atlas Planquadrat-Export" #: application/controllers/Dxcalendar.php:10 #: application/views/interface_assets/header.php:245 @@ -579,11 +688,11 @@ msgid "DX Calendar" msgstr "DX Kalender" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" -msgstr "eQSL Karten" +msgstr "eQSL-Karten" #: application/controllers/Eqsl.php:124 msgid "eQSL Import" @@ -595,23 +704,23 @@ msgstr "eQSL Import Information" #: application/controllers/Eqsl.php:158 msgid "eQSL QSO Upload" -msgstr "eQSL QSO Upload" +msgstr "eQSL QSO-Upload" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "eQSL Tools" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Fehler: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Erfolgreich heruntergeladen: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" -msgstr "eQSL Karten Bilder Download" +msgstr "eQSL-Karten Bilder Download" #: application/controllers/Gridmap.php:10 #: application/views/interface_assets/header.php:138 @@ -631,42 +740,42 @@ msgstr "Hamsat - Satellite Roving" #, php-format msgid "%d QSO is now uploaded to HRDlog" msgid_plural "%d QSOs are now uploaded to HRDlog" -msgstr[0] "%d QSO ist jetzt zu HRDlog hochgeladen" -msgstr[1] "%d QSOs sind jetzt zu HRDlog hochgeladen" +msgstr[0] "%d QSO wurde zu HRDlog hochgeladen" +msgstr[1] "%d QSOs wurden zu HRDlog hochgeladen" #: application/controllers/Hrdlog.php:76 msgid "No QSOs found to upload." msgstr "Keine QSOs zum hochladen gefunden." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" -msgstr "KML Export" +msgstr "KML-Export" #: application/controllers/Labels.php:40 application/views/labels/index.php:30 msgid "QSL Card Labels" -msgstr "QSL Karten Etiketten" +msgstr "QSL-Karten Etiketten" #: application/controllers/Labels.php:71 msgid "Create Label Type" -msgstr "Erstelle Etiketten Typ" +msgstr "Erstelle Etikettentyp" #: application/controllers/Labels.php:78 application/controllers/Labels.php:402 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" -msgstr "Etiketten Name" +msgstr "Etikettenname" #: application/controllers/Labels.php:79 application/controllers/Labels.php:403 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" -msgstr "Papier Typ" +msgstr "Papiertyp" #: application/controllers/Labels.php:80 application/controllers/Labels.php:404 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" -msgstr "Masseinheit" +msgstr "Maßeinheit" #: application/controllers/Labels.php:81 application/controllers/Labels.php:405 msgid "Top Margin" @@ -678,11 +787,11 @@ msgstr "Linker Abstand" #: application/controllers/Labels.php:83 application/controllers/Labels.php:407 msgid "QSLs Horizontally" -msgstr "QSLs Querformat" +msgstr "QSLs im Querformat" #: application/controllers/Labels.php:84 application/controllers/Labels.php:408 msgid "QSLs Vertically" -msgstr "QSLs Hochformat" +msgstr "QSLs im Hochformat" #: application/controllers/Labels.php:85 application/controllers/Labels.php:409 msgid "Horizontal Space" @@ -694,11 +803,11 @@ msgstr "Vertikaler Abstand" #: application/controllers/Labels.php:87 application/controllers/Labels.php:411 msgid "Label width" -msgstr "Etiketten Breite" +msgstr "Etikettenbreite" #: application/controllers/Labels.php:88 application/controllers/Labels.php:412 msgid "Label height" -msgstr "Etiketten Höhe" +msgstr "Etikettenhöhe" #: application/controllers/Labels.php:89 application/controllers/Labels.php:413 msgid "Size of Font" @@ -706,26 +815,26 @@ msgstr "Schriftgröße" #: application/controllers/Labels.php:90 application/controllers/Labels.php:414 msgid "Number of QSOs on label" -msgstr "Anzahl von QSOs auf dem Etikett" +msgstr "Anzahl von QSOs auf einem Etikett" #: application/controllers/Labels.php:115 msgid "Create Paper Type" -msgstr "Erstelle Papier Typ" +msgstr "Erstelle Papiertyp" #: application/controllers/Labels.php:119 #: application/controllers/Labels.php:461 msgid "Paper Name" -msgstr "Papier Name" +msgstr "Papierbezeichnung" #: application/controllers/Labels.php:120 #: application/controllers/Labels.php:462 msgid "Paper Width" -msgstr "Papier Breite" +msgstr "Papierbreite" #: application/controllers/Labels.php:121 #: application/controllers/Labels.php:463 msgid "Paper Height" -msgstr "Papier Höhe" +msgstr "Papierhöhe" #: application/controllers/Labels.php:132 #: application/controllers/Labels.php:471 @@ -762,7 +871,7 @@ msgstr "0 QSOs für den Druck gefunden!" #: application/controllers/Labels.php:391 msgid "Edit Label" -msgstr "Bearbeite Etikette" +msgstr "Bearbeite Etikett" #: application/controllers/Labels.php:420 msgid "Label was saved." @@ -808,15 +917,15 @@ msgstr "Logbuch" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -831,18 +940,18 @@ msgstr "QSL" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -861,17 +970,17 @@ msgstr "LoTW" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -883,7 +992,7 @@ msgstr "LoTW" #: 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" @@ -894,10 +1003,10 @@ msgstr "eQSL" #: 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/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 @@ -905,36 +1014,37 @@ msgstr "eQSL" msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -975,12 +1085,12 @@ msgstr "Clublog" msgid "Mode" msgstr "Mode" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1002,12 +1112,12 @@ msgstr "Mode" msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1030,7 +1140,7 @@ msgstr "RST (S)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1040,7 +1150,6 @@ msgstr "RST (R)" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1054,13 +1163,13 @@ msgstr "RST (R)" msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1072,7 +1181,7 @@ msgstr "Land" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1081,17 +1190,17 @@ msgstr "Land" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1109,7 +1218,7 @@ msgstr "IOTA" msgid "State" msgstr "Staat" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1121,8 +1230,8 @@ msgstr "Staat" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1133,11 +1242,11 @@ msgstr "Staat" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1149,14 +1258,14 @@ msgstr "Staat" msgid "Gridsquare" msgstr "Planquadrat" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1172,26 +1281,26 @@ msgstr "Planquadrat" msgid "Distance" msgstr "Distanz" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1200,13 +1309,13 @@ msgstr "Distanz" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1248,8 +1357,8 @@ msgstr "Distanz" msgid "Band" msgstr "Band" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1268,11 +1377,11 @@ msgstr "Band" msgid "Frequency" msgstr "Frequenz" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1290,22 +1399,21 @@ msgstr "Frequenz" msgid "Operator" msgstr "Operator" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1327,7 +1435,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1335,28 +1443,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" +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" +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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modes" @@ -1365,7 +1503,7 @@ 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 @@ -1377,16 +1515,16 @@ msgstr "Bearbeite Mode" 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" @@ -1405,7 +1543,7 @@ msgstr "Editiere Notiz" #: application/controllers/Options.php:387 #: application/controllers/Options.php:397 msgid "Wavelog Options" -msgstr "Wavelog Optionen" +msgstr "Wavelog-Optionen" #: application/controllers/Options.php:42 #: application/controllers/Options.php:57 @@ -1433,7 +1571,7 @@ msgstr "Maximales Spot-Alter geändert auf " #: application/controllers/Options.php:175 msgid "DXCluster Cache URL changed to " -msgstr "DXCluster Cache URL geändert zu " +msgstr "DX-Cluster Cache URL geändert zu " #: application/controllers/Options.php:185 #: application/controllers/Options.php:196 @@ -1442,7 +1580,7 @@ msgstr "Funkgeräteeinstellungen" #: application/controllers/Options.php:217 msgid "Radio Timeout Warning changed to " -msgstr "Radio Timeout Warnung geändert zu " +msgstr "Radio-Timeout-Warnung geändert zu " #: application/controllers/Options.php:229 #: application/controllers/Options.php:240 @@ -1462,11 +1600,11 @@ msgstr "Beim Speichern ist was schief gelaufen. Probiere es erneut." #: application/controllers/Options.php:320 #: application/views/options/sidebar.php:8 msgid "OQRS Options" -msgstr "OQRS Optionen" +msgstr "OQRS-Optionen" #: application/controllers/Options.php:333 msgid "OQRS options have been saved." -msgstr "OQRS Einstellungen wurden gespeichert." +msgstr "OQRS-Einstellungen wurden gespeichert." #: application/controllers/Options.php:373 #: application/controllers/Options.php:378 @@ -1480,7 +1618,7 @@ msgstr "Testmail gesendet. E-Mail Einstellungen scheinen korrekt zu sein." #: application/controllers/Options.php:388 #: application/controllers/Options.php:398 msgid "Version Info Settings" -msgstr "Versionsinfo Einstellungen" +msgstr "Versionsinfo-Einstellungen" #: application/controllers/Options.php:404 msgid "Version Info Header changed to" @@ -1505,40 +1643,80 @@ msgstr "Versionsinfo wird keinem Benutzer angezeigt" #: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 #: application/controllers/Oqrs.php:73 msgid "Log Search & OQRS" -msgstr "Log Suche & OQRS" +msgstr "Logsuche & OQRS" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" -msgstr "OQRS Anforderungen" +msgstr "OQRS-Anforderungen" #: application/controllers/Qrbcalc.php:17 msgid "QRB Calculator" -msgstr "QRB Rechner" +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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" -msgstr "QRZ Logbuch" +msgstr "QRZ-Logbuch" #: application/controllers/Qrz.php:253 msgid "QRZ QSL Import" -msgstr "QRZ QSL Import" +msgstr "QRZ QSL-Import" #: application/controllers/Qrz.php:307 msgid "QRZ ADIF Information" -msgstr "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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" -msgstr "QSL Karten" +msgstr "QSL-Karten" #: application/controllers/Qsl.php:35 msgid "Upload QSL Cards" -msgstr "QSL Karten Upload" +msgstr "QSL-Karten Upload" #: application/controllers/Qslmanagement.php:14 msgid "QSL Card Management" @@ -1548,22 +1726,86 @@ msgstr "QSL-Karten Management" msgid "Print Requested QSLs" msgstr "Druck angeforderter QSLs" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "Logge QSO" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/qso/index.php:312 +msgid "Radio" +msgstr "Funkgerät" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "Zeitstempel" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Optionen" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:96 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "zuletzt aktualisiert" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "Setze als Standardgerät" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Löschen" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "Keine CAT-verbundenen Funkgeräte gefunden." + #: application/controllers/Satellite.php:37 msgid "Create Satellite" -msgstr "Erstelle Satellit" +msgstr "Erstelle Satelliten" #: application/controllers/Satellite.php:60 msgid "Edit Satellite" -msgstr "Bearbeite Satelllit" +msgstr "Bearbeite Satelliten" #: application/controllers/Sattimers.php:41 #, php-format @@ -1574,10 +1816,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" @@ -1585,13 +1824,14 @@ msgstr "hier" #: application/controllers/Sattimers.php:44 #: application/views/sattimers/index.php:13 msgid "Satellite Timers" -msgstr "Satelliten Timer" +msgstr "Satelliten-Timer" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1616,50 +1856,49 @@ msgstr "Suche & Filter Logbuch" #: application/controllers/Search.php:58 msgid "Incorrectly logged CQ zones" -msgstr "Nicht korrekt geloggte CQ Zonen" +msgstr "Nicht korrekt geloggte CQ-Zonen" #: application/controllers/Search.php:70 msgid "" "QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " "date" msgstr "" -"Unbestätigte QSOs auf LoTW, bei denen das Rufzeichen jedoch Daten zu LoTW " -"nach dem QSO Datum hochgeladen hat" +"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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 "Erstellung 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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" -msgstr "Stations Setup" +msgstr "Stationssetup" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 @@ -1686,7 +1925,7 @@ msgstr "Erstelle Stationslogbuch" #: application/controllers/Stationsetup.php:166 msgid "Edit container name" -msgstr "Bearbeite Container Name" +msgstr "Bearbeite Containernamen" #: application/controllers/Stationsetup.php:181 msgid "Edit linked locations" @@ -1708,8 +1947,8 @@ msgstr "Fehler. Link existiert bereits!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1721,7 +1960,7 @@ msgid "Set as Active Logbook" msgstr "Setze als aktives Logbuch" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1747,7 +1986,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: " @@ -1756,13 +1994,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" @@ -1771,83 +2007,56 @@ 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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" -"Bist du sicher, dass du alle QSO an diesem Stationsstandort löschen möchtest?" +"Bist du sicher, dass du alle QSOs an diesem Stationsstandort löschen " +"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:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Löschen" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1873,7 +2082,7 @@ msgid "QSL Statistics" msgstr "QSL-Statistiken" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Themes" @@ -1907,11 +2116,11 @@ msgstr "Bereite DXCC-Einträge vor: " #: application/controllers/Update.php:122 msgid "Preparing DXCC Exceptions: " -msgstr "Bereite DXCC Ausnahmen vor: " +msgstr "Bereite DXCC-Ausnahmen vor: " #: application/controllers/Update.php:166 msgid "Preparing DXCC Prefixes: " -msgstr "Bereite DXCC Präfixe vor: " +msgstr "Bereite DXCC-Präfixe vor: " #: application/controllers/Update.php:230 msgid "DONE" @@ -1923,47 +2132,47 @@ msgstr "Aktualisierung läuft ..." #: application/controllers/Update.php:247 msgid "Dxcc Entities:" -msgstr "DXCC Entitäten:" +msgstr "DXCC-Entitäten:" #: application/controllers/Update.php:248 msgid "Dxcc Exceptions:" -msgstr "DXCC Ausnahmen:" +msgstr "DXCC-Ausnahmen:" #: application/controllers/Update.php:249 msgid "Dxcc Prefixes:" -msgstr "DXCC Prefixe:" +msgstr "DXCC-Präfixe:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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." @@ -1971,22 +2180,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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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. " @@ -1997,38 +2202,70 @@ 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 @@ -2058,13 +2295,13 @@ msgstr "Öffentl. Suche" #: application/controllers/Visitor.php:444 msgid "Export Map" -msgstr "Export Karte" +msgstr "Karte exportieren" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" -msgstr "QO-100 Dx Club Upload" +msgstr "QO-100 DX Club Upload" #: application/controllers/Widgets.php:21 msgid "Unknown Public Page, please make sure the public slug is correct." @@ -2076,6 +2313,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." @@ -2116,33 +2431,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:4143 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 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:4154 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 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:4160 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "unbekannt" @@ -2171,7 +2486,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2184,7 +2499,7 @@ msgid "Yearly" msgstr "jährlich" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Monat" @@ -2204,25 +2519,25 @@ msgstr "Differenz" #: 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/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,26 +2558,29 @@ msgstr "Differenz" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2277,7 +2595,7 @@ msgstr "Differenz" #: 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:170 msgid "All" msgstr "Alle" @@ -2316,17 +2634,17 @@ 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/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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2349,7 +2667,9 @@ msgstr "Anzeigen" #: 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/index.php:197 +#: 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" @@ -2360,7 +2680,7 @@ msgstr "Satellit" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2375,22 +2695,23 @@ 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/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 "Kartieren" @@ -2419,44 +2740,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "Nichts gefunden!" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2466,12 +2787,12 @@ msgstr "Nichts gefunden!" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2486,19 +2807,19 @@ msgstr "Nichts gefunden!" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2506,19 +2827,19 @@ msgstr "Zähler" #: application/views/timeline/index.php:232 #: application/views/timeline/index.php:258 msgid "Show QSO's" -msgstr "Zeige QSO's" +msgstr "Zeige QSOs" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "Zeige Karte" #: application/views/adif/dcl_success.php:12 msgid "Results of DCL DOK Update" -msgstr "Ergebnisse des DCL DOK Updates" +msgstr "Ergebnisse des DCL DOK-Updates" #: application/views/adif/dcl_success.php:17 msgid "DCL information for DOKs has been updated." -msgstr "QSOs wurden mit der DOK Information aus dem DCL aktualisiert." +msgstr "QSOs wurden mit der DOK-Information aus dem DCL aktualisiert." #: application/views/adif/dcl_success.php:19 msgid "No QSOs found which could be updated." @@ -2542,7 +2863,7 @@ msgstr "DOK Fehler" #: application/views/adif/dcl_success.php:26 msgid "There is different data for DOK in your log compared to DCL" -msgstr "Die DOK Informationen im Logbuch weichen von denen im DCL ab" +msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab" #: application/views/adif/dcl_success.php:29 #: application/views/awards/pota/index.php:32 @@ -2551,8 +2872,8 @@ msgstr "Die DOK Informationen im Logbuch weichen von denen im DCL ab" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2565,7 +2886,7 @@ msgstr "Die DOK Informationen 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 @@ -2593,8 +2914,8 @@ msgstr "Datum" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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,7 +2941,7 @@ msgstr "Zeit" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2647,16 +2968,16 @@ msgstr "DOK im DCL" #: application/views/adif/dcl_success.php:36 msgid "DCL QSL Status" -msgstr "DCL QSL Status" +msgstr "DCL QSL-Status" #: application/views/adif/import.php:36 application/views/adif/import.php:242 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2664,20 +2985,19 @@ msgstr "Wichtig" #: application/views/adif/import.php:55 msgid "Log Files must have the file type *.adi" -msgstr "Die Log Datei muss im *.adi Format vorliegen" +msgstr "Die Logdatei muss im *.adi Format vorliegen" #: application/views/adif/import.php:56 application/views/view_log/qso.php:622 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2694,7 +3014,7 @@ msgstr "Wähle Stationsstandort" #: application/views/adif/import.php:69 msgid "Add QSOs to Contest" -msgstr "QSOs zu Contest hinzufügen" +msgstr "QSOs zu Contest hinzufügen" #: application/views/adif/import.php:71 #: application/views/simplefle/index.php:82 @@ -2703,15 +3023,15 @@ msgstr "Kein Contest" #: application/views/adif/import.php:77 msgid "ADIF File" -msgstr "ADIF Datei" +msgstr "ADIF-Datei" #: application/views/adif/import.php:84 msgid "Import duplicate QSOs" -msgstr "Doppelte QSO hochladen" +msgstr "Doppelte QSOs hochladen" #: application/views/adif/import.php:93 msgid "Mark imported QSOs as uploaded to LoTW" -msgstr "Markiere hochgeladene QSO als bereits zu LoTW hochgeladen" +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 @@ -2722,19 +3042,19 @@ msgstr "" #: application/views/adif/import.php:103 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" -msgstr "Markiere hochgeladene QSO als bereits zu HRDlog.net hochgeladen" +msgstr "Markiere hochgeladene QSOs als bereits zu HRDlog.net hochgeladen" #: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to QRZ Logbook" -msgstr "Markiere hochgeladene QSO als bereits zu QRZ.com hochgeladen" +msgstr "Markiere hochgeladene QSOs als bereits zu QRZ.com hochgeladen" #: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to Clublog Logbook" -msgstr "Markiere hochgeladene QSO als bereits zu Clublog hochgeladen" +msgstr "Markiere hochgeladene QSOs als bereits zu Clublog hochgeladen" #: application/views/adif/import.php:133 msgid "Use DXCC information from ADIF" -msgstr "Benutze die DXCC Informationen aus der ADIF Datei" +msgstr "Benutze die DXCC-Informationen aus der ADIF-Datei" #: application/views/adif/import.php:135 msgid "" @@ -2747,25 +3067,27 @@ msgstr "" #: application/views/adif/import.php:143 msgid "Always use login-callsign as operator-name on import" msgstr "" -"Nutze während des Import immer das eingeloggte Rufzeichen als Operator-Name" +"Nutze während des Imports immer das eingeloggte Rufzeichen als Operator-Name" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "GEFAHR" #: application/views/adif/import.php:152 msgid "Ignore Stationcallsign on import" -msgstr "Ignoriere das Stations Rufzeichen beim Import" +msgstr "Ignoriere das Stations-Rufzeichen beim Import" #: application/views/adif/import.php:154 +#, 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, wirdWavelog versuchen alle QSO " -"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/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -2782,8 +3104,8 @@ msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -"Deine ADIF Logbücher zu exportieren bietet dir die Möglichkeite diese zum " -"Beispiel in Drittanbieter Software (z.B. LoTW) einzubinden oder sie einfach " +"Deine ADIF-Logbücher zu exportieren bietet, dir die Möglichkeit diese zum " +"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 @@ -2814,28 +3136,28 @@ msgstr "Markiere die exportierten QSO als 'zu LoTW nicht hochgeladen'" #: application/views/adif/import.php:200 msgid "Export QSO's" -msgstr "Exportiere QSO's" +msgstr "Exportiere QSOs" #: application/views/adif/import.php:205 msgid "Export Satellite-Only QSOs" -msgstr "Exportiere nur Satelliten QSO" +msgstr "Exportiere nur Satelliten-QSOs" #: application/views/adif/import.php:206 msgid "Export All Satellite QSOs" -msgstr "Exportiere ALLE Satelliten QSO" +msgstr "Exportiere ALLE Satelliten-QSOs" #: application/views/adif/import.php:208 msgid "Export All Satellite QSOs Confirmed on LoTW" -msgstr "Exportiere nur die Satelliten QSO, welche auf LoTW bestätigt sind" +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/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 QSO markiert!" +msgstr "Wenn kein Datum gewählt ist, werden alle QSOs markiert!" #: application/views/adif/import.php:228 msgid "Mark QSOs as exported to LoTW" -msgstr "Markiere die QSO als 'zu LoTW hochgeladen'" +msgstr "Markiere die QSOs als 'zu LoTW hochgeladen'" #: application/views/adif/import.php:242 #, php-format @@ -2852,19 +3174,22 @@ msgstr "" #: application/views/adif/import.php:249 msgid "Only import DOK data from QSOs confirmed on DCL." -msgstr "Importiere nur DOK Informationen von QSOs, die auf DCL bestätigt sind." +msgstr "" +"Importiere Informationen zum DOK nur von QSOs, die auf DCL bestätigt sind." #: application/views/adif/import.php:251 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -"Deaktiviere diese Option, um auch DOK Infos von QSOS zu importieren, die auf " +"Deaktiviere diese Option, um auch DOK-Infos von QSOS zu importieren, die auf " "DCL nicht bestätig sind." #: application/views/adif/import.php:258 msgid "Overwrites exisiting DOK in log by DCL (if different)." -msgstr "Überschreibt vorhandene DOK im Log mit DCL (falls verschieden)." +msgstr "" +"Überschreibt vorhandenen DOK im Log mit Information aus DCL (falls " +"verschieden)." #: application/views/adif/import.php:260 msgid "" @@ -2892,7 +3217,7 @@ msgstr "Yay, Datei importiert!" #: application/views/adif/import_success.php:16 msgid "The ADIF File has been imported." -msgstr "Die ADIF Datei wurde importiert." +msgstr "Die ADIF-Datei wurde importiert." #: application/views/adif/import_success.php:18 msgid "Dupes were inserted!" @@ -2904,22 +3229,22 @@ msgstr "Duplikate wurden übersprungen." #: application/views/adif/import_success.php:24 msgid "ADIF Errors" -msgstr "ADIF Fehler" +msgstr "Fehler in der ADIF-Datei" #: 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 "" -"Es gibt ADIF Fehler. Die QSO wurden hinzugefügt, jedoch wurden die " -"fehlerhaften Felder nicht ausgefüllt." +"Es gibt Fehler in der ADIF-Datei. Die QSO wurden hinzugefügt, jedoch wurden " +"die fehlerhaften Felder nicht ausgefüllt." #: 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's markiert" +msgstr "QSOs markiert" #: application/views/adif/mark_lotw.php:15 msgid "Yay, its done!" @@ -2927,11 +3252,11 @@ msgstr "Yay, geschafft!" #: application/views/adif/mark_lotw.php:16 msgid "The QSOs are marked as exported to LoTW." -msgstr "Die QSO wurden als 'zu LoTW hochgeladen' markiert." +msgstr "Die QSOs wurden als ’zu LoTW hochgeladen’ markiert." #: application/views/api/description.php:15 msgid "Editing Description for API Key" -msgstr "Beschreibung bearbeiten für API Schlüssel" +msgstr "Bearbeite Beschreibung für API-Schlüssel" #: application/views/api/description.php:28 msgid "Simple name to describe what you use this API for." @@ -2940,7 +3265,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2948,15 +3274,13 @@ msgstr "Einfacher Name, um zu beschreiben, wofür Sie diese API verwenden." #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "API-Schlüssel" @@ -2966,7 +3290,7 @@ msgid "" "access Wavelog in a controlled way. Access to the API is managed via API " "keys." msgstr "" -"Mit der Wavelog API (Application Programming Interface) können Systeme von " +"Mit der Wavelog-API (Application Programming Interface) können Systeme von " "Drittanbietern kontrolliert auf Wavelog zugreifen. Der Zugriff auf die API " "wird über API-Schlüssel verwaltet." @@ -2979,26 +3303,26 @@ msgid "" msgstr "" "Du musst für jedes Tool, das du verwenden möchtest, einen API-Schlüssel " "generieren (z.B. WLgate). Erstelle einen Lesen-Schreiben Schlüssel, wenn die " -"Anwendung Daten an Wavelog senden muss. Generiere einen Nur-Lesen Schlüssel, " +"Anwendung Daten an Wavelog senden muss. Generiere einen Nur-Lesen-Schlüssel, " "wenn die Anwendung nur Daten von Wavelog erhalten muss." #: application/views/api/help.php:19 msgid "API URL" -msgstr "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" #: application/views/api/help.php:19 msgid "The API URL for this Wavelog instance is" -msgstr "Die API URL für diese Wavelog-Instanz ist" +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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -3018,10 +3342,10 @@ msgstr "" #: application/views/api/help.php:27 msgid "API Key" -msgstr "API Schlüssel" +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" @@ -3034,8 +3358,8 @@ 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 @@ -3046,7 +3370,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Aktionen" @@ -3069,15 +3393,15 @@ msgstr "Test" #: application/views/api/help.php:71 msgid "You have no API Keys." -msgstr "Du hast keine API Schlüssel." +msgstr "Du hast keine API-Schlüssel." #: application/views/api/help.php:75 msgid "Create a read & write key" -msgstr "Erstelle einen Lese & Schreib Schlüssel" +msgstr "Erstelle einen Lese- & Schreib-Schlüssel" #: application/views/api/help.php:76 msgid "Create a read-only key" -msgstr "Erstelle einen Nur-Lesen Schlüssel" +msgstr "Erstelle einen Nur-Lesen-Schlüssel" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 @@ -3092,8 +3416,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 @@ -3102,12 +3426,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 @@ -3120,18 +3444,18 @@ 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/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 "Diplom Info" +msgstr "Diplom-Info" #: application/views/awards/counties/index.php:7 msgid "US County Award" -msgstr "US County Diplom" +msgstr "US-County-Diplom" #: application/views/awards/counties/index.php:8 #, php-format @@ -3169,17 +3493,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3193,13 +3517,36 @@ msgstr "Bestätigte Counties" #: application/views/statistics/uniquetable.php:23 #: application/views/visitor/index.php:241 msgid "Total" -msgstr "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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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" +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 " @@ -3210,7 +3557,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." @@ -3218,201 +3565,185 @@ 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" -msgstr "QSL Karte" +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/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:528 #: 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" +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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Gesamt bestätigt" #: application/views/awards/dok/index.php:7 msgid "DOK Award" -msgstr "DOK Diplom" +msgstr "DOK-Diplom" #: application/views/awards/dok/index.php:8 msgid "" @@ -3443,7 +3774,7 @@ msgstr "" #: application/views/awards/dok/index.php:10 msgid "DARC website" -msgstr "DARC Webseite" +msgstr "Webseite des DARC" #: application/views/awards/dok/index.php:10 #, php-format @@ -3465,29 +3796,29 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "Jedes Band" #: application/views/awards/dxcc/index.php:14 msgid "DXCC Award" -msgstr "DXCC Diplom" +msgstr "DXCC-Diplom" #: application/views/awards/dxcc/index.php:15 msgid "'How to Count Countries Worked, A New DX Scoring System'" @@ -3501,7 +3832,7 @@ msgid "" "W1CBD, titled %s." msgstr "" "DXCC steht für 'DX Century Club', eine Auszeichnung auf Basis von " -"gearbeiteten Ländern. Die DXCC Liste basiert auf einem Artikel, der 1935 von " +"gearbeiteten Ländern. Die DXCC-Liste basiert auf einem Artikel, der 1935 von " "Clinton B. DeSoto, W1CBD, mit dem Titel %s erstellt wurde." #: application/views/awards/dxcc/index.php:16 @@ -3686,11 +4017,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 " @@ -3702,7 +4042,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 " @@ -3712,21 +4052,21 @@ 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" @@ -3801,7 +4141,7 @@ msgstr "Zeige IOTA Karte" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3824,7 +4164,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3836,30 +4187,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:101 -#: 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" @@ -3904,7 +4245,7 @@ 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 msgid "Number" msgstr "Nummer" @@ -3915,7 +4256,7 @@ msgid "City" msgstr "Stadt" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "SAT" @@ -3957,14 +4298,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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" @@ -4024,7 +4374,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4136,11 +4486,20 @@ msgstr "Liste" msgid "WAB Square" msgstr "WAB Planquadrat" -#: application/views/awards/waja/index.php:17 +#: 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." @@ -4148,7 +4507,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 " @@ -4160,20 +4519,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" +msgstr "Zeige WAJA-Karte" -#: application/views/awards/waja/index.php:152 +#: application/views/awards/waja/index.php:154 #: application/views/timeline/index.php:152 msgid "Prefecture" msgstr "Präfektur" -#: application/views/awards/was/index.php:18 -msgid "WAS Award" -msgstr "WAS Diplom" +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "Staat" -#: application/views/awards/was/index.php:19 +#: 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: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 " @@ -4186,7 +4554,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 " @@ -4201,15 +4569,15 @@ 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" +msgstr "Zeige WAS-Karte" #: application/views/awards/wwff/index.php:7 msgid "WWFF - World Wide Flora and Fauna Award" @@ -4237,8 +4605,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4283,11 +4651,11 @@ msgstr "" #: application/views/backup/main.php:19 msgid "Backup ADIF data" -msgstr "Sicherung ADIF Daten" +msgstr "Sicherung der ADIF-Daten" #: application/views/backup/main.php:20 msgid "Backup Notes" -msgstr "Sicherung Notizen" +msgstr "Sicherung der Notizen" #: application/views/backup/notes_view.php:7 msgid "" @@ -4304,12 +4672,6 @@ msgstr "BandMap" msgid "BandList" msgstr "BandListe" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -msgstr "Funkgerät" - #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 #: application/views/contesting/index.php:94 @@ -4328,7 +4690,7 @@ msgstr "DXCC-Status" #: application/views/bandmap/list.php:74 msgid "Not Confirmed" -msgstr "Nicht Bestätigt" +msgstr "Nicht bestätigt" #: application/views/bandmap/list.php:113 msgid "Spotter" @@ -4361,7 +4723,7 @@ 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 "Frequenz für die SSB QRG auf dem Band (Muss in Hz angegeben werden)" +msgstr "Frequenz für die SSB QRG auf dem Band (in Hertz)" #: application/views/bands/create.php:39 application/views/bands/edit.php:21 #: application/views/bands/index.php:63 @@ -4370,7 +4732,7 @@ 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 "Frequenz für die DATA QRG auf dem Band (Muss in Hz angegeben werden" +msgstr "Frequenz für die DATA QRG auf dem Band (in Hertz)" #: application/views/bands/create.php:44 application/views/bands/edit.php:26 #: application/views/bands/index.php:64 @@ -4379,7 +4741,7 @@ 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 "Frequenz für die CW QRG auf dem Band (Muss in Hz angegeben werden" +msgstr "Frequenz für die CW QRG auf dem Band (in Hertz)" #: application/views/bands/index.php:36 msgid "" @@ -4387,7 +4749,7 @@ msgid "" "new QSO." msgstr "" "Mit dieser Bänder-Liste kannst du steuern, welche Bänder beim Erstellen " -"eines neuen QSO angezeigt werden." +"eines neuen QSOs angezeigt werden." #: application/views/bands/index.php:37 msgid "" @@ -4445,9 +4807,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4469,12 +4829,12 @@ msgstr "Warnung! Bist du sicher, dass du alle Bänder deaktivieren willst?" #: application/views/bands/index.php:158 #: application/views/contesting/add.php:77 application/views/mode/index.php:77 msgid "Activate All" -msgstr "Aktiviere Alle" +msgstr "Aktiviere alle" #: application/views/bands/index.php:159 #: application/views/contesting/add.php:78 application/views/mode/index.php:78 msgid "Deactivate All" -msgstr "Deaktiviere Alle" +msgstr "Deaktiviere alle" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 @@ -4500,7 +4860,7 @@ msgstr "" #: application/views/cabrillo/index.php:16 msgid "Export a contest to a Cabrillo log" -msgstr "Exportiere einen Contest im Cabrillo Format" +msgstr "Exportiere einen Contest im Cabrillo-Format" #: application/views/cabrillo/index.php:28 msgid "Select Station Location:" @@ -4528,7 +4888,7 @@ msgstr "Licht/Laser" #: application/views/cabrillo/index.php:90 msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" -msgstr "VHF-3-BAND und VHF-FM-ONLY (nur ARRL VHF Contests)" +msgstr "VHF-3-BAND und VHF-FM-ONLY (nur ARRL VHF-Conteste)" #: application/views/cabrillo/index.php:94 msgid "Category Mode" @@ -4580,7 +4940,7 @@ msgstr "Addresse Land" #: application/views/cabrillo/index.php:186 msgid "No contests were found in your log." -msgstr "Es wurden keine Contests in deinem Log gefunden." +msgstr "Es wurden keine Conteste in deinem Log gefunden." #: application/views/cfd/index.php:7 #, php-format @@ -4606,7 +4966,7 @@ msgstr "Zeige alle Überflüge" #: application/views/components/hamsat/table.php:14 msgid "Private feed key empty. Please set the feed key in your profile." msgstr "" -"Privater Feed Schlüssel leer. Bitte setze einen Feed Schlüssel in deinem " +"Privater Feed-Schlüssel ist leer. Bitte setze einen Feed-Schlüssel in deinem " "Profil." #: application/views/components/hamsat/table.php:19 @@ -4619,7 +4979,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4651,12 +5011,12 @@ msgstr "Funkgeräte-Status" #: application/views/contestcalendar/index.php:9 msgid "No Contests" -msgstr "Keine 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4684,10 +5044,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Heute" @@ -4719,14 +5080,14 @@ msgstr "" #: application/views/contesting/add.php:26 #: application/views/contesting/create.php:30 msgid "ADIF Name" -msgstr "ADIF Name" +msgstr "ADIF-Name" #: 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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4737,7 +5098,7 @@ msgstr "Aktiv" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:49 msgid "Not Active" -msgstr "Nicht Aktiv" +msgstr "Nicht aktiv" #: application/views/contesting/add.php:40 #: application/views/contesting/add.php:49 application/views/mode/index.php:48 @@ -4773,16 +5134,16 @@ msgstr "Erstelle einen Contest" #: application/views/contesting/create.php:26 #: application/views/contesting/edit.php:33 msgid "Name of the Contest" -msgstr "Der Name des Contest" +msgstr "Der Name des Contests" #: application/views/contesting/create.php:32 #: application/views/contesting/edit.php:39 msgid "Name of Contest in ADIF-specification" -msgstr "Der Name des Contest in ADIF Spezifikation" +msgstr "Der Name des Contests in ADIF-Spezifikation" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: 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" @@ -4791,11 +5152,11 @@ msgstr "Erstelle" #: application/views/qso/edit_ajax.php:548 #: application/views/view_log/qso.php:275 msgid "Contest Name" -msgstr "Contest Name" +msgstr "Contest-Name" #: application/views/contesting/edit.php:37 msgid "Contest ADIF Name" -msgstr "Contest ADIF Name" +msgstr "Contest ADIF-Name" #: application/views/contesting/edit.php:52 msgid "Set to active if to be listed in Contest-list" @@ -4823,13 +5184,13 @@ msgstr "Seriennummer + Exchange" #: application/views/contesting/index.php:20 msgid "Serial + Gridsquare" -msgstr "Serial + Planquadrat" +msgstr "Seriennummer + Planquadrat" #: application/views/contesting/index.php:34 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 msgid "Operator Callsign" -msgstr "Operator Rufzeichen" +msgstr "Rufzeichen des Operators" #: application/views/contesting/index.php:116 #: application/views/contesting/index.php:208 @@ -4927,14 +5288,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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" @@ -4984,6 +5345,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" @@ -4999,7 +5361,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:" @@ -5007,61 +5369,61 @@ 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." +msgstr "PHP-Version nicht unterstützt." -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" -msgstr "Cron Liste" +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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "nie" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "Dein Mastercron läuft nicht." -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." @@ -5069,7 +5431,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:102 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" @@ -5077,7 +5439,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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -5092,7 +5454,7 @@ msgstr "Exportiere dein Logbuch um es in SOTA hochzuladen." #: application/views/csv/index.php:11 msgid "Only QSOs with SOTA information will be exported!" -msgstr "Es werden nur QSO exportiert, welche SOTA Informationen enthalten!" +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 @@ -5103,15 +5465,15 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" -msgstr "Flugzeug 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -5119,7 +5481,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -5127,15 +5489,15 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" -msgstr "Rückwärts 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -5143,7 +5505,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -5151,7 +5513,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -5159,7 +5521,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -5167,15 +5529,15 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" -msgstr "F2 Reflexion" +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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -5183,7 +5545,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -5191,7 +5553,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -5199,15 +5561,15 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" -msgstr "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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -5215,15 +5577,15 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" -msgstr "Regen 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -5231,7 +5593,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -5239,7 +5601,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5263,38 +5625,39 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." @@ -5302,33 +5665,33 @@ 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:115 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:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" -msgstr "QSO Übersicht" +msgstr "QSO-Übersicht" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" -msgstr "Länder Übersicht" +msgstr "Länderübersicht" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5358,10 +5721,10 @@ msgstr "Benötigt" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5388,15 +5751,15 @@ msgstr "Gesendet" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5418,12 +5781,12 @@ msgstr "Erhalten" msgid "Requested" msgstr "Angefragt" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "VUCC-Planquadrate" @@ -5452,19 +5815,19 @@ msgstr "Serie (fortlaufende Tage mit QSOs)" #: application/views/dayswithqso/index.php:85 #: application/views/dayswithqso/index.php:107 msgid "Start Date" -msgstr "Start Datum" +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 msgid "End Date" -msgstr "End Datum" +msgstr "Enddatum" #: application/views/dayswithqso/index.php:74 msgctxt "Days with QSOs" msgid "No streak found!" -msgstr "Keinen Streak gefunden!" +msgstr "Keine Serie gefunden!" #: application/views/dayswithqso/index.php:78 msgid "Current streak with QSOs in the log" @@ -5489,7 +5852,7 @@ msgstr "Keine aktuelle Serie gefunden!" #: application/views/debug/index.php:23 msgid "Wavelog Information" -msgstr "Wavelog Informationen" +msgstr "Wavelog-Informationen" #: application/views/debug/index.php:27 msgid "Version" @@ -5519,96 +5882,100 @@ msgstr "Migration ist veraltet und gesperrt!" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "" -"Die aktuelle Migration ist nicht die Version, die sie sein sollte. Lade " -"diese Seite neu. Wenn diese Warnung weiterhin besteht, ist deine Migration " -"wahrscheinlich aufgrund eines früheren fehlgeschlagenen Prozesses gesperrt. " -"Überprüfe den Ordner %s auf eine Datei namens %s und entferne diese Datei, " -"um die Migration erneut zu erzwingen." +"Die aktuelle Migration ist nicht die Version, welche sie sein sollte. Lade " +"diese Seite nach %s Sekunden neu. Wenn diese Warnung weiterhin besteht, ist " +"deine Migration wahrscheinlich aufgrund eines vorherigen Fehlers gesperrt. " +"Lösche die Datei %s, um die Migration erneut zu erzwingen." #: application/views/debug/index.php:47 #, php-format +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 msgid "Current migration is %s" msgstr "Aktuelle Migration ist %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "Migration sollte sein %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Umgebung" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" -msgstr "Gesamt QSOs auf dieser Instanz" +msgstr "QSOs auf dieser Instanz" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" -msgstr "Server Information" +msgstr "Server-Information" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" -msgstr "Server Software" +msgstr "Server-Software" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" -msgstr "PHP Version" +msgstr "PHP-Version" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Veraltet" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" -msgstr "MySQL Version" +msgstr "MySQL-Version" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Codeigniter Version" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" -msgstr "Ordner Berechtigungen" +msgstr "Ordnerberechtigungen" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -"Dies verifiziert, dass die von Wavelog verwendeten Ordner Schreib und Lese-" +"Dies verifiziert, dass die von Wavelog verwendeten Ordner Schreib- und Lese-" "Rechte durch PHP haben." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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 "Erfolgreich" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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 "Fehlgeschlagen" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Konfigurations-Wartung" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Dein Authentifizierungsmodus ist veraltet und möglicherweise unsicher" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Bitte bearbeite deine %s Datei:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5616,30 +5983,30 @@ msgstr "" "Gehe in den application/config Ordner und vergleiche die config.sample.php " "mit deiner config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Ändere %s zu dem Wert %s (Stark empfohlen)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "Der Authentifizierungsmodus ist korrekt eingestellt" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" -msgstr "Ok" +msgstr "OK" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" "Du verwendest den Standardschlüssel zur Verschlüsselung. Du solltest ihn " "ändern!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Dies wird auch die Funktion 'Angemeldet bleiben' aktivieren." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5649,15 +6016,15 @@ msgstr "" "'flossie1234555541' ist. Es wird dringend empfohlen ein sicheres und langes " "Passwort zu wählen." -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Du verwendest nicht den Standardschlüssel für die Verschlüsselung" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Benutzerdaten migrieren" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5665,213 +6032,231 @@ msgstr "" "Hier kannst du bestehende QSL-Karten und eQSL-Karten in den neuen " "Benutzerdaten-Ordner migrieren." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Module" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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 "Installiert" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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 "Nicht installiert" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "Einstellungen" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Git Informationen" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Letzter Abruf" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Nach neuer Version suchen" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Jetzt aktualisieren" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Datum des Datei-Downloads" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Datei" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Letzte Aktualisierung" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "DXCC-Update von Club Log" -#: 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/station_profile/edit.php:22 +#: 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 "Aktualisierung" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" -msgstr "DOK Datei Download" +msgstr "DOK-Datei Download" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" -msgstr "LoTW Benutzer Download" +msgstr "LoTW-Benutzer Download" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" -msgstr "POTA Datei Download" +msgstr "POTA-Datei Download" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" -msgstr "SCP Datei Download" +msgstr "SCP-Datei Download" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" -msgstr "SOTA Datei Download" +msgstr "SOTA-Datei Download" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" -msgstr "WWFF Datei Download" +msgstr "WWFF-Datei Download" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "QSO-DB Wartung" -#: application/views/debug/index.php:536 +#: 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] "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:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" -msgstr "Stations Rufzeichen" +msgstr "Stationsrufzeichen" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Bitte markiere die QSOs und weise sie einem vorhandenen Stationsstandort zu:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" -msgstr "Ziel Standort" +msgstr "Zielstandort" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Neu zuweisen" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Alles in Ordnung" -#: application/views/debug/index.php:628 +#: 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:629 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: application/views/debug/index.php:630 +#: 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:631 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Niederländisch" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:636 msgid "English" msgstr "Englisch" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Finnisch" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:638 msgid "French" msgstr "Französisch" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:639 msgid "German" msgstr "Deutsch" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Griechisch" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "Italienisch" -#: application/views/debug/index.php:638 +#: 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:639 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Portugiesisch" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:641 +#: 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:642 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "Schwedisch" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Türkisch" @@ -5879,11 +6264,12 @@ msgstr "Türkisch" #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 msgid "QSO Data" -msgstr "QSO Daten" +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" @@ -5928,7 +6314,7 @@ msgstr "Datum bis" #: application/views/dxcalendar/index.php:13 #: application/views/view_log/qso.php:366 msgid "QSL Info" -msgstr "QSL Info" +msgstr "QSL-Info" #: application/views/dxcalendar/index.php:14 msgid "Source" @@ -5970,11 +6356,11 @@ msgstr "Submode" #: application/views/eqsl/analysis.php:41 msgid "Log Status" -msgstr "Log Status" +msgstr "Log-Status" #: application/views/eqsl/analysis.php:42 application/views/eqsl/result.php:38 msgid "eQSL Status" -msgstr "eQSL Status" +msgstr "eQSL-Status" #: application/views/eqsl/analysis.php:62 msgid "There are no QSO confirmations waiting for you at eQSL.cc" @@ -6037,7 +6423,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 @@ -6077,7 +6463,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" @@ -6111,14 +6497,18 @@ msgstr "" #: application/views/eqslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store eQSL Card assets" -msgstr "Du verwendest %s des Speicherplatzes um eQSL Karten zu speichern" +msgstr "Du verwendest %s des Speicherplatzes um eQSL-Karten zu speichern" #: application/views/eqslcard/index.php:34 #: application/views/qslcard/index.php:33 msgid "QSL Date" -msgstr "QSL Datum" +msgstr "QSL-Datum" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6126,8 +6516,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "Ausbreitungsart" @@ -6174,7 +6564,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 @@ -6185,8 +6575,7 @@ msgstr "Der Code kann unter %s angefordert werden" #: 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 "" -"Dies kann etwas länger dauern, da die QSOs einzelnd prozessiert werden." +msgstr "Dies kann etwas länger dauern, da die QSOs einzeln verarbeitet werden." #: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 #: application/views/webadif/export.php:41 @@ -6206,12 +6595,12 @@ msgstr "Nicht hochgeladene, bearbeitete QSOs" #: application/views/hrdlog/export.php:37 application/views/qrz/export.php:41 #: application/views/webadif/export.php:43 msgid "Total QSOs not uploaded" -msgstr "Total nicht hochgeladener QSOs" +msgstr "Summe nicht hochgeladener QSOs" #: application/views/hrdlog/export.php:38 application/views/qrz/export.php:42 #: application/views/webadif/export.php:44 msgid "Total QSOs uploaded" -msgstr "Total hochgeladene QSOs" +msgstr "Summe hochgeladener QSOs" #: application/views/hrdlog/export.php:60 msgid "" @@ -6219,7 +6608,7 @@ msgid "" "Credentials in the Station Location Settings!" msgstr "" "Es wurde kein Stationsstandort mit gültigen HRDlog-Einstellungen gefunden. " -"Überprüfe die HRDlog Zugangsdaten in den Stations Einstellungen!" +"Überprüfe die Zugangsdaten für HRDlog in den Stationseinstellungen!" #: application/views/hrdlog/export.php:87 msgid "Mark QSOs as exported to HRDLog Logbook" @@ -6247,47 +6636,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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -"Ausbreitungsart wird von LotW nicht unterstützt. LoTW QSL Felder deaktiviert." +"Ausbreitungsart wird von LotW nicht unterstützt. LoTW QSL-Felder deaktiviert." -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Versionsinfo" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "Beschreibung:" + +#: application/views/interface_assets/footer.php:401 +msgid "Query description" +msgstr "Suchmuster-Beschreibung" + +#: application/views/interface_assets/footer.php:417 +msgid "Your query has been saved!" +msgstr "Dein Suchmuster wurde gespeichert!" + +#: 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:421 +msgid "Stored queries:" +msgstr "Gespeicherte Suchmuster:" + +#: 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: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: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: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: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:516 +msgid "The stored query has been deleted!" +msgstr "Das gespeicherte Suchmuster wurde gelöscht!" + +#: 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:551 +msgid "The query description has been updated!" +msgstr "Die Beschreibung des Suchmusters wurde aktualisiert!" + +#: 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: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 " @@ -6299,20 +6763,78 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +msgid "Callsign: " +msgstr "Rufzeichen: " + +#: 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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "Planquadrate" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Summe" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "QSL-Karte für " + +#: application/views/interface_assets/footer.php:2131 +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:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL-Karte" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "eQSL-Karte für " + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "QSL-Bilddatei" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "Vorderseite QSL-Karte:" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "Rückseite QSL-Karte:" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Entwickler-Modus" @@ -6351,11 +6873,11 @@ msgstr "Simple Fast Log Entry" #: application/views/interface_assets/header.php:121 msgid "Live Contest Logging" -msgstr "Live Contest Logging" +msgstr "Live Contest-Logging" #: application/views/interface_assets/header.php:123 msgid "Post Contest Logging" -msgstr "Zeitversetztes Contest Logging" +msgstr "Zeitversetztes Contest-Logging" #: application/views/interface_assets/header.php:132 msgid "Analytics" @@ -6429,19 +6951,27 @@ msgstr "Bandmap" msgid "SAT Timers" msgstr "SAT Timer" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "Satellitenflugbahn" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "Satellitenüberflug" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Admin" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "Globale Optionen" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6449,79 +6979,79 @@ msgstr "Globale Optionen" msgid "Satellites" msgstr "Satelliten" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "Länderdaten aktualisieren" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" -msgstr "Debug Informationen" +msgstr "Debug-Informationen" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "Logge/Suche Call" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "Logge" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "Suche Rufzeichen" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "Benutzerkonto" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" -msgstr "Andere Export Optionen" +msgstr "Andere Export-Optionen" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "Cabrillo Export" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" -msgstr "QSL Warteschlange" +msgstr "QSL-Warteschlange" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "Etiketten" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" -msgstr "Drittanbieter Dienste" +msgstr "Drittanbieter-Dienste" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" -msgstr "eQSL Import / Export" +msgstr "eQSL Import/Export" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "HRDLog Logbuch" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "Hilfe" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "Ausloggen" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "Wähle einen Stationsstandort" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "Extras" @@ -6543,7 +7073,7 @@ msgstr "" #: application/views/labels/edit.php:41 #: application/views/labels/editpaper.php:41 msgid "Measurement used" -msgstr "Verwendete Masseinheit" +msgstr "Verwendete Maßeinheit" #: application/views/labels/create.php:42 #: application/views/labels/createpaper.php:44 @@ -6569,7 +7099,7 @@ msgstr "Oberer Rand der Etiketten" #: application/views/labels/create.php:55 application/views/labels/edit.php:57 msgid "Margin Left" -msgstr "Rand Links" +msgstr "Linker Rand" #: application/views/labels/create.php:58 application/views/labels/edit.php:60 msgid "Left margin of labels." @@ -6597,7 +7127,7 @@ msgstr "Horizontaler Abstand" #: application/views/labels/create.php:80 application/views/labels/edit.php:82 msgid "Horizontal space between 2 labels." -msgstr "Horizontaler Abstand zwischen 2 Etiketten." +msgstr "Horizontaler Abstand zwischen zwei Etiketten." #: application/views/labels/create.php:83 application/views/labels/edit.php:85 msgid "Vertical space" @@ -6605,7 +7135,7 @@ msgstr "Vertikaler Abstand" #: application/views/labels/create.php:86 application/views/labels/edit.php:88 msgid "Vertical space between 2 labels." -msgstr "Vertikaler Abstand zwischen 2 Etiketten." +msgstr "Vertikaler Abstand zwischen zwei Etiketten." #: application/views/labels/create.php:91 application/views/labels/edit.php:93 msgid "Width of label" @@ -6652,8 +7182,7 @@ msgstr "Papier-Typ Name" #: application/views/labels/createpaper.php:39 #: application/views/labels/editpaper.php:39 msgid "Paper name used for display purposes, so pick something meaningful." -msgstr "" -"Papier Name, welcher angezeigt wird. Verwende also etwas aussagekräftiges." +msgstr "Angezeiger Papiername. Verwende also etwas aussagekräftiges." #: application/views/labels/createpaper.php:51 #: application/views/labels/editpaper.php:51 @@ -6706,8 +7235,8 @@ msgid "" "Label name used for display purposes so pick something meaningful perhaps " "the label style." msgstr "" -"Etiketten Name, welcher angezeigt wird. Verwende also etwas " -"aussagekräftiges, vielleicht der Etiketten-Stil." +"Angezeigter Etikettenname. Verwende also etwas aussagekräftiges, vielleicht " +"den Etiketten-Stil." #: application/views/labels/index.php:2 #: application/views/logbookadvanced/startatform.php:27 @@ -6767,7 +7296,7 @@ msgstr "Kein Papier zugeordnet" #: application/views/labels/index.php:117 msgid "QSL Card Labels Pending" -msgstr "Ausstehende QSL Karten Etiketten" +msgstr "Ausstehende QSL-Karten Etiketten" #: application/views/labels/index.php:126 msgid "QSOs Waiting" @@ -6800,8 +7329,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL via" @@ -6822,44 +7351,75 @@ msgstr "SAT Modus" msgid "Band RX" msgstr "Band RX" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Planquadrate" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: 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:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "CQ-Zonen" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "ITU-Zonen" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Nachtschatten" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "Von" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "bis" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 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:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Keine/Leer" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6868,18 +7428,18 @@ msgstr "QSL gesendet" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6889,15 +7449,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6906,18 +7466,18 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6928,10 +7488,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6946,14 +7506,14 @@ msgstr "Nein" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6980,23 +7540,23 @@ msgstr "In Warteschlange" msgid "Invalid (Ignore)" msgstr "Ungültig (Ignorieren)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "Verifiziert" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 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:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -7015,8 +7575,8 @@ msgstr "QSL-Send. Methode" msgid "Bureau" msgstr "Büro" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -7033,8 +7593,8 @@ msgstr "Büro" msgid "Direct" msgstr "Direkt" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -7051,8 +7611,8 @@ msgstr "Direkt" msgid "Electronic" msgstr "Elektronisch" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -7062,221 +7622,207 @@ msgstr "Elektronisch" msgid "Manager" msgstr "Manager" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "QSL-Empf. Methode" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "LoTW gesendet" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "LoTW erhalten" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "Clublog gesendet" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "Clublog erhalten" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "eQSL gesendet" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "eQSL erhalten" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "QSL Bilder" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "Bei Markierten: " -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "Aktualisieren aus dem Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "Angefordert (Büro)" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "Angefordert (Direkt)" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "Angefordert (Elektronisch)" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "Gesendet (Büro)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "Gesendet (Direkt)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "Gesendet (Elektronisch)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "Nicht gesendet" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "QSL nicht erforderlich" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "Nicht erhalten" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "Erhalten (Büro)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "Erhalten (Direkt)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "Erhalten (Elektronisch)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "Erstelle ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "Label drucken" -#: application/views/logbookadvanced/index.php:440 -msgid "QSL Slideshow" -msgstr "QSL Präsentation" - #: application/views/logbookadvanced/index.php:445 +msgid "QSL Slideshow" +msgstr "QSL-Präsentation" + +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "Schnellsuche in Markierten: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "Suche DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "Suche Staat" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "Suche Planquadrat" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" -msgstr "Suche CQ Zone" +msgstr "Suche CQ-Zone" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" -msgstr "Suche ITU Zone" +msgstr "Suche ITU-Zone" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "Suche Mode" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "Suche Band" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "Suche IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "Suche SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "Suche POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "Suche WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "Suche Operator" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "Schnellfilter" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" -msgstr "QSL Filter" +msgstr "QSL-Filter" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filter" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Resultate" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "Duplikate" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" -msgstr "Globus Karte" +msgstr "Globus-Karte" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "Optionen" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "QSL Msg" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Mein Refs" @@ -7313,32 +7859,6 @@ msgstr "Ebene" 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" @@ -7356,7 +7876,7 @@ msgstr "Wählen Sie einen Staat" #: application/views/search/result.php:46 #: application/views/search/result.php:58 msgid "LoTW User" -msgstr "LoTW Benutzer" +msgstr "LoTW-Benutzer" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:58 @@ -7373,7 +7893,7 @@ msgstr "Letzter Upload" #: application/views/lookup/lotwuser.php:14 msgid "No LoTW User" -msgstr "Kein LoTW Benutzer" +msgstr "Kein LoTW-Benutzer" #: 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!" @@ -7448,60 +7968,60 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7538,7 +8058,7 @@ msgstr "Lade Datei hoch" #: application/views/mode/create.php:24 application/views/mode/edit.php:33 msgctxt "Name of mode in ADIF-specification" msgid "ADIF Mode" -msgstr "ADIF Modus" +msgstr "ADIF-Modus" #: application/views/mode/create.php:26 application/views/mode/edit.php:35 msgid "Name of mode in ADIF-specification" @@ -7705,7 +8225,7 @@ msgstr "" #: application/views/options/appearance.php:80 msgid "Logbook Map" -msgstr "Logbook Karte" +msgstr "Logbuch-Karte" #: application/views/options/appearance.php:85 msgid "This allows to disable the map in the logbook." @@ -7725,7 +8245,7 @@ msgstr "" #: application/views/options/appearance.php:98 msgid "Public Github Button" -msgstr "Öffentliche Github Schaltfläche" +msgstr "Öffentliche Github-Schaltfläche" #: application/views/options/appearance.php:103 msgid "This enables the button to Wavelog's Github page in the public view" @@ -7734,11 +8254,11 @@ msgstr "" #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" -msgstr "Provider des DXClusterCache" +msgstr "Provider des DX-Cluster-Caches" #: application/views/options/dxcluster.php:39 msgid "DXClusterAPI" -msgstr "DXCluster API" +msgstr "DX-Cluster-API" #: application/views/options/dxcluster.php:39 #, php-format @@ -7746,13 +8266,13 @@ msgid "" "The Provider of the DXCluster-Cache. You can set up your own Cache with %s " "or use a public one" msgstr "" -"Der Anbieter der DXCluster-Cache. Du kannst deine eigene Cache mit %s " -"aufsetzen oder eine öffentliche benutzen" +"Der Anbieter des DX-Cluster-Caches. Du kannst deinen eigenen Cache mit %s " +"aufsetzen oder einesn öffentlichen benutzen" #: application/views/options/dxcluster.php:41 #, php-format msgid "URL of the DXCluster-Cache. e.g. %s" -msgstr "URL des DXCluster-Cache, z.B. %s" +msgstr "URL des DX-Cluster-Caches, z.B. %s" #: application/views/options/dxcluster.php:44 msgid "Maximum Age of spots taken care of" @@ -7794,7 +8314,7 @@ msgstr "Das Protokoll, mit dem E-Mails versendet werden." #: application/views/options/email.php:54 msgid "SMTP Encryption" -msgstr "SMTP Verschlüsselung" +msgstr "SMTP-Verschlüsselung" #: application/views/options/email.php:56 msgid "No Encryption" @@ -7826,7 +8346,7 @@ msgstr "" #: application/views/options/email.php:80 msgid "SMTP Host" -msgstr "SMTP Host" +msgstr "SMTP-Host" #: application/views/options/email.php:83 msgid "" @@ -7838,7 +8358,7 @@ msgstr "" #: application/views/options/email.php:88 msgid "SMTP Port" -msgstr "SMTP Port" +msgstr "SMTP-Port" #: application/views/options/email.php:91 msgid "" @@ -7881,7 +8401,7 @@ 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 Optionen sind globe Einstellungen, die für alle Benutzer der " +"Wavelog Optionen sind globale Einstellungen, die für alle Benutzer der " "Installation genutzt werden. Sie können auf Benutzerebene überschrieben " "werden, wenn eine entsprechende Option auf Benutzerebene vorhanden ist." @@ -7929,7 +8449,7 @@ msgstr "" #: application/views/options/radios.php:38 msgid "Radio Timeout Warning" -msgstr "Funkgeräte Timeout Warnung" +msgstr "Funkgeräte-Timeout-Warnung" #: application/views/options/radios.php:39 msgid "" @@ -8025,7 +8545,7 @@ msgstr "QSL-Karte anfordern" #: application/views/oqrs/index.php:26 msgid "Enter your callsign" -msgstr "Gib Dein Rufzeichen ein" +msgstr "Gib dein Rufzeichen ein" #: application/views/oqrs/index.php:26 msgid "This search will search in all station locations where OQRS is active." @@ -8065,7 +8585,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" @@ -8077,7 +8597,7 @@ msgstr "Deine E-Mail-Adresse, wo wir dich kontaktieren können" #: application/views/oqrs/notinlogform.php:40 msgid "Send not in log request" -msgstr "Sende eine 'Nicht im Log' Anfrage" +msgstr "Sende eine 'Nicht im Log'-Anfrage" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:29 @@ -8140,7 +8660,7 @@ msgstr "" #: application/views/oqrs/request.php:40 #: application/views/oqrs/request_grouped.php:44 msgid "QSL Route" -msgstr "QSL Route" +msgstr "QSL-Route" #: application/views/oqrs/request.php:50 #: application/views/oqrs/request_grouped.php:54 @@ -8154,7 +8674,7 @@ msgstr "Anfrage senden" #: application/views/oqrs/request_grouped.php:16 msgid "Station Name" -msgstr "Stations Name" +msgstr "Stationsname" #: application/views/oqrs/request_grouped.php:73 #: application/views/oqrs/result.php:40 @@ -8164,7 +8684,7 @@ msgstr "Keine QSOs im Log gefunden." #: application/views/oqrs/result.php:5 #, php-format msgid "Log search result for %s" -msgstr "Log Suchergebnis für %s" +msgstr "Ergebnis der Logsuche für %s" #: application/views/oqrs/result.php:30 #, php-format @@ -8182,7 +8702,7 @@ msgstr[1] "und hat %d QSOs im Log" #: application/views/oqrs/result.php:37 msgid "Request QSL" -msgstr "QSL Anfordern" +msgstr "QSL anfordern" #: application/views/oqrs/result.php:44 msgid "Not in log?" @@ -8196,7 +8716,7 @@ msgstr "Offene Anfrage" #: application/views/oqrs/showrequests.php:6 #: application/views/oqrs/showrequests.php:51 msgid "Not in log request" -msgstr "'Nicht im Log' Anfrage" +msgstr "'Nicht im Log'-Anfrage" #: application/views/oqrs/showrequests.php:7 #: application/views/oqrs/showrequests.php:52 @@ -8205,11 +8725,11 @@ msgstr "Anfrage erledigt" #: application/views/oqrs/showrequests.php:47 msgid "OQRS Status" -msgstr "OQRS Status" +msgstr "OQRS-Status" #: application/views/oqrs/showrequests.php:69 msgid "With selected" -msgstr "Bei Markierten" +msgstr "Bei markierten" #: application/views/oqrs/showrequests.php:70 msgid "Mark as done" @@ -8222,11 +8742,11 @@ msgstr "Zeit der Anfrage" #: application/views/oqrs/showrequests.php:81 #: application/views/simplefle/index.php:74 msgid "QSO Date" -msgstr "QSO Datum" +msgstr "QSO-Datum" #: application/views/oqrs/showrequests.php:82 msgid "QSO Time" -msgstr "QSO Zeit" +msgstr "QSO-Zeit" #: application/views/oqrs/showrequests.php:85 msgid "Request callsign" @@ -8234,7 +8754,7 @@ msgstr "Rufzeichen der Anfrage" #: application/views/oqrs/showrequests.php:89 msgid "QSL route" -msgstr "QSL Route" +msgstr "QSL-Route" #: application/views/oqrs/showrequests.php:90 msgid "Check log" @@ -8270,7 +8790,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 @@ -8404,42 +8924,27 @@ 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" #: application/views/qso/edit_ajax.php:34 msgid "Sats" -msgstr "Sats" +msgstr "Satelliten" #: application/views/qso/edit_ajax.php:51 msgid "Start Date/Time" @@ -8447,15 +8952,15 @@ msgstr "Start Datum/Zeit" #: application/views/qso/edit_ajax.php:56 msgid "End Date/Time" -msgstr "End Datum/Zeit" +msgstr "Enddatum/-zeit" #: application/views/qso/edit_ajax.php:76 msgid "RX Frequency" -msgstr "RX Frequenz" +msgstr "RX-Frequenz" #: application/views/qso/edit_ajax.php:99 msgid "RX Band" -msgstr "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 @@ -8477,18 +8982,18 @@ msgstr "QTH" #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" -msgstr "Sat Name" +msgstr "Satellitenname" #: application/views/qso/edit_ajax.php:263 msgid "Sat Mode" -msgstr "Sat Modus" +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 "Sig Info" +msgstr "Signal-Info" #: application/views/qso/edit_ajax.php:369 msgid "Notes (for internal usage only)" @@ -8496,7 +9001,7 @@ msgstr "Notizen (nur für den internen Gebrauch)" #: application/views/qso/edit_ajax.php:403 msgid "Sent Method" -msgstr "Sende Methode" +msgstr "Sendemethode" #: application/views/qso/edit_ajax.php:406 #: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 @@ -8506,7 +9011,7 @@ msgstr "Methode" #: application/views/qso/edit_ajax.php:416 msgid "Sent Via" -msgstr "Gesendet Via" +msgstr "Gesendet via" #: application/views/qso/edit_ajax.php:430 #: application/views/qso/edit_ajax.php:471 @@ -8516,7 +9021,7 @@ msgstr "Verifiziert (Match)" #: application/views/qso/edit_ajax.php:436 msgid "Received Method" -msgstr "Empfangs Methode" +msgstr "Empfangsmethode" #: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 msgid "This note content is exported to QSL services like eqsl.cc." @@ -8524,11 +9029,11 @@ msgstr "Dieser Notizeninhalt wird an QSL Services wie eqsl.cc exportiert." #: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 msgid "Get the default message for eQSL, for this station." -msgstr "Setze die eQSL Nachricht auf den Standardtext zurück." +msgstr "Setze die eQSL-Nachricht auf den Standardtext zurück." #: application/views/qso/edit_ajax.php:530 msgid "Change Station Profile" -msgstr "Stations Profil ändern" +msgstr "Stationsstandort ändern" #: application/views/qso/edit_ajax.php:576 msgid "Exchange (R)" @@ -8553,7 +9058,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:690 msgid "Previous Contacts" msgstr "Vorherige Kontakte" @@ -8591,23 +9096,23 @@ msgstr "Endzeit" #: application/views/qso/index.php:124 msgid "Search DXCluster for latest Spot" -msgstr "Suche im DXCluster nach letztem 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" -msgstr "IOTA Referenznummer" +msgstr "IOTA-Referenznummer" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" -msgstr "SOTA Referenznummer" +msgstr "SOTA-Referenznummer" #: application/views/qso/index.php:322 application/views/view_log/qso.php:98 msgid "Frequency (RX)" @@ -8669,15 +9174,19 @@ msgstr "Winkey" msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "Senden" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Vorschläge" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Profilbild" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "Es werden maximal 5 Kontakte angezeigt" @@ -8699,29 +9208,33 @@ msgstr "" "Falls du bis jetzt keine Funkgeräte verbunden hast, geh zur API Seite und " "generiere API Schlüssel." -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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 "Wie du die %s verwendest, findest du im Wiki." -#: application/views/radio/index.php:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "Funkgerät-Funktionen" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "Bitte warten..." + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" -msgstr "Satelliten Name" +msgstr "Satellitenname" #: application/views/satellite/create.php:25 msgid "The name of the Satellite" -msgstr "Der Name des Satellit" +msgstr "Der Name des Satelliten" #: application/views/satellite/create.php:28 #: application/views/satellite/edit.php:12 #: application/views/satellite/index.php:22 msgid "Export Name" -msgstr "Export Name" +msgstr "Export-Name" #: application/views/satellite/create.php:30 #: application/views/satellite/edit.php:14 @@ -8741,7 +9254,7 @@ msgstr "Name des Satellitenmodus" #: application/views/satellite/create.php:42 msgid "Enter satellite mode" -msgstr "Gib den Satelliten Modus an" +msgstr "Gib den Satellitenmodus an" #: application/views/satellite/create.php:47 #: application/views/satellite/edit.php:35 @@ -8755,7 +9268,7 @@ msgstr "Gib die Modulation an, welche im Uplink verwendet wird" #: application/views/satellite/create.php:52 #: application/views/satellite/edit.php:36 msgid "Uplink frequency" -msgstr "Uplink Frequenz" +msgstr "Uplink-Frequenz" #: application/views/satellite/create.php:54 msgid "Enter frequency (in Hz) used for uplink" @@ -8774,15 +9287,15 @@ msgstr "Gib die Modulation an, welche für den Downlink verwendet wird" #: application/views/satellite/create.php:64 #: application/views/satellite/edit.php:38 msgid "Downlink frequency" -msgstr "Downlink Frequenz" +msgstr "Downlink-Frequenz" #: application/views/satellite/create.php:66 msgid "Enter frequency (in Hz) used for downlink" -msgstr "Gib die Frequenz in Hertz (Hz) an welche im Downlink verwendet wird" +msgstr "Gib die Frequenz in Hertz (Hz) an, welche im Downlink verwendet wird" #: application/views/satellite/edit.php:9 msgid "Name of the Satellite" -msgstr "Der Name des Satellit" +msgstr "Der Name des Satelliten" #: application/views/satellite/edit.php:25 msgid "Save satellite" @@ -8796,6 +9309,75 @@ msgstr "Satellitenmodus hinzufügen" msgid "Add a satellite" msgstr "Satellit hinzufügen" +#: application/views/satellite/pass.php:2 +msgid "Satellite passes" +msgstr "Satellitenüberflüge" + +#: 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 "" @@ -8816,11 +9398,7 @@ msgstr "Azimuth" #: application/views/sattimers/index.php:45 msgid "Max Elevation" -msgstr "Max Elevation" - -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Dauer" +msgstr "Max. Elevation" #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 @@ -8863,7 +9441,7 @@ msgstr "" #: application/views/search/cqzones_result.php:14 msgid "DXCC CQ Zone" -msgstr "DXCC CQ Zone" +msgstr "DXCC CQ-Zone" #: application/views/search/cqzones_result.php:51 msgid "No incorrect CQ Zones were found." @@ -8873,26 +9451,14 @@ msgstr "Es wurden keine falschen CQ-Zonen gefunden." msgid "Save query" msgstr "Suchmuster speichern" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "Suchmuster bearbeiten" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "Gespeicherte Suchmuster" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "Suchmuster ausführen" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "Suchfilter-Funktionen" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "Nach ADIF exportieren" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "Suchergebnisse" @@ -8911,15 +9477,15 @@ msgstr "Stationsstandort" #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" -msgstr "Letzter LoTW Upload" +msgstr "Letzter LoTW-Upload" #: application/views/search/lotw_unconfirmed_result.php:41 msgid "No QSOs with outstanding LoTW upload were found." -msgstr "Keine QSOs wurden gefunden, bei denen der LoTW Upload hängig ist." +msgstr "Keine QSOs wurden gefunden, bei denen der LoTW-Upload aussteht." #: application/views/search/main.php:28 msgid "Callsign / Gridsquare" -msgstr "Rufzeichen / Planquadrat" +msgstr "Rufzeichen/Planquadrat" #: application/views/search/result.php:2 #, php-format @@ -8934,7 +9500,7 @@ msgstr "Entschuldige, aber es wurden keine vergangenen QSOs mit %s gefunden" #: application/views/search/result.php:6 #, php-format msgid "Callbook Search for %s" -msgstr "Callbook Suche für %s" +msgstr "Callbook-Suche für %s" #: application/views/search/result_search.php:9 #: application/views/statistics/custom_result.php:90 @@ -8972,14 +9538,14 @@ msgstr "Markiere QSL erhalten (Direkt)" #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Card Requested" -msgstr "Markiere QSL Karte als angefragt" +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 msgid "Mark QSL Card Not Required" -msgstr "Markiere QSL Karte als nicht notwendig" +msgstr "Markiere QSL-Karte als nicht notwendig" #: application/views/search/search_result_ajax.php:426 #: application/views/view_log/partial/log_ajax.php:340 @@ -9033,7 +9599,7 @@ msgstr "" #: application/views/simplefle/index.php:17 #: application/views/simplefle/index.php:170 msgid "Syntax Help" -msgstr "Syntax Hilfe" +msgstr "Syntax-Hilfe" #: application/views/simplefle/index.php:18 msgid "Syntax for FLE" @@ -9041,7 +9607,7 @@ msgstr "Syntax für FLE" #: application/views/simplefle/index.php:19 msgid "Close and Load Sample Data" -msgstr "Schliesse und Lade Beispiel Daten" +msgstr "Schließe und lade Beispieldaten" #: application/views/simplefle/index.php:23 msgid "Band is missing!" @@ -9065,7 +9631,7 @@ msgstr "Stationsstandort nicht ausgewählt" #: application/views/simplefle/index.php:30 msgid "'Operator' Field is empty" -msgstr "'Operator' Feld ist leer" +msgstr "'Operator'-Feld ist leer" #: application/views/simplefle/index.php:31 msgid "Warning! Do you really want to reset everything?" @@ -9092,7 +9658,7 @@ msgid "" "Attention! The Data Field containes example data. First Clear Logging " "Session!" msgstr "" -"Achtung! Das Daten Feld enthält Beispiel Daten. Lösche zuerst die QSO Daten!" +"Achtung! Das Datenfeld enthält Beispieldaten. Lösche zuerst die QSO-Daten!" #: application/views/simplefle/index.php:35 msgid "" @@ -9115,7 +9681,7 @@ msgstr "Was ist das?" #: application/views/simplefle/index.php:43 msgid "Current UTC Time" -msgstr "Aktuelle UTC Zeit" +msgstr "Aktuelle UTC-Zeit" #: application/views/simplefle/index.php:76 msgid "If you don't choose a date, today's date will be used." @@ -9132,11 +9698,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" @@ -9145,7 +9711,7 @@ msgstr "z.B. OK2CQR" #: application/views/simplefle/index.php:115 msgid "This is callsign of the operator. Without any pre- or suffixes." msgstr "" -"Dies ist das Rufzeichen des Operators. Ohne irgendwelche Pre- oder Suffixe." +"Dies ist das Rufzeichen des Operators. Ohne irgendwelche Prä- oder Suffixe." #: application/views/simplefle/index.php:125 msgid "Enter the Data" @@ -9156,15 +9722,14 @@ msgid "Refs" msgstr "Refs" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, 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 msgid "Reload QSO List" -msgstr "Aktualisiere QSO Liste" +msgstr "Aktualisiere QSO-Liste" #: application/views/simplefle/index.php:168 msgid "Save in Wavelog" @@ -9172,7 +9737,7 @@ msgstr "Speichere in Wavelog" #: application/views/simplefle/index.php:169 msgid "Clear Logging Session" -msgstr "Lösche QSO Daten" +msgstr "Lösche QSO-Daten" #: application/views/simplefle/options.php:20 msgid "No Options yet" @@ -9247,126 +9812,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:32 -#: 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 "Standort Name" +msgstr "Name des Standorts" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 -#: 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" +msgstr "Heimat-QTH" -#: application/views/station_profile/create.php:34 -#: 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:40 -#: 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 "Station Rufzeichen. Zum Beispiel: HB9HIL/P" +msgstr "Stationsrufzeichen. Zum Beispiel: 4W7EST/P" -#: application/views/station_profile/create.php:44 -#: 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 "Station Sendeleistung (W)" +msgstr "Sendeleistung der Station (W)" -#: application/views/station_profile/create.php:46 -#: 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:49 -#: 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" +msgstr "Stations-DXCC" -#: application/views/station_profile/create.php:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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!" +msgstr "Falls du deine ITU-Zone nicht kennst %s um es herauszufinden!" -#: application/views/station_profile/create.php:116 -#: 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 "Station Planquadrat" +msgstr "Planquadrat der Station" -#: application/views/station_profile/create.php:121 -#: 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:125 -#: 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 "" @@ -9376,8 +9940,8 @@ msgstr "" "Stations Planquadrat. Zum Beispiel: HM45AP. Falls du deinen Locator nicht " "kennst %s!" -#: application/views/station_profile/create.php:126 -#: 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." @@ -9385,99 +9949,99 @@ 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:141 -#: 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:142 -#: 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:142 -#: 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 Refrenzen auf der %s nachschauen." +msgstr "Du kannst IOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:148 -#: 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:148 -#: 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 Refrenzen auf der %s nachschauen." +"Stations-SOTA-Referenz. Du kannst SOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:154 -#: 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 Karten Webseite" +msgstr "GMA-Kartenseite" -#: application/views/station_profile/create.php:154 -#: 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." +"Stations-WWFF-Referenz. Du kannst WWFF Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:160 -#: 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" +msgstr "POTA-Karten-Webseite" -#: application/views/station_profile/create.php:160 -#: 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 "" -"Stations POTA Referenzen. Es sind mehrere Referenzen durch Komma separiert " +"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:164 -#: 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" +msgstr "Signatur-Bezeichnung" -#: application/views/station_profile/create.php:166 -#: 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:170 -#: 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" +msgstr "Signatur-Information" -#: application/views/station_profile/create.php:172 -#: 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)." +msgstr "Signatur/Referenz-Information der Station (z.B. DA/NW-357)." -#: application/views/station_profile/create.php:176 -#: 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" +msgstr "eQSL-QTH-Nickname" -#: application/views/station_profile/create.php:178 -#: 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" +msgstr "Der 'QTH-Nickname' wie er in deinem eQSL Profil konfiguriert ist" -#: application/views/station_profile/create.php:182 -#: 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" +msgstr "Standard-QSLMSG" -#: application/views/station_profile/create.php:185 -#: 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." @@ -9485,13 +10049,13 @@ msgstr "" "Definiere eine Standard-Nachricht, welche für jedes QSO in diesem " "Stationsstandort an eQSL übertragen wird." -#: application/views/station_profile/create.php:188 -#: 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:193 -#: 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 " @@ -9502,206 +10066,142 @@ msgstr "" "deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call " "überprüfen" -#: application/views/station_profile/create.php:196 -#: 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" +msgstr "Clublog-Echtzeit-Upload" -#: application/views/station_profile/create.php:205 -#: 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:207 -#: 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:210 -#: 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" +msgstr "HRDLog.net API-Schlüssel" -#: application/views/station_profile/create.php:212 -#: 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" +msgstr "Erstelle deinen API-Code auf deiner %s" -#: application/views/station_profile/create.php:212 -#: 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" +msgstr "HRDlog.net Benutzerprofil-Seite" -#: application/views/station_profile/create.php:215 -#: 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" +msgstr "HRDLog.net Logbuch-Echtzeit-Upload" -#: application/views/station_profile/create.php:224 -#: 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:229 +#: 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" +msgstr "QRZ.com-Logbuch API-Schlüssel" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" -msgstr "Teste API Schlüssel" +msgstr "Teste API-Schlüssel" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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" +msgstr "QRZ.com Logbuch-Upload" -#: application/views/station_profile/create.php:241 -#: 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:249 -#: 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" +msgstr "QO-100 Dx Club API-Schlüssel" -#: application/views/station_profile/create.php:251 -#: 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" +msgstr "Erstelle deinen API-Schlüssel auf deiner %s" -#: application/views/station_profile/create.php:251 -#: 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:254 -#: 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" +msgstr "QO-100 Dx Club Echtzeit-Upload" -#: application/views/station_profile/create.php:264 -#: 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:271 -#: 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" +msgstr "OQRS Email-Benachrichtigung" -#: application/views/station_profile/create.php:276 -#: 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:279 -#: 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" +msgstr "OQRS-Text" -#: application/views/station_profile/create.php:281 -#: 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 "Stationslogbuch Name" +msgstr "Name des Stationslogbuchs" #: application/views/stationsetup/create.php:19 msgid "You can call a station logbook anything." @@ -9709,7 +10209,7 @@ msgstr "Du kannst das Stationslogbuch völlig frei benennen." #: application/views/stationsetup/edit.php:18 msgid "Container name" -msgstr "Container Name" +msgstr "Containername" #: application/views/stationsetup/edit.php:20 msgid "You can call a container anything." @@ -9718,17 +10218,17 @@ msgstr "Du kannst einen Container frei benennen." #: application/views/stationsetup/exportmapoptions.php:11 msgctxt "Map Options" msgid "CQ Zone overlay" -msgstr "CQ Zone Overlay" +msgstr "CQ-Zone-Overlay" #: application/views/stationsetup/exportmapoptions.php:15 msgctxt "Map Options" msgid "Gridsquare overlay" -msgstr "Planquadrate Overlay" +msgstr "Planquadrate-Overlay" #: application/views/stationsetup/exportmapoptions.php:19 msgctxt "Map Options" msgid "Night shadow overlay" -msgstr "Nachtschatten Overlay" +msgstr "Nachtschatten-Overlay" #: application/views/stationsetup/exportmapoptions.php:27 msgid "# QSOs shown" @@ -9746,6 +10246,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" @@ -9775,6 +10280,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 " @@ -9783,6 +10310,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" @@ -9861,7 +10416,7 @@ msgstr "Eindeutige Rufzeichen" #: application/views/themes/add.php:4 application/views/themes/edit.php:4 msgid "Theme Name" -msgstr "Theme Name" +msgstr "Themenname" #: 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." @@ -9869,7 +10424,7 @@ msgstr "Das ist der Name, welcher in der Themes Liste angezeigt wird." #: application/views/themes/add.php:10 application/views/themes/edit.php:10 msgid "Folder Name" -msgstr "Ordner Name" +msgstr "Ordnername" #: application/views/themes/add.php:12 application/views/themes/edit.php:12 msgid "" @@ -9894,7 +10449,7 @@ msgstr "Dunkel" #: application/views/themes/add.php:21 msgid "This defines wherever the theme is a light or a dark one." -msgstr "Das definiert, ob das Theme Hell oder Dunkel ist." +msgstr "Dies legt fest, ob das Theme hell oder dunkel ist." #: application/views/themes/add.php:25 application/views/themes/edit.php:25 #: application/views/themes/index.php:85 @@ -9918,7 +10473,7 @@ msgstr "" #: application/views/themes/add.php:31 application/views/themes/edit.php:31 #: application/views/themes/index.php:86 msgid "Main Logo" -msgstr "Haupt Logo" +msgstr "Hauptogo" #: application/views/themes/add.php:33 application/views/themes/edit.php:33 #, php-format @@ -9947,7 +10502,7 @@ msgstr "Theme aktualisieren" #: application/views/themes/index.php:22 msgid "Themes list" -msgstr "Themes Liste" +msgstr "Themenliste" #: application/views/themes/index.php:28 msgid "" @@ -10023,12 +10578,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" @@ -10048,7 +10604,7 @@ msgstr "Kontakte wurden geplotted" #: application/views/timeplotter/index.php:3 msgid "Time Distribution" -msgstr "Uhrzeit Verteilung" +msgstr "Zeitliche Verteilung" #: application/views/timeplotter/index.php:6 msgid "Callsign(s) worked (max 5)" @@ -10089,15 +10645,15 @@ msgstr "Du musst php-xml installieren, damit dies funktioniert." #: application/views/update/index.php:27 msgid "Check for DXCC Data Updates" -msgstr "Überprüft auf neue DXCC Daten" +msgstr "Überprüft auf neue DXCC-Daten" #: application/views/update/index.php:28 msgid "Update DXCC Data" -msgstr "DXCC Daten aktualisieren" +msgstr "DXCC-Daten aktualisieren" #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" -msgstr "DXCC Daten auf das Logbuch anwenden" +msgstr "DXCC-Daten auf das Logbuch anwenden" #: application/views/update/index.php:36 msgid "" @@ -10116,9 +10672,9 @@ msgstr "" #: application/views/update/index.php:40 msgid "Check QSOs missing DXCC data" -msgstr "Überprüft QSOs auf fehlende DXCC Daten" +msgstr "Überprüft QSOs auf fehlende DXCC-Daten" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "Alle QSOs in Logbuch nochmal überprüfen" @@ -10147,6 +10703,16 @@ msgstr "" msgid "Update distance data" msgstr "Entfernungsdaten aktualisieren" +#: application/views/update/index.php:61 +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" @@ -10176,13 +10742,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 @@ -10211,7 +10777,7 @@ msgstr "Ham Radio" #: application/views/user/edit.php:146 msgid "Wavelog Preferences" -msgstr "Wavelog Einstellungen" +msgstr "Wavelog-Einstellungen" #: application/views/user/edit.php:157 msgid "Stylesheet" @@ -10219,16 +10785,12 @@ msgstr "Stylesheet" #: application/views/user/edit.php:169 msgid "Wavelog Language" -msgstr "Wavelog Sprache" +msgstr "Wavelog-Sprache" #: application/views/user/edit.php:176 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" @@ -10315,7 +10877,7 @@ msgstr "" #: application/views/user/edit.php:366 msgid "Location auto lookup." -msgstr "Automatische Ermittlung der Lokation." +msgstr "Automatische Ermittlung des Standorts." #: application/views/user/edit.php:372 msgid "If set, gridsquare is fetched based on location name." @@ -10325,7 +10887,7 @@ msgstr "" #: application/views/user/edit.php:376 msgid "SOTA auto lookup gridsquare and name for summit." msgstr "" -"Automatische Ermittlung von Planquadrat und Lokation anhand des SOTA Gipfels." +"Automatische Ermittlung von Planquadrat und Standort anhand des SOTA-Gipfels." #: application/views/user/edit.php:382 application/views/user/edit.php:392 #: application/views/user/edit.php:402 @@ -10339,12 +10901,12 @@ msgstr "" #: application/views/user/edit.php:386 msgid "WWFF auto lookup gridsquare and name for reference." msgstr "" -"Automatische Ermittlung von Planquadrat und Lokation andhand der WWFF " +"Automatische Ermittlung von Planquadrat und Standort anhand der WWFF-" "Referenz." #: application/views/user/edit.php:396 msgid "POTA auto lookup gridsquare and name for park." -msgstr "Automatische Ermittlung des Parknamens anhand der POTA Referenz." +msgstr "Automatische Ermittlung des Parknamens anhand der POTA-Referenz." #: application/views/user/edit.php:413 msgid "Menu Options" @@ -10356,7 +10918,7 @@ msgstr "Zeige Notizen im Hauptmenü." #: application/views/user/edit.php:427 msgid "Quicklog Field" -msgstr "Quicklog Feld" +msgstr "Quicklog-Feld" #: application/views/user/edit.php:433 msgid "" @@ -10368,7 +10930,7 @@ msgstr "" #: application/views/user/edit.php:437 msgid "Quicklog - Action on press Enter" -msgstr "Quicklog - Aktion mit Enter Taste" +msgstr "Quicklog - Aktion mit Enter-Taste" #: application/views/user/edit.php:440 msgid "Log Callsign" @@ -10381,7 +10943,7 @@ msgstr "Welche Aktion soll ausgeführt werden, wenn Enter gedrückt wird?" #: application/views/user/edit.php:449 msgid "Station Locations Quickswitch" -msgstr "Stationsstandort -Quickswitch" +msgstr "Stationsstandort-Quickswitch" #: application/views/user/edit.php:454 msgid "Show the Station Locations Quickswitch in the main menu" @@ -10389,7 +10951,7 @@ msgstr "Zeigt den Stationsstandort-Quickswitch im Hauptmenü" #: application/views/user/edit.php:458 msgid "UTC Time in Menu" -msgstr "UTC Zeit im Menü" +msgstr "UTC-Zeit im Menü" #: application/views/user/edit.php:463 msgid "Show the current UTC Time in the menu" @@ -10397,7 +10959,7 @@ msgstr "Zeigt die aktuelle UTC-Zeit im Menü" #: application/views/user/edit.php:474 msgid "Map Settings" -msgstr "Karten Einstellungen" +msgstr "Karteneinstellungen" #: application/views/user/edit.php:481 msgid "Icon" @@ -10425,7 +10987,7 @@ msgstr "Zeige Locator" #: application/views/user/edit.php:555 msgid "Previous QSL Type" -msgstr "QSL Typ der vorherigen QSOs" +msgstr "QSL-Typ der vorherigen QSOs" #: application/views/user/edit.php:559 msgid "Select the type of QSL to show in the previous QSOs section." @@ -10448,7 +11010,7 @@ msgstr "" #: application/views/user/edit.php:619 msgid "Default Values" -msgstr "Standardwerte / Favoriten" +msgstr "Standardwerte/Favoriten" #: application/views/user/edit.php:627 msgid "Settings for Default Band and Confirmation" @@ -10505,15 +11067,15 @@ msgstr "Verschiedenes" #: application/views/user/edit.php:796 msgid "AMSAT Status Upload" -msgstr "AMSAT Status Upload" +msgstr "AMSAT Status-Upload" #: application/views/user/edit.php:799 msgid "Upload status of SAT QSOs to" -msgstr "Status von SAT QSOs hochladen auf" +msgstr "Status von SAT-QSOs hochladen auf" #: application/views/user/edit.php:813 msgid "Mastodonserver" -msgstr "Mastodon Server" +msgstr "Mastodonserver" #: application/views/user/edit.php:816 msgid "URL of Mastodonserver" @@ -10534,7 +11096,7 @@ msgstr "Winkeyer" #: application/views/user/edit.php:830 msgid "Winkeyer Features Enabled" -msgstr "Winkeyer Features Eingeschaltet" +msgstr "Winkeyer-Features eingeschaltet" #: application/views/user/edit.php:836 #, php-format @@ -10551,7 +11113,7 @@ msgstr "Hams.at" #: application/views/user/edit.php:850 msgid "Private Feed Key" -msgstr "Privater Feed Schlüssel" +msgstr "Privater Feed-Schlüssel" #: application/views/user/edit.php:852 #, php-format @@ -10584,6 +11146,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" @@ -10598,106 +11288,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 Passwort-Reset E-Mail 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" @@ -10752,10 +11353,6 @@ msgstr "QSO Details" msgid "QSL Management" msgstr "QSL Verwaltung" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "eQSL Karte" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Entfernung" @@ -10770,43 +11367,43 @@ msgstr "Antennenelevation" #: application/views/view_log/qso.php:370 msgid "QSL Card has been sent via the bureau" -msgstr "QSL Karte wurde via Büro gesendet" +msgstr "QSL-Karte wurde via Büro gesendet" #: application/views/view_log/qso.php:372 msgid "QSL Card has been sent via direct" -msgstr "QSL Karte wurde direkt gesendet" +msgstr "QSL-Karte wurde direkt gesendet" #: application/views/view_log/qso.php:374 msgid "QSL Card has been sent electronically" -msgstr "QSL Karte wurde elektronisch gesendet" +msgstr "QSL-Karte wurde elektronisch gesendet" #: application/views/view_log/qso.php:376 msgid "QSL Card has been sent via manager" -msgstr "QSL Karte wurde via Manager gesendet" +msgstr "QSL-Karte wurde via Manager gesendet" #: application/views/view_log/qso.php:378 msgid "QSL Card has been sent" -msgstr "QSL Karte wurde gesendet" +msgstr "QSL-Karte wurde gesendet" #: application/views/view_log/qso.php:387 msgid "QSL Card has been received via the bureau" -msgstr "QSL Karte wurde via Büro empfangen" +msgstr "QSL-Karte wurde via Büro empfangen" #: application/views/view_log/qso.php:389 msgid "QSL Card has been received via direct" -msgstr "QSL Karte wurde direkt empfangen" +msgstr "QSL-Karte wurde direkt empfangen" #: application/views/view_log/qso.php:391 msgid "QSL Card has been received electronically" -msgstr "QSL Karte wurde elektronisch empfangen" +msgstr "QSL-Karte wurde elektronisch empfangen" #: application/views/view_log/qso.php:393 msgid "QSL Card has been received via manager" -msgstr "QSL Karte wurde via Manager empfangen" +msgstr "QSL-Karte wurde via Manager empfangen" #: application/views/view_log/qso.php:395 msgid "QSL Card has been received" -msgstr "QSL Karte wurde empfangen" +msgstr "QSL-Karte wurde empfangen" #: application/views/view_log/qso.php:404 msgid "This station uses LoTW." @@ -10827,21 +11424,17 @@ msgstr "Mehr QSOs" msgid "Details" msgstr "Details" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "QSL-Bilddatei" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" -msgstr "QSL Kartenfront hochgeladen" +msgstr "QSL-Kartenfront hochgeladen" #: application/views/view_log/qso.php:635 msgid "Upload QSL Card image" -msgstr "Bild der QSL Karte hochladen" +msgstr "Bild der QSL-Karte hochladen" #: application/views/view_log/qso.php:640 msgid "Uploaded QSL Card back image" -msgstr "QSL Kartenrückseite hochgeladen" +msgstr "QSL-Kartenrückseite hochgeladen" #: application/views/view_log/qso.php:656 msgid "Mark QSL Received (Electronic)" @@ -10849,17 +11442,17 @@ msgstr "Markiere QSL erhalten (Elektronisch)" #: application/views/view_log/qso.php:662 msgid "Mark QSL Card Requested (Bureau)" -msgstr "Markiere QSL Karte als angefragt (Büro)" +msgstr "Markiere QSL-Karte als angefragt (Büro)" #: application/views/view_log/qso.php:664 msgid "Mark QSL Card Requested (Direct)" -msgstr "Markiere QSL Karte als angefragt (Direkt)" +msgstr "Markiere QSL-Karte als angefragt (Direkt)" #: application/views/view_log/qso.php:679 msgid "eQSL picture" msgstr "eQSL Bild" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "CSV" @@ -10888,7 +11481,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 @@ -10959,7 +11552,7 @@ msgstr "Wavelog OQRS" #: application/views/widgets/oqrs.php:76 msgid "Wavelog OQRS Request" -msgstr "Wavelog OQRS Anfrage" +msgstr "Wavelog OQRS-Anfrage" #: application/views/widgets/oqrs.php:79 #, php-format @@ -10974,6 +11567,119 @@ msgstr "Dein Rufzeichen:" msgid "Submit Request" msgstr "Anfrage senden" +#, 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 " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "Die aktuelle Migration ist nicht die Version, die sie sein sollte. Lade " +#~ "diese Seite neu. Wenn diese Warnung weiterhin besteht, ist deine " +#~ "Migration wahrscheinlich aufgrund eines früheren fehlgeschlagenen " +#~ "Prozesses gesperrt. Überprüfe den Ordner %s auf eine Datei namens %s und " +#~ "entferne diese Datei, um die Migration erneut zu erzwingen." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" 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 4dbac9385..a3c66ac1f 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" -"Last-Translator: Fabian Berg \n" +"POT-Creation-Date: 2024-08-22 13:37+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,7 +17,79 @@ 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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -29,11 +102,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" @@ -55,12 +129,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 +152,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "" @@ -146,7 +221,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Εγκυρος" @@ -166,12 +241,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "" @@ -181,7 +256,7 @@ msgstr "" #: 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/logbookadvanced/index.php:618 #: 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 @@ -196,12 +271,12 @@ msgstr "" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -239,6 +314,10 @@ msgstr "" msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -260,12 +339,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,7 +355,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +365,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +385,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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,74 +423,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -438,7 +517,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "" @@ -459,17 +538,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Αρχείο διαγωνισμού" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "" @@ -481,20 +560,44 @@ msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -503,42 +606,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -559,7 +662,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "" @@ -569,7 +672,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +690,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -629,7 +732,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -794,15 +897,15 @@ msgstr "Αρχείο επαφών" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -817,18 +920,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -847,17 +950,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: 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,7 +972,7 @@ msgstr "" #: 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" @@ -880,10 +983,10 @@ msgstr "" #: 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/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 @@ -891,36 +994,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -961,12 +1065,12 @@ msgstr "" msgid "Mode" msgstr "Τρόπος" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -988,12 +1092,12 @@ msgstr "Τρόπος" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1016,7 +1120,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1026,7 +1130,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1040,13 +1143,13 @@ msgstr "" msgid "Country" msgstr "Χώρα" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1058,7 +1161,7 @@ msgstr "Χώρα" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1067,17 +1170,17 @@ msgstr "Χώρα" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1095,7 +1198,7 @@ msgstr "" msgid "State" msgstr "Επαρχία" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1107,8 +1210,8 @@ msgstr "Επαρχία" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1119,11 +1222,11 @@ msgstr "Επαρχία" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1135,14 +1238,14 @@ msgstr "Επαρχία" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1158,26 +1261,26 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1186,13 +1289,13 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1234,8 +1337,8 @@ msgstr "" msgid "Band" msgstr "Ζώνη" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1254,11 +1357,11 @@ msgstr "Ζώνη" msgid "Frequency" msgstr "Συχνότητα" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1276,22 +1379,21 @@ msgstr "Συχνότητα" msgid "Operator" msgstr "Χειριστής" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1313,7 +1415,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1321,28 +1423,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1351,7 +1480,7 @@ 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 @@ -1363,16 +1492,16 @@ msgstr "" 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 "Επεξεργασία Σημείωσης" @@ -1494,7 +1623,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "" @@ -1502,8 +1631,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1515,8 +1682,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1534,15 +1701,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1560,10 +1791,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 "" @@ -1575,9 +1803,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1610,15 +1839,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1626,22 +1863,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1692,8 +1920,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1705,7 +1933,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1728,20 +1956,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 "" @@ -1750,52 +1975,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1803,27 +2021,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1849,7 +2046,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "" @@ -1909,96 +2106,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2032,7 +2253,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2044,6 +2265,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 "" @@ -2080,31 +2379,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2133,7 +2432,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2146,7 +2445,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Μήνας" @@ -2166,25 +2465,25 @@ msgstr "" #: 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/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 @@ -2205,26 +2504,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2239,7 +2541,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2278,17 +2580,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2311,7 +2613,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2322,7 +2626,7 @@ msgstr "Δορυφόρος" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2337,22 +2641,23 @@ 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/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 "" @@ -2381,44 +2686,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2428,12 +2733,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2448,19 +2753,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2470,7 +2775,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2513,8 +2818,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2527,7 +2832,7 @@ 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 @@ -2555,8 +2860,8 @@ msgstr "Ημερομηνία" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2582,7 +2887,7 @@ msgstr "Ωρα" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2616,9 +2921,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2633,13 +2938,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2708,6 +3012,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2716,8 +3022,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2879,7 +3186,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2887,15 +3195,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2919,7 +3225,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 "Αντιγραφή στο πρόχειρο" @@ -2930,7 +3236,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2951,7 +3257,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 "" @@ -2964,8 +3270,8 @@ 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 @@ -2976,7 +3282,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3022,8 +3328,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 @@ -3032,12 +3338,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 @@ -3050,10 +3356,10 @@ 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/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" @@ -3091,17 +3397,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3117,212 +3423,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3370,23 +3683,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3563,11 +3876,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 " @@ -3575,28 +3897,28 @@ 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 "" @@ -3653,7 +3975,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3676,7 +3998,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3684,30 +4017,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:101 -#: 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 "" @@ -3744,7 +4067,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3755,7 +4078,7 @@ msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3788,14 +4111,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3845,7 +4177,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3941,17 +4273,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3959,20 +4300,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3980,7 +4330,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 " @@ -3989,13 +4339,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 "" @@ -4019,8 +4369,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4075,12 +4425,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4212,9 +4556,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4380,7 +4722,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4416,8 +4758,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4445,10 +4787,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4482,7 +4825,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4537,8 +4880,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4682,14 +5025,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4739,6 +5082,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4752,79 +5096,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4848,7 +5192,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4856,7 +5200,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4864,7 +5208,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4872,7 +5216,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4880,7 +5224,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4888,7 +5232,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4896,7 +5240,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4904,7 +5248,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4912,7 +5256,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4920,7 +5264,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4928,7 +5272,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4936,7 +5280,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4944,7 +5288,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4952,7 +5296,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4960,7 +5304,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4968,7 +5312,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4976,7 +5320,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4984,7 +5328,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5006,69 +5350,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 msgid "Attention: you need to set an active station location." msgstr "Προσοχή: πρέπει να ορίσετε μια ενεργή θέση σταθμού." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "Τουλάχιστον ένα από τα πιστοποιητικά LoTW σας έχει λήξει!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSOs Αναλυτικά" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Χώρες Αναλυτικά" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5098,10 +5442,10 @@ msgstr "Απαιτείται" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5128,15 +5472,15 @@ msgstr "Απεσταλμένα" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5158,12 +5502,12 @@ msgstr "Ελήφθη" msgid "Requested" msgstr "Έχει ζητηθεί" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5257,242 +5601,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5500,98 +5849,117 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5602,7 +5970,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 @@ -5810,6 +6179,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5817,8 +6190,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5931,66 +6304,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6107,19 +6609,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6127,79 +6637,79 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6470,8 +6980,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6492,44 +7002,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6538,18 +7079,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6559,15 +7100,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6576,18 +7117,18 @@ msgstr "Ναι" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6598,10 +7139,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6616,14 +7157,14 @@ msgstr "Οχι" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6650,23 +7191,23 @@ msgstr "Σε ουρά" msgid "Invalid (Ignore)" msgstr "Μη έγκυρο (Αγνόησή)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6685,8 +7226,8 @@ msgstr "" msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6703,8 +7244,8 @@ msgstr "" msgid "Direct" msgstr "Απευθείας" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6721,8 +7262,8 @@ msgstr "Απευθείας" msgid "Electronic" msgstr "Ηλεκτρονική" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6732,221 +7273,207 @@ msgstr "Ηλεκτρονική" msgid "Manager" msgstr "Διευθυντής" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6983,32 +7510,6 @@ msgstr "" 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 "" @@ -7113,60 +7614,60 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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 "Χειροκίνητος συγχρονισμός" @@ -7679,7 +8180,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 "" @@ -8002,35 +8503,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 "" @@ -8151,7 +8637,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:690 msgid "Previous Contacts" msgstr "Προηγούμενες Επαφές" @@ -8192,16 +8678,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Παραπομπή IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8267,15 +8753,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Εισήγησης" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Εικόνα προφίλ" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8293,15 +8783,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8387,6 +8881,75 @@ msgstr "" 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 "" @@ -8407,10 +8970,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 @@ -8460,26 +9019,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8701,8 +9248,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 @@ -8722,8 +9269,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8791,122 +9338,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8914,304 +9460,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9259,6 +9751,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 "" @@ -9283,12 +9780,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 "" @@ -9505,9 +10042,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 @@ -9587,7 +10125,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9613,6 +10151,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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 "" @@ -9642,13 +10187,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 @@ -9691,10 +10236,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 "" @@ -10028,6 +10569,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 "" @@ -10042,96 +10699,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 "" @@ -10181,10 +10759,6 @@ msgstr "Στοιχεία QSO" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Συνολική Απόσταση" @@ -10256,10 +10830,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Μεταφορτώθηκε η μπροστινή εικόνα της κάρτας QSL" @@ -10288,7 +10858,7 @@ msgstr "Σημείωση QSL ζητήθηκε (Απευθείας)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.mo b/application/locale/es_ES/LC_MESSAGES/messages.mo index 7d6e83c43..67da977c8 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 88fa00af9..f5c59350f 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # CieNTi , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" -"Last-Translator: Anonymous \n" +"POT-Creation-Date: 2024-08-22 13:37+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" @@ -16,7 +17,79 @@ 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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -29,11 +102,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Cuadrículas" @@ -55,12 +129,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 +152,7 @@ msgid "ADIF Export" msgstr "Exportar ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "Importar / Exportar ADIF" @@ -146,7 +221,7 @@ 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 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Válido" @@ -166,12 +241,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "Diplomas - %s" @@ -181,7 +256,7 @@ msgstr "Diplomas - %s" #: 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/logbookadvanced/index.php:618 #: 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 @@ -196,12 +271,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -239,6 +314,10 @@ msgstr "Vista de registro - VUCC" 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 +339,12 @@ msgid " and " msgstr " y " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,7 +355,7 @@ msgstr " y " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +365,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +385,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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,74 +423,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -438,7 +517,7 @@ msgid "Export Cabrillo" msgstr "Exportar Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "Exportar en CFD" @@ -459,17 +538,17 @@ msgstr "Ningún usuario ha configurado Clublog." msgid "Contest Calendar" msgstr "Calendario de Concursos" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Registro de Concurso" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Concursos" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "Actualizar Concurso" @@ -481,20 +560,44 @@ msgid "Continents" msgstr "Continentes" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "Gestión de Cron" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Editar trabajo de Cron" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "Exportar CSV de SOTA" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "Panel de control" @@ -503,42 +606,42 @@ msgstr "Panel de control" msgid "Number of days with QSOs each year" msgstr "Número de días con QSOs cada año" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Depuración" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -559,7 +662,7 @@ msgid "and band" msgstr "y banda" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "Exportar Cuadrícula DX Atlas" @@ -569,7 +672,7 @@ msgid "DX Calendar" msgstr "Calendario DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +690,19 @@ msgstr "Información de importación de eQSL" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "Herramientas de eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Errores: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Descargado satisfactoriamente: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "Descargar Imagen de Tarjeta eQSL" @@ -629,7 +732,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Exportación KML" @@ -794,15 +897,15 @@ msgstr "Libro de Guardia" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -817,18 +920,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -847,17 +950,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: 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,7 +972,7 @@ msgstr "" #: 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" @@ -880,10 +983,10 @@ msgstr "" #: 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/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 @@ -891,36 +994,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -961,12 +1065,12 @@ msgstr "" msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -988,12 +1092,12 @@ msgstr "Modo" msgid "RST (S)" msgstr "RST (Enviada)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1016,7 +1120,7 @@ msgstr "RST (Enviada)" msgid "RST (R)" msgstr "RST (Recibida)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1026,7 +1130,6 @@ msgstr "RST (Recibida)" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1040,13 +1143,13 @@ msgstr "RST (Recibida)" msgid "Country" msgstr "País" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1058,7 +1161,7 @@ msgstr "País" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1067,17 +1170,17 @@ msgstr "País" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1095,7 +1198,7 @@ msgstr "" msgid "State" msgstr "Estado" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1107,8 +1210,8 @@ msgstr "Estado" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1119,11 +1222,11 @@ msgstr "Estado" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1135,14 +1238,14 @@ msgstr "Estado" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1158,26 +1261,26 @@ msgstr "" msgid "Distance" msgstr "Distancia" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1186,13 +1289,13 @@ msgstr "Distancia" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1234,8 +1337,8 @@ msgstr "Distancia" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1254,11 +1357,11 @@ msgstr "Banda" msgid "Frequency" msgstr "Frecuencia" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1276,22 +1379,21 @@ msgstr "Frecuencia" msgid "Operator" msgstr "Operador" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1313,7 +1415,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1321,28 +1423,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modos" @@ -1351,7 +1480,7 @@ 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 @@ -1363,16 +1492,16 @@ msgstr "" 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" @@ -1496,7 +1625,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "" @@ -1504,8 +1633,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1517,8 +1684,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1536,15 +1703,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Opciones" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Eliminar" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1562,10 +1793,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 "" @@ -1577,9 +1805,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1612,15 +1841,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1628,22 +1865,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1694,8 +1922,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1707,7 +1935,7 @@ msgid "Set as Active Logbook" msgstr "Establecer como Libro de Guardia Activo" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1733,20 +1961,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" @@ -1755,53 +1980,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1809,27 +2027,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Eliminar" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1855,7 +2052,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Temas" @@ -1915,96 +2112,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2038,7 +2259,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2050,6 +2271,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 "" @@ -2086,31 +2385,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "QSOs que no concuerdan" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 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:4154 msgid "confirmed by award manager" msgstr "confirmados por el administrador del premio" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 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:4160 msgid "confirmation pending" msgstr "pendiente de confirmación" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "sin confirmar" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "desconocido" @@ -2139,7 +2438,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2152,7 +2451,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mes" @@ -2172,25 +2471,25 @@ msgstr "" #: 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/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 @@ -2211,26 +2510,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2245,7 +2547,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2284,17 +2586,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2317,7 +2619,9 @@ msgstr "Mostrar" #: 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/index.php:197 +#: 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" @@ -2328,7 +2632,7 @@ msgstr "Satélite" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2343,22 +2647,23 @@ 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/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 "Dibujar" @@ -2387,44 +2692,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2434,12 +2739,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2454,19 +2759,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2476,7 +2781,7 @@ msgstr "Conteo" 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" @@ -2519,8 +2824,8 @@ msgstr "Hay datos diferentes para DOKs en su libro comparados con DCL" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2533,7 +2838,7 @@ 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 @@ -2561,8 +2866,8 @@ msgstr "Fecha" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2588,7 +2893,7 @@ msgstr "Tiempo Test" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2622,9 +2927,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2639,13 +2944,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2721,6 +3025,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "PELIGRO" @@ -2729,12 +3035,11 @@ msgid "Ignore Stationcallsign on import" msgstr "Ignorar el indicativo de la Estación al importar" #: application/views/adif/import.php:154 +#, 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/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -2903,7 +3208,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2911,15 +3217,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2943,7 +3247,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" @@ -2954,7 +3258,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2975,7 +3279,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 "" @@ -2988,8 +3292,8 @@ 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 @@ -3000,7 +3304,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Actiones" @@ -3046,8 +3350,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 @@ -3056,12 +3360,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 @@ -3074,10 +3378,10 @@ 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/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" @@ -3115,17 +3419,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3141,212 +3445,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3394,23 +3705,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3587,11 +3898,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 " @@ -3599,28 +3919,28 @@ 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 "" @@ -3677,7 +3997,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3700,7 +4020,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3708,30 +4039,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:101 -#: 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 "" @@ -3768,7 +4089,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3779,7 +4100,7 @@ msgid "City" msgstr "Ciudad" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3812,14 +4133,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3869,7 +4199,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3965,17 +4295,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3983,20 +4322,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -4004,7 +4352,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 " @@ -4013,13 +4361,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 "" @@ -4043,8 +4391,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4099,12 +4447,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4240,9 +4582,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4409,7 +4749,7 @@ msgstr "No hay activaciones próximas. Por favor vuelve a revisar más tarde." #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4445,8 +4785,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4474,10 +4814,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Hoy" @@ -4515,7 +4856,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4570,8 +4911,8 @@ 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:285 -#: 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" @@ -4715,14 +5056,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4772,6 +5113,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" @@ -4785,79 +5127,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4881,7 +5223,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4889,7 +5231,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4897,7 +5239,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4905,7 +5247,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4913,7 +5255,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4921,7 +5263,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4929,7 +5271,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4937,7 +5279,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4945,7 +5287,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4953,7 +5295,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4961,7 +5303,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4969,7 +5311,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4977,7 +5319,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4985,7 +5327,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4993,7 +5335,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -5001,7 +5343,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -5009,7 +5351,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -5017,7 +5359,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5041,69 +5383,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 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:115 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:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Desglose de QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: 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:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5133,10 +5475,10 @@ msgstr "Solicitadas" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5163,15 +5505,15 @@ msgstr "Enviado" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5193,12 +5535,12 @@ msgstr "Recibido" msgid "Requested" msgstr "Solicitadas" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5266,11 +5608,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" @@ -5292,242 +5634,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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 "" +msgstr "Éxito" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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 "" +msgstr "Instalado" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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 "Actualizar" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5535,100 +5882,119 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "Indicativo de la Estación" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" -msgstr "" +msgid "Albanian" +msgstr "Albanés" #: application/views/debug/index.php:630 -msgid "Czech" -msgstr "" +msgid "Bosnian" +msgstr "Bosnio" #: application/views/debug/index.php:631 -msgid "Dutch" -msgstr "" +msgid "Bulgarian" +msgstr "Búlgaro" #: application/views/debug/index.php:632 -msgid "English" -msgstr "" +msgid "Chinese (Simplified)" +msgstr "Chino (Simplificado)" #: application/views/debug/index.php:633 -msgid "Finnish" -msgstr "" +msgid "Croatian" +msgstr "Croata" #: application/views/debug/index.php:634 -msgid "French" -msgstr "" +msgid "Czech" +msgstr "Checo" #: application/views/debug/index.php:635 -msgid "German" -msgstr "" +msgid "Dutch" +msgstr "Holandés" #: application/views/debug/index.php:636 -msgid "Greek" -msgstr "" +msgid "English" +msgstr "Inglés" #: application/views/debug/index.php:637 -msgid "Italian" -msgstr "" +msgid "Finnish" +msgstr "Finlandés" #: application/views/debug/index.php:638 -msgid "Polish" -msgstr "" +msgid "French" +msgstr "Francés" #: application/views/debug/index.php:639 -msgid "Portuguese" -msgstr "" +msgid "German" +msgstr "Alemán" #: application/views/debug/index.php:640 -msgid "Russian" -msgstr "" +msgid "Greek" +msgstr "Griego" #: application/views/debug/index.php:641 -msgid "Spanish" -msgstr "" +msgid "Italian" +msgstr "Italiano" #: application/views/debug/index.php:642 -msgid "Swedish" -msgstr "" +msgid "Montenegrin" +msgstr "Montenegrino" #: application/views/debug/index.php:643 +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 "" +msgstr "Turco" #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 @@ -5637,8 +6003,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" @@ -5847,6 +6214,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5854,8 +6225,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "Propagación" @@ -5968,69 +6339,198 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Información de Versión" -#: application/views/interface_assets/footer.php:672 +#: 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 "" -"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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Cuenta total" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "Tarjeta eQSL" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Modo Desarrollador" @@ -6147,19 +6647,27 @@ msgstr "mapa de Bandas" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Administrador" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "Opciones Globales" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6167,79 +6675,79 @@ msgstr "Opciones Globales" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "Actualizar Archivos de Países" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "Información de Depuración" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "Guardar Indicativo" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "Información de la Cuenta" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "Exportación Cabrillo" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6511,8 +7019,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6533,44 +7041,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "Desde" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "a" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6579,18 +7118,18 @@ msgstr "QSL enviadas" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6598,17 +7137,17 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6617,18 +7156,18 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6637,12 +7176,12 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6657,14 +7196,14 @@ msgstr "" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6691,23 +7230,23 @@ msgstr "En Cola" msgid "Invalid (Ignore)" msgstr "Inválidas (ignorar)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "Verificado" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 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:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6726,8 +7265,8 @@ msgstr "Método de Envío de QSL" msgid "Bureau" msgstr "Buró" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6744,8 +7283,8 @@ msgstr "Buró" msgid "Direct" msgstr "Directo" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6762,8 +7301,8 @@ msgstr "Directo" msgid "Electronic" msgstr "Electrónico" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6773,221 +7312,207 @@ msgstr "Electrónico" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "Método de Recepción de QSL" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "Enviado por LoTW" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "Recibido por LoTW" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "Enviado por eQSL" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "Recibido por eQSL" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "Imágenes QSL" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "Con los seleccionados: " -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "Actualizar de Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "En Cola por Buró" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "En Cola por Directa" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "En Cola por Electrónico" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "Enviado (Buró)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "Enviado (Directa)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "Enviado (Electrónico)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "No Enviado" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "QSL no Requerida" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "Recibido (Buró)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "Recibido (Directa)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "Recibido (Electrónico)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "Crear ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "Imprimir Etiqueta" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "Presentación QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "Búsqueda rápida con seleccionados: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "Buscar DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "Buscar Estado" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "Buscar Gridsquare" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "Buscar Zona CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "Buscar Modo" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "Buscar Banda" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "Buscar IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "Buscar SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "Buscar POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "Buscar WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "Buscar Operador" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "Filtros rápidos" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "Filtros QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtros" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "No. Resultados" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "Duplicados" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "Opciones" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "Mensaje QSL" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Mis Refs" @@ -7024,32 +7549,6 @@ msgstr "" 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 "" @@ -7153,59 +7652,59 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7754,7 +8253,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" @@ -8083,35 +8582,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 "" @@ -8231,7 +8715,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:690 msgid "Previous Contacts" msgstr "Contactos previos" @@ -8272,16 +8756,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Referencia IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8347,15 +8831,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Sugerencias" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Imagen de Perfil" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "Se muestra máx. de 5 contactos previos" @@ -8373,15 +8861,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "Por favor espera..." + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8467,6 +8959,75 @@ msgstr "" 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 "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 "" @@ -8487,10 +9048,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 @@ -8540,26 +9097,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8795,8 +9340,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 @@ -8816,10 +9361,9 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, 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 msgid "Reload QSO List" @@ -8905,124 +9449,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -9030,8 +9573,8 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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." @@ -9039,95 +9582,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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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." @@ -9135,217 +9678,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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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" @@ -9393,6 +9872,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" @@ -9422,12 +9906,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 "" @@ -9647,9 +10181,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 @@ -9729,7 +10264,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9755,6 +10290,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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" @@ -9784,13 +10326,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 @@ -9835,10 +10377,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" @@ -10188,6 +10726,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 "" @@ -10202,100 +10860,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 "" @@ -10345,10 +10920,6 @@ msgstr "Detalles de QSO" msgid "QSL Management" msgstr "Gestión de QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "Tarjeta eQSL" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distancia total" @@ -10420,10 +10991,6 @@ msgstr "Más QSOs" msgid "Details" msgstr "Detalles" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Imagen delantera de la QSL subida" @@ -10452,7 +11019,7 @@ msgstr "Marcar QSL como Solicitada (Directa)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" @@ -10553,6 +11120,24 @@ msgstr "" msgid "Submit Request" 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 "" +#~ "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 336c390a3..3b8e1d621 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-17 10:47+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -15,7 +15,79 @@ 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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -28,11 +100,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" @@ -54,12 +127,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 +150,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "ADIF Tuonti / Vienti" @@ -145,7 +219,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Voimassa" @@ -165,12 +239,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "" @@ -180,7 +254,7 @@ msgstr "" #: 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/logbookadvanced/index.php:618 #: 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 @@ -195,12 +269,12 @@ msgstr "" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -238,6 +312,10 @@ msgstr "" msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -259,12 +337,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -275,7 +353,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +363,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +383,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -343,74 +421,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -437,7 +515,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "" @@ -458,17 +536,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Kilpailuloki" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Kontestit" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "" @@ -480,20 +558,44 @@ msgid "Continents" msgstr "Mantereet" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -502,42 +604,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -558,7 +660,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Gridsquare Vienti" @@ -568,7 +670,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -586,19 +688,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -628,7 +730,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -791,15 +893,15 @@ msgstr "Lokikirja" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -814,18 +916,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -844,17 +946,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: 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,7 +968,7 @@ msgstr "" #: 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" @@ -877,10 +979,10 @@ msgstr "" #: 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/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 @@ -888,36 +990,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -958,12 +1061,12 @@ msgstr "" msgid "Mode" msgstr "Lähetelaji" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -985,12 +1088,12 @@ msgstr "Lähetelaji" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1013,7 +1116,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1023,7 +1126,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1037,13 +1139,13 @@ msgstr "" msgid "Country" msgstr "Maa" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1055,7 +1157,7 @@ msgstr "Maa" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1064,17 +1166,17 @@ msgstr "Maa" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1092,7 +1194,7 @@ msgstr "" msgid "State" msgstr "osavaltio" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1104,8 +1206,8 @@ msgstr "osavaltio" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1116,11 +1218,11 @@ msgstr "osavaltio" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1132,14 +1234,14 @@ msgstr "osavaltio" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1155,26 +1257,26 @@ msgstr "" msgid "Distance" msgstr "Etäisyys" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1183,13 +1285,13 @@ msgstr "Etäisyys" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1231,8 +1333,8 @@ msgstr "Etäisyys" msgid "Band" msgstr "Bandi" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1251,11 +1353,11 @@ msgstr "Bandi" msgid "Frequency" msgstr "Taajuus" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1273,22 +1375,21 @@ msgstr "Taajuus" msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1310,7 +1411,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1318,28 +1419,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modet" @@ -1348,7 +1476,7 @@ 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 @@ -1360,16 +1488,16 @@ msgstr "" 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" @@ -1491,7 +1619,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "OQRS Pyynnöt" @@ -1499,8 +1627,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "QRZ Logi" @@ -1512,8 +1678,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1531,15 +1697,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "Tulosta pyydetyt QSL:t" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Valinnat" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Poista" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1557,10 +1787,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 "" @@ -1572,9 +1799,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1607,15 +1835,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1623,22 +1859,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1689,8 +1916,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1702,7 +1929,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1725,20 +1952,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 "" @@ -1747,52 +1971,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1800,27 +2017,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Poista" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1846,7 +2042,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Teemat" @@ -1906,96 +2102,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2029,7 +2249,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Lähetys" @@ -2041,6 +2261,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 "" @@ -2077,31 +2375,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2130,7 +2428,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2143,7 +2441,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Kuukausi" @@ -2163,25 +2461,25 @@ msgstr "" #: 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/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 @@ -2202,26 +2500,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2236,7 +2537,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2275,17 +2576,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2308,7 +2609,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2319,7 +2622,7 @@ msgstr "Satelliitti" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2334,22 +2637,23 @@ 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/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 "Merkitse" @@ -2378,44 +2682,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2425,12 +2729,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2445,19 +2749,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2467,7 +2771,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2510,8 +2814,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2524,7 +2828,7 @@ 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 @@ -2552,8 +2856,8 @@ msgstr "Päivä" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2579,7 +2883,7 @@ msgstr "Aika" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2613,9 +2917,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2630,13 +2934,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2705,6 +3008,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2713,8 +3018,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2876,7 +3182,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2884,15 +3191,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2916,7 +3221,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" @@ -2927,7 +3232,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2948,7 +3253,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 "" @@ -2961,8 +3266,8 @@ 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 @@ -2973,7 +3278,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3019,8 +3324,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 @@ -3029,12 +3334,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 @@ -3047,10 +3352,10 @@ 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/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" @@ -3088,17 +3393,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3114,212 +3419,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3367,23 +3679,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3560,11 +3872,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 " @@ -3572,28 +3893,28 @@ 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 "" @@ -3650,7 +3971,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3673,7 +3994,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3681,30 +4013,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:101 -#: 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 "" @@ -3741,7 +4063,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3752,7 +4074,7 @@ msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3785,14 +4107,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3842,7 +4173,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3938,17 +4269,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3956,20 +4296,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3977,7 +4326,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 " @@ -3986,13 +4335,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 "" @@ -4016,8 +4365,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4072,12 +4421,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4209,9 +4552,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4377,7 +4718,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4413,8 +4754,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4442,10 +4783,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4479,7 +4821,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4534,8 +4876,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4679,14 +5021,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4736,6 +5078,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4749,79 +5092,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4845,7 +5188,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4853,7 +5196,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4861,7 +5204,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4869,7 +5212,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4877,7 +5220,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4885,7 +5228,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4893,7 +5236,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4901,7 +5244,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4909,7 +5252,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4917,7 +5260,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4925,7 +5268,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4933,7 +5276,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4941,7 +5284,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4949,7 +5292,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4957,7 +5300,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4965,7 +5308,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4973,7 +5316,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4981,7 +5324,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5003,69 +5346,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 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:115 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:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Yhteystilasto" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Maatilasto" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5095,10 +5438,10 @@ msgstr "Tarvittu" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5125,15 +5468,15 @@ msgstr "Lähetetyt" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5155,12 +5498,12 @@ msgstr "Vastaanotetut" msgid "Requested" msgstr "Pyydetyt" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5254,242 +5597,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5497,98 +5845,117 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5599,7 +5966,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 @@ -5807,6 +6175,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5814,8 +6186,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5928,66 +6300,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Kehittäjätila" @@ -6104,19 +6605,27 @@ msgstr "Bandikartta" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "Yleiset asetukset" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6124,79 +6633,79 @@ msgstr "Yleiset asetukset" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "Päivitä Country Files" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "Tarrat" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "eQSL Tuonti / Vienti" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "HRDLog Logi" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "Foorumi" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "Kirjaudu ulos" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6467,8 +6976,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6489,44 +6998,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6535,18 +7075,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6556,15 +7096,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6573,18 +7113,18 @@ msgstr "Kyllä" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6595,10 +7135,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6613,14 +7153,14 @@ msgstr "Ei" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6647,23 +7187,23 @@ msgstr "" msgid "Invalid (Ignore)" msgstr "Virheellinen (Ohita)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6682,8 +7222,8 @@ msgstr "" msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6700,8 +7240,8 @@ msgstr "" msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6718,8 +7258,8 @@ msgstr "" msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6729,221 +7269,207 @@ msgstr "" msgid "Manager" msgstr "Manageri" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "Valinnat" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6980,32 +7506,6 @@ msgstr "" 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 "" @@ -7109,60 +7609,60 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7677,7 +8177,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 "" @@ -8000,35 +8500,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 "" @@ -8148,7 +8633,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:690 msgid "Previous Contacts" msgstr "Edelliset yhteydet" @@ -8189,16 +8674,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 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:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8264,15 +8749,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Kutsumerkkiehdotukset" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Profiilikuva" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8290,15 +8779,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8384,6 +8877,75 @@ msgstr "" 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 "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 "" @@ -8404,10 +8966,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 @@ -8457,26 +9015,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8698,8 +9244,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 @@ -8719,8 +9265,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8788,122 +9334,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8911,304 +9456,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9256,6 +9747,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 "" @@ -9280,12 +9776,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 "" @@ -9502,9 +10038,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 @@ -9584,7 +10121,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9610,6 +10147,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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" @@ -9639,13 +10183,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 @@ -9688,10 +10232,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" @@ -10028,6 +10568,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 "" @@ -10042,101 +10703,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 "" @@ -10186,10 +10763,6 @@ msgstr "QSO:n tiedot" msgid "QSL Management" msgstr "QSL-manageri" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Kokonaismatka" @@ -10261,10 +10834,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "QSL-kortin ladattu etukuva" @@ -10293,7 +10862,7 @@ msgstr "Merkitse QSL-kortti pyydetyksi (Direct)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.mo b/application/locale/fr_FR/LC_MESSAGES/messages.mo index f317fa2cb..b3a0fad57 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 238b0299f..0824a11ce 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -9,17 +9,89 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-29 12:05+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-24 20:29+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr_FR\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" +"X-Generator: Weblate 5.7\n" + +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -32,11 +104,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Locator" @@ -58,12 +131,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 +154,7 @@ msgid "ADIF Export" msgstr "Exporter ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "Importer / Exporter ADIF" @@ -149,7 +223,7 @@ 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 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Valide" @@ -169,12 +243,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "Trophées - %s" @@ -184,7 +258,7 @@ msgstr "Trophées - %s" #: 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/logbookadvanced/index.php:618 #: 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 @@ -199,12 +273,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -242,6 +316,10 @@ msgstr "Vue du journal - VUCC" 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 +341,12 @@ msgid " and " msgstr " et " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -279,7 +357,7 @@ msgstr " et " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +367,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +387,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -347,74 +425,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -441,7 +519,7 @@ msgid "Export Cabrillo" msgstr "Exporter Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "Exporter en CFD" @@ -462,17 +540,17 @@ msgstr "Aucun utilisateur n'a configuré Clublog." msgid "Contest Calendar" msgstr "Calendrier des concours" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Concours - enregistrement des QSO" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Concours" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "Mettre à jour" @@ -484,20 +562,49 @@ msgid "Continents" msgstr "Continents" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "Gestion des Cron" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Modifier les traitements Cron" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "SOTA - Export CSV" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "Tableau de bord" @@ -506,35 +613,35 @@ msgstr "Tableau de bord" msgid "Number of days with QSOs each year" msgstr "Nombre de jours par an avec les QSO" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Migrer les données maintenant" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "Migration déjà effectuée. Recommencer ?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Aucune donnée à migrer" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Aucune migration possible" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" -msgstr "" +msgstr "Wavelog a été mis à jour avec succès !" -#: application/controllers/Debug.php:229 +#: 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:273 +#: 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 " @@ -544,7 +651,7 @@ msgstr "" "manuellement. Si tout vous semble correct, vous pouvez supprimer les " "dossiers 'assets/qslcard' et 'images/eqsl_card_images'." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" "La migration des fichiers a échoué. Veuillez vérifier le journal des erreurs." @@ -566,7 +673,7 @@ msgid "and band" msgstr "et bandes" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "Export Locator pour DX Atlas" @@ -576,7 +683,7 @@ msgid "DX Calendar" msgstr "Calendrier des DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -594,19 +701,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:416 msgid "eQSL Tools" msgstr "eQSL : Outils" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Erreurs : " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Téléchargé avec succès : " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "eQSL : Téléchargement des cartes/images" @@ -636,7 +743,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:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML - Export" @@ -807,15 +914,15 @@ msgstr "Journal de trafic" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -830,18 +937,18 @@ msgstr "QSL" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -860,17 +967,17 @@ msgstr "LoTW" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -882,7 +989,7 @@ msgstr "LoTW" #: 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" @@ -893,10 +1000,10 @@ msgstr "eQSL" #: 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/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 @@ -904,36 +1011,37 @@ msgstr "eQSL" msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -974,12 +1082,12 @@ msgstr "Clublog" msgid "Mode" msgstr "Mode" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1001,12 +1109,12 @@ msgstr "Mode" msgid "RST (S)" msgstr "RST (E)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1029,7 +1137,7 @@ msgstr "RST (E)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1039,7 +1147,6 @@ msgstr "RST (R)" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1053,13 +1160,13 @@ msgstr "RST (R)" msgid "Country" msgstr "Pays" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1071,7 +1178,7 @@ msgstr "Pays" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1080,17 +1187,17 @@ msgstr "Pays" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1108,7 +1215,7 @@ msgstr "IOTA" msgid "State" msgstr "Etat" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1120,8 +1227,8 @@ msgstr "Etat" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1132,11 +1239,11 @@ msgstr "Etat" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1148,14 +1255,14 @@ msgstr "Etat" msgid "Gridsquare" msgstr "Locator" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1171,26 +1278,26 @@ msgstr "Locator" msgid "Distance" msgstr "Distance" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1199,13 +1306,13 @@ msgstr "Distance" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1247,8 +1354,8 @@ msgstr "Distance" msgid "Band" msgstr "Bande" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1267,11 +1374,11 @@ msgstr "Bande" msgid "Frequency" msgstr "Frequence" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1289,22 +1396,21 @@ msgstr "Frequence" msgid "Operator" msgstr "Opérateur" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1326,7 +1432,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1334,28 +1440,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modes" @@ -1364,7 +1500,7 @@ 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 @@ -1376,16 +1512,16 @@ msgstr "Modifier le mode" 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" @@ -1428,11 +1564,11 @@ msgstr "de continent a changé en " #: application/controllers/Options.php:170 msgid "Maximum age of spots changed to " -msgstr "" +msgstr "L'âge maximum des spots changé à " #: application/controllers/Options.php:175 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 @@ -1441,7 +1577,7 @@ msgstr "Paramètres radio" #: application/controllers/Options.php:217 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 @@ -1509,7 +1645,7 @@ msgid "Log Search & OQRS" msgstr "Recherche de journaux et OQRS" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "OQRS Demandes" @@ -1517,8 +1653,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "Journal QRZ" @@ -1530,8 +1706,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1549,15 +1725,79 @@ msgstr "Gestion des cartes QSL" msgid "Print Requested QSLs" msgstr "Imprimer les QSL demandées" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "Ajouter QSO" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/qso/index.php:312 +msgid "Radio" +msgstr "Radio" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Options" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:96 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "dernière mise à jour" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "Définir comme radio par défaut" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Supprimer" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "Aucune radio avec interface CAT trouvée." + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "Créer un satellite" @@ -1569,16 +1809,13 @@ 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" @@ -1586,13 +1823,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:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1613,7 +1851,7 @@ 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" @@ -1627,15 +1865,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1643,22 +1889,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "Configuration de la station" @@ -1709,8 +1946,8 @@ msgstr "Erreur. Le lien est déjà utilisé !" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1722,7 +1959,7 @@ msgid "Set as Active Logbook" msgstr "Activer ce journal" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1734,31 +1971,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" @@ -1767,52 +2003,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1822,27 +2051,6 @@ msgstr "" "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprimera " "tous les QSO de cette station." -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Supprimer" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1865,10 +2073,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:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Thèmes" @@ -1898,15 +2106,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" @@ -1914,72 +2122,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:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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. " @@ -1990,38 +2196,71 @@ 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 @@ -2042,7 +2281,7 @@ msgstr "Carnet vide" #: application/controllers/Visitor.php:205 msgid "Satellite Gridsquare Map" -msgstr "" +msgstr "Carte des carrés de grille satellite" #: application/controllers/Visitor.php:411 #: application/views/stationsetup/stationsetup.php:35 @@ -2055,17 +2294,96 @@ msgstr "Exporter la carte" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 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." @@ -2100,69 +2418,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:4143 msgid "QSO could not be matched" msgstr "pas de correspondance pour le QSO" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 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:4154 msgid "confirmed by award manager" msgstr "confirmé par le manager de l'Award" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 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:4160 msgid "confirmation pending" msgstr "confirmation en attente" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "non confirmé" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2172,10 +2493,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:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mois" @@ -2183,11 +2504,11 @@ 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 @@ -2195,25 +2516,25 @@ msgstr "" #: 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/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 @@ -2234,26 +2555,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2268,14 +2592,14 @@ msgstr "" #: 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:170 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 @@ -2295,29 +2619,29 @@ 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 "" +msgstr "Période" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2340,48 +2664,51 @@ msgstr "Afficher" #: 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/index.php:197 +#: 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/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: 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/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 +#: application/views/satellite/flightpath.php:42 msgid "Plot" msgstr "Afficher" @@ -2396,7 +2723,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 @@ -2404,50 +2731,50 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" -msgstr "" +msgstr "Rien trouvé !" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2457,12 +2784,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2477,19 +2804,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2499,7 +2826,7 @@ msgstr "Nombre" 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" @@ -2542,8 +2869,8 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2556,7 +2883,7 @@ 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 @@ -2575,7 +2902,7 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL" #: 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 @@ -2584,8 +2911,8 @@ msgstr "" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2611,7 +2938,7 @@ msgstr "Heure" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2630,28 +2957,28 @@ 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 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: 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" @@ -2662,13 +2989,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2685,12 +3011,12 @@ 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" @@ -2744,20 +3070,23 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" -msgstr "" +msgstr "DANGER" #: application/views/adif/import.php:152 msgid "Ignore Stationcallsign on import" msgstr "Ignorer l'indicatif de la station lors de l'import" #: application/views/adif/import.php:154 +#, 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/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -2837,6 +3166,11 @@ 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 msgid "Only import DOK data from QSOs confirmed on DCL." @@ -2852,7 +3186,7 @@ msgstr "" #: application/views/adif/import.php:258 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 msgid "" @@ -2871,6 +3205,8 @@ 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_success.php:15 msgid "Yay, its imported!" @@ -2882,11 +3218,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" @@ -2917,16 +3253,17 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2934,17 +3271,15 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" -msgstr "" +msgstr "Clés API" #: application/views/api/help.php:17 msgid "" @@ -2952,6 +3287,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 "" @@ -2960,24 +3298,28 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2992,27 +3334,29 @@ 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 @@ -3023,38 +3367,38 @@ 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:497 #: 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 @@ -3065,12 +3409,12 @@ 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 @@ -3079,12 +3423,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 @@ -3097,10 +3441,10 @@ 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/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" @@ -3108,7 +3452,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 @@ -3117,6 +3461,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 "" @@ -3124,31 +3472,37 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3162,214 +3516,227 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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 "" -#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Total 'confirmés'" @@ -3386,6 +3753,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 "" @@ -3394,10 +3767,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 @@ -3406,36 +3783,38 @@ 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/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" @@ -3443,7 +3822,7 @@ msgstr "" #: 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 @@ -3452,15 +3831,19 @@ 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 msgid "ARRL website" -msgstr "" +msgstr "Site web de l'ARRL" #: application/views/awards/dxcc/index.php:16 #, 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 "" @@ -3470,11 +3853,17 @@ 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 @@ -3510,7 +3899,7 @@ msgstr "Asie" #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 #: application/views/view_log/qso.php:256 msgid "Europe" -msgstr "" +msgstr "Europe" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 @@ -3541,11 +3930,11 @@ 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 @@ -3610,11 +3999,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 " @@ -3622,28 +4020,28 @@ 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 "" @@ -3700,7 +4098,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3723,7 +4121,18 @@ msgstr "Nom" 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3731,30 +4140,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:101 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "Zone ITU" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3791,7 +4190,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3802,7 +4201,7 @@ msgid "City" msgstr "Ville" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3835,14 +4234,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" + +#: 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 "" @@ -3892,7 +4300,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3988,17 +4396,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -4006,20 +4423,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -4027,7 +4453,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 " @@ -4036,13 +4462,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 "" @@ -4066,8 +4492,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4122,12 +4548,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4259,9 +4679,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4427,7 +4845,7 @@ msgstr "Aucune activation à venir trouvée. Veuillez revenir plus tard." #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4463,8 +4881,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4492,10 +4910,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Aujourd'hui" @@ -4534,7 +4953,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:460 +#: application/views/interface_assets/header.php:466 #: 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,8 +5011,8 @@ 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:285 -#: 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" @@ -4737,14 +5156,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4794,6 +5213,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" @@ -4807,79 +5227,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4903,7 +5323,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4911,7 +5331,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4919,7 +5339,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4927,7 +5347,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4935,7 +5355,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4943,7 +5363,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4951,7 +5371,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4959,7 +5379,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4967,7 +5387,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4975,7 +5395,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4983,7 +5403,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4991,7 +5411,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4999,7 +5419,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -5007,7 +5427,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -5015,7 +5435,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -5023,7 +5443,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -5031,7 +5451,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -5039,7 +5459,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5063,70 +5483,70 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 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:115 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:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSO Breakdown" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Pays Breakdown" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5156,10 +5576,10 @@ msgstr "Demandés" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5186,15 +5606,15 @@ msgstr "Envoyées" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5216,12 +5636,12 @@ msgstr "Reçues" msgid "Requested" msgstr "Demandées" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5315,242 +5735,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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 "Mettre à jour" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5558,98 +5983,117 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5660,9 +6104,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" @@ -5873,6 +6317,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5880,8 +6328,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5994,66 +6442,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Total" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "Carte eQSL" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6170,19 +6747,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6190,79 +6775,79 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "Recherche l'indicatif" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "Compte" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "Cabrillo - Export" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6535,8 +7120,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6557,44 +7142,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "Date, du" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "au" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6603,18 +7219,18 @@ msgstr "QSL Envoyée" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6624,15 +7240,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6641,18 +7257,18 @@ msgstr "Oui" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6663,10 +7279,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6681,14 +7297,14 @@ msgstr "Non" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6715,23 +7331,23 @@ msgstr "En attente" msgid "Invalid (Ignore)" msgstr "Invalide (Ignoré)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "Vérifiée" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 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:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6750,8 +7366,8 @@ msgstr "QSL Méthode (envoi)" msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6768,8 +7384,8 @@ msgstr "" msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6786,8 +7402,8 @@ msgstr "" msgid "Electronic" msgstr "Numérique" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6797,223 +7413,209 @@ msgstr "Numérique" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "QSL Méthode (reçue)" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "LoTW Envoyé" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "LoTW Reçu" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "eQSL Envoyée" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "eQSL Reçue" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "Action pour lignes sélectionnées : " -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "Mise à jour depuis Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "En attente (Bureau)" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "En attente (Direct)" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "En attente (Electronic)" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "Envoyée (Bureau)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "Envoyée (Direct)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "Envoyée (Electronic)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "Non envoyée" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "QSL Non requis" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "Reçue (Bureau)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "Reçue (Direct)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "Reçue (Numérique)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "Exporter en ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "Imprimer Etiquette" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "Diaporama QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 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:455 msgid "Search DXCC" msgstr "Même DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "Même Etat" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "Même Locator" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "Même Zone CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "Même Mode" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "Même Band" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "Même IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "Même SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "Même POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "Même WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "Filtres rapides" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "Filtres QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtres" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "Nb lignes" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "Doublon(s)" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Ma Refs" @@ -7050,32 +7652,6 @@ msgstr "" 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 "" @@ -7180,58 +7756,58 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7744,7 +8320,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 "" @@ -8067,35 +8643,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 "" @@ -8215,7 +8776,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:690 msgid "Previous Contacts" msgstr "Contacts précédents" @@ -8256,16 +8817,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 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:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8331,15 +8892,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8357,15 +8922,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8451,6 +9020,75 @@ msgstr "" 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 "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 "" @@ -8471,10 +9109,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 @@ -8524,26 +9158,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8765,8 +9387,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 @@ -8786,8 +9408,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8855,122 +9477,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8978,102 +9599,102 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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." @@ -9081,203 +9702,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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9325,6 +9892,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 "" @@ -9354,12 +9926,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 "" @@ -9576,9 +10188,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 @@ -9658,7 +10271,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9684,6 +10297,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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" @@ -9713,13 +10333,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 @@ -9762,10 +10382,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" @@ -10113,6 +10729,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 "" @@ -10127,101 +10864,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 "" @@ -10271,10 +10924,6 @@ msgstr "" msgid "QSL Management" msgstr "Gestionnaire de QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "Carte eQSL" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distance Totale" @@ -10346,10 +10995,6 @@ msgstr "Autres QSO" msgid "Details" msgstr "Détails" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Sélectionner l'image 'recto' de la QSL" @@ -10378,7 +11023,7 @@ msgstr "Marquer Carte QSL comme demandé (Direct)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" @@ -10479,6 +11124,20 @@ msgstr "" msgid "Submit Request" msgstr "" +#~ 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..017d4af29 --- /dev/null +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -0,0 +1,10953 @@ +# 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-22 13:37+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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 +#: application/views/interface_assets/header.php:150 +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:374 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: 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 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:376 +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:384 +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:245 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:252 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:263 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:319 +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/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:91 +msgid "Valid" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:158 +#: 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 +#, 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:170 +#: application/views/interface_assets/header.php:194 +#: application/views/logbookadvanced/index.php:618 +#: 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 +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:164 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:150 +#: application/views/logbookadvanced/index.php:585 +#: 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:210 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:170 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +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 +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:1285 +#: 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:264 +#: 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:83 +#: application/views/qso/edit_ajax.php:336 +#: 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:1286 +#: 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:284 +#: 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/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:1287 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/qso/edit_ajax.php:346 +#: 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:188 +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:230 +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:168 +#: 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/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:280 +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:379 +#: 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:137 +#: application/controllers/Options.php:148 +#: 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:396 +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:247 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:126 +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 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:284 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:111 +#: application/controllers/Visitor.php:132 +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/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:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:390 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:245 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:307 +#: 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:416 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +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:377 +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:388 +#: 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:402 +#: 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/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/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +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:461 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:462 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:463 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:471 +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:391 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:420 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:428 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:450 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:475 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:488 +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:653 +#: application/controllers/Logbook.php:668 +#: 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:573 +#: 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:656 +#: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 +#: 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:384 +#: 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 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:659 +#: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 +#: 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:381 +#: 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:665 +#: 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/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 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1280 +#: 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/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/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/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:175 +#: application/views/logbookadvanced/index.php:549 +#: 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:78 +#: 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/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:104 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1281 +#: 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:552 +#: 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:79 +#: 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/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 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1282 +#: 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:555 +#: 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:80 +#: 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/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/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1283 +#: 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/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:118 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/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: 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/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 +#: 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:82 +#: application/views/qso/edit_ajax.php:318 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:202 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:1288 +#: 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:173 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/edit.php:64 +#: application/views/logbookadvanced/index.php:167 +#: application/views/logbookadvanced/index.php:588 +#: 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:86 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:177 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:1289 +#: 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/dashboard/index.php:13 +#: 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:171 +#: application/views/logbookadvanced/index.php:561 +#: 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:87 +#: 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/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:257 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/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1290 +#: 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/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:88 +#: 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:1291 +#: 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/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/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:186 +#: application/views/logbookadvanced/index.php:558 +#: 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:89 +#: 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/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:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:87 +#: 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/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 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:603 +#: 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/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/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1314 +#: 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:159 +#: 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:134 +#: 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 +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:423 +#: 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:272 +#: 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: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 +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: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 +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 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:175 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:297 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:299 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:373 +#: application/controllers/Options.php:378 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:375 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:413 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:432 +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 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:104 +#: application/views/interface_assets/header.php:413 +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:426 +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:242 +#: application/views/dashboard/index.php:259 +#: 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:432 +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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Satellite.php:37 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:60 +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:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 +#: 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:99 +#: application/views/visitor/layout/header.php:100 +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:18 +#: 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:377 +#: application/views/interface_assets/header.php:488 +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:608 +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/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:486 +#: 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:518 +#: 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:278 +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:17 +#: application/views/interface_assets/header.php:148 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:152 +#: 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:268 +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:356 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:88 +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:79 +#: application/controllers/Visitor.php:142 +#: application/controllers/Visitor.php:169 +#: application/controllers/Visitor.php:199 +#: application/controllers/Visitor.php:478 +#: 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/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:205 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:411 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:444 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:427 +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:4143 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4154 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4157 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4160 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4163 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4166 +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:220 +#: 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:225 +#: 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/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/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/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:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/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/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:170 +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:83 +#: 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/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:53 +#: 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/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/components/hamsat/table.php:29 +#: 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:197 +#: 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/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:206 +#: 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/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/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 +#: 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:150 +#: 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/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: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:507 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: 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 +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:42 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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:140 +#: 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/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:57 +#: 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:47 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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:141 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:256 +#: 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/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:201 +#: 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:61 +#: 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:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 +#: 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:622 +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/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:622 +#: 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/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 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 +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" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:135 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:152 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +#, 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:158 application/views/adif/import.php:273 +#: 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 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:166 +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/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:179 application/views/adif/import.php:225 +#: 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:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:220 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 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:242 +#, 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:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:251 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:258 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:260 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:269 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +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:107 +#: 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:431 +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:477 +#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: 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/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:119 +#: application/views/update/index.php:30 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:497 +#: 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/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/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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 +#: 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/bandmap/list.php:73 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 +#: 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/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/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/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/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/interface_assets/footer.php:2109 +#: application/views/qso/edit_ajax.php:378 +#: 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/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:528 +#: 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:521 +#: 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/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/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/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/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 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#, 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/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:250 +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/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:247 +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/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:253 +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/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:256 +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/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:259 +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/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:265 +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/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:262 +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:117 +#: application/views/timeline/index.php:204 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:236 +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:162 +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:153 +#: application/views/contesting/index.php:171 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:564 +#: 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:203 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 +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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 +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 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:350 +#: 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:482 +#: 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:303 +#: application/views/view_log/qso.php:570 +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:540 +#: 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/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:152 +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:469 +#: 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:296 +#: application/views/view_log/qso.php:563 +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:94 +#: application/views/contesting/index.php:169 +#: 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: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 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 +#: application/views/qso/index.php:433 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:208 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:232 +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/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 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +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 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +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 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +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 +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:158 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:606 +#: 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 +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:21 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:612 +#: 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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: 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:466 +#: 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:24 +#: application/views/qso/edit_ajax.php:548 +#: application/views/view_log/qso.php:275 +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:34 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:539 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 "" + +#: 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 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:168 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:172 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:174 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:175 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:211 +#: 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 +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/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:77 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:100 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:101 +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:102 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:109 +#, 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:401 +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:219 +#: 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:220 +#: 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:221 +#: 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:222 +#: 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:223 +#: 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:224 +#: 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:225 +#: 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:226 +#: 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:227 +#: 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:228 +#: 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:229 +#: 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:230 +#: 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:231 +#: 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:232 +#: 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:233 +#: 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:234 +#: 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:235 +#: 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:236 +#: 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 "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:56 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:63 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:71 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:79 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:88 +#, 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:94 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:101 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:107 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:115 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:121 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:211 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:251 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +#: 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/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: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/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 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 +#: 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/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/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 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/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:496 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: 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 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:286 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:349 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:146 +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:120 +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:649 +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/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:366 +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:243 +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:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:614 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:609 +#: 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 "" + +#: 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:318 +#: application/views/view_log/qso.php:434 +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:601 +#: application/views/visitor/layout/footer.php:245 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:512 +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:434 +#: 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:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +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:160 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:166 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:186 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:192 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:202 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:212 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:218 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:228 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:234 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:251 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:253 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:270 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:276 +#: 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:282 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:333 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:335 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:97 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:371 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:386 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:394 +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" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:435 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:436 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:438 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:446 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:525 +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:410 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:22 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:73 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:87 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:142 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:153 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:218 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 +#: 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:495 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 +#: 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:494 +#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: 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/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 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/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: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/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 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:313 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 +#: 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:408 +#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: 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 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 +#: 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/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 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 +#: 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/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 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 +#: 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/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:206 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:334 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:344 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:355 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:414 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:426 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:429 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +#: application/views/qso/edit_ajax.php:595 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:431 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:432 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:434 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:435 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:437 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:438 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:440 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:441 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:443 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:444 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:450 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:470 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:473 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:476 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:479 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:482 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:485 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:488 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:494 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:496 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:505 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:524 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:627 +#: 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:148 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:149 +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:404 +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: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/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: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 +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:576 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:168 +#: src/QSLManager/QSO.php:300 +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:133 +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/view_log/qso.php:542 +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:177 +msgid "QTH" +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: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 "" + +#: application/views/qso/edit_ajax.php:369 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:403 +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 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:416 +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 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:436 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +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 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:530 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:576 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:581 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:593 +#: 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 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:596 +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:690 +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:439 +#: 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:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:456 +#: 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:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:538 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:645 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:647 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:704 +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/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:323 +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 +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 +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 +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 +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 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:340 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:342 +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:170 +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:148 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:160 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:167 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:168 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:169 +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: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:40 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:42 application/views/update/index.php:62 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:45 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:47 +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 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:60 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:61 +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:128 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:221 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:228 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:404 +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 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:679 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:241 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:75 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:83 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:97 +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 4453f3ef6..b9dd918a1 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 30fef5026..61b83ce0f 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -2,12 +2,14 @@ # Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. # 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-09 13:26+0000\n" -"Last-Translator: Anonymous \n" +"POT-Creation-Date: 2024-08-22 13:37+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" @@ -15,137 +17,211 @@ 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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 msgid "Accumulated Statistics" -msgstr "" +msgstr "Statistiche cumulative" #: application/controllers/Activated_gridmap.php:10 #: application/views/activated_gridmap/index.php:5 msgid "Activated Gridsquare Map" -msgstr "" +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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" -msgstr "" +msgstr "Locatori" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:375 msgid "Gridsquares confirmed" -msgstr "" +msgstr "Locatori confermati" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:376 msgid "Gridsquares not confirmed" -msgstr "" +msgstr "Locatori non confermati" #: application/controllers/Activated_gridmap.php:34 msgid "Total gridsquares activated" -msgstr "" +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 "" +msgstr "Attivatori locatori" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" -msgstr "" +msgstr "Mappa attivatori" #: application/controllers/Adif.php:18 msgid "valid date" -msgstr "" +msgstr "data valida" #: application/controllers/Adif.php:20 msgid "date incorrect" -msgstr "" +msgstr "data incorretta" #: application/controllers/Adif.php:29 application/views/adif/import.php:24 msgid "ADIF Export" -msgstr "" +msgstr "Esportazione ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" -msgstr "" +msgstr "Importa / Esporta ADIF" #: application/controllers/Adif.php:169 application/views/adif/import.php:21 #: application/views/lotw/import.php:3 msgid "ADIF Import" -msgstr "" +msgstr "Importa ADIF" #: application/controllers/Adif.php:209 msgid "Unsupported Filetype" -msgstr "" +msgstr "Tipo di file non supportato" #: application/controllers/Adif.php:245 msgid "Station Profile not valid for User" -msgstr "" +msgstr "Il profilo di stazione non è valido per l'utente" #: application/controllers/Adif.php:252 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" -msgstr "" +msgstr "ADIF importato" #: application/controllers/Adif.php:263 msgid "DCL Import" -msgstr "" +msgstr "Importa DCL" #: application/controllers/Adif.php:319 msgid "DCL Data Imported" -msgstr "" +msgstr "Dati DCL importati" #: application/controllers/Api.php:26 msgid "API" -msgstr "" +msgstr "API" #: application/controllers/Api.php:50 application/views/api/description.php:26 msgid "API Description" -msgstr "" +msgstr "Descrizione API" #: application/controllers/Api.php:51 msgid "API Key is required. Do not change this field" -msgstr "" +msgstr "La chiave API è richiesta. Non modificare questo campo" #: application/controllers/Api.php:57 msgid "Edit API Description" -msgstr "" +msgstr "Modifica descrizione API" #: application/controllers/Api.php:69 #, php-format msgid "API Key %s description has been updated." -msgstr "" +msgstr "La descrizione per la chiave %s è stata aggiornata." #: application/controllers/Api.php:109 #, php-format msgid "API Key %s has been deleted" -msgstr "" +msgstr "La chiave %s è stata cancellata" #: application/controllers/Api.php:118 msgid "Key Disabled" -msgstr "" +msgstr "Chiave disattivata" #: application/controllers/Api.php:118 msgid "No Key Found" -msgstr "" +msgstr "Nessuna chiave trovata" #: application/controllers/Api.php:120 msgid "Key Invalid - either not found or disabled" -msgstr "" +msgstr "Chiave invalida - disattivata o inesistente" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Valido" @@ -153,7 +229,7 @@ msgstr "Valido" #: application/views/interface_assets/header.php:158 #: application/views/qso/edit_ajax.php:35 msgid "Awards" -msgstr "" +msgstr "Premi" #: application/controllers/Awards.php:92 application/controllers/Awards.php:172 #: application/controllers/Awards.php:327 @@ -165,28 +241,28 @@ 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 #, php-format msgid "Awards - %s" -msgstr "" +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/logbookadvanced/index.php:618 #: 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 msgid "DOK" -msgstr "" +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 @@ -195,12 +271,12 @@ msgstr "" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -208,25 +284,25 @@ 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 "Premi - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 #: application/views/interface_assets/header.php:210 msgid "JCC" -msgstr "" +msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 #: application/views/interface_assets/header.php:170 msgid "VUCC" -msgstr "" +msgstr "VUCC" #: application/controllers/Awards.php:405 msgid "Log View - VUCC" -msgstr "" +msgstr "Visualizza log - VUCC" #: application/controllers/Awards.php:453 #: application/controllers/Timeline.php:92 @@ -236,35 +312,39 @@ msgstr "" #: application/controllers/Timeline.php:104 #: application/controllers/Timeline.php:107 msgid "Log View" +msgstr "Visualizza Log" + +#: application/controllers/Awards.php:454 +msgid " and band " msgstr "" #: application/controllers/Awards.php:457 msgid " and sat " -msgstr "" +msgstr " e satellite " #: application/controllers/Awards.php:460 msgid " and orbit type " -msgstr "" +msgstr " e tipo orbita " #: application/controllers/Awards.php:464 msgid " and propagation " -msgstr "" +msgstr " e propagazione " #: application/controllers/Awards.php:467 msgid " and mode " -msgstr "" +msgstr " e modo " #: application/controllers/Awards.php:470 msgid " and " -msgstr "" +msgstr " e " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -275,154 +355,154 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 #: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" -msgstr "" +msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 #: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" -msgstr "" +msgstr "POTA" #: application/controllers/Awards.php:591 msgid "CQ Magazine WAZ" -msgstr "" +msgstr "CQ Magazine WAZ" #: application/controllers/Awards.php:652 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" -msgstr "" +msgstr "Collegati tutti gli stati (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:188 msgid "RAC" -msgstr "" +msgstr "RAC" #: application/controllers/Awards.php:776 application/views/bands/index.php:49 msgid "H26" -msgstr "" +msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" -msgstr "" +msgstr "IOTA (Isole in aria)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 msgid "US Counties" -msgstr "" +msgstr "Contee USA" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" -msgstr "" +msgstr "Visualizza log - Contee" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " -msgstr "" +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 "" +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 "" +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 "" +msgstr "Locatori confermati via QSL cartacea" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" -msgstr "" +msgstr "Memoriale Fred Fish (FFMA)" -#: application/controllers/Awards.php:1125 +#: application/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" -msgstr "" +msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " -msgstr "" +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 "" +msgstr "Zone ITU" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 msgid "Backup" -msgstr "" +msgstr "Backup" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" -msgstr "" +msgstr "ADIF - Backup" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" -msgstr "" +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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" -msgstr "" +msgstr "Bande" #: application/controllers/Band.php:40 application/controllers/Mode.php:41 msgid "Create Mode" -msgstr "" +msgstr "Crea modo" #: application/controllers/Band.php:59 application/views/bands/index.php:150 msgid "Edit Band" -msgstr "" +msgstr "Modifica banda" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 @@ -430,70 +510,94 @@ msgstr "" #: application/controllers/Options.php:148 #: application/views/options/sidebar.php:10 msgid "DXCluster" -msgstr "" +msgstr "DXCluster" #: application/controllers/Cabrillo.php:20 msgid "Export Cabrillo" -msgstr "" +msgstr "Esporta cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" -msgstr "" +msgstr "Esporta 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 "" +msgstr "Manutenzione in corso. Riprova più tardi." #: application/controllers/Clublog.php:44 #: application/controllers/Clublog.php:66 msgid "No user has configured Clublog." -msgstr "" +msgstr "Nessun utente ha configurato Clublog." #: application/controllers/Contestcalendar.php:19 #: application/views/interface_assets/header.php:247 msgid "Contest Calendar" -msgstr "" +msgstr "Calendario contest" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Log per Contest" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" -msgstr "" +msgstr "Contest" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" -msgstr "" +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 msgid "Continents" -msgstr "" +msgstr "Continenti" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -502,42 +606,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -558,7 +662,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "" @@ -568,7 +672,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -586,19 +690,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -628,7 +732,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -793,15 +897,15 @@ msgstr "" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -816,18 +920,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: 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,17 +950,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -868,7 +972,7 @@ msgstr "" #: 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" @@ -879,10 +983,10 @@ msgstr "" #: 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/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 @@ -890,36 +994,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -960,12 +1065,12 @@ msgstr "" msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -987,12 +1092,12 @@ msgstr "Modo" msgid "RST (S)" msgstr "RST (I)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1015,7 +1120,7 @@ msgstr "RST (I)" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1025,7 +1130,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1039,13 +1143,13 @@ msgstr "" msgid "Country" msgstr "Paese" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1057,7 +1161,7 @@ msgstr "Paese" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1066,17 +1170,17 @@ msgstr "Paese" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1094,7 +1198,7 @@ msgstr "" msgid "State" msgstr "Stato" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1106,8 +1210,8 @@ msgstr "Stato" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1118,11 +1222,11 @@ msgstr "Stato" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1134,14 +1238,14 @@ msgstr "Stato" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1157,26 +1261,26 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1185,13 +1289,13 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1233,8 +1337,8 @@ msgstr "" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1253,11 +1357,11 @@ msgstr "Banda" msgid "Frequency" msgstr "Frequenza" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1275,22 +1379,21 @@ msgstr "Frequenza" msgid "Operator" msgstr "Operatore" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1312,7 +1415,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1320,28 +1423,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1350,7 +1480,7 @@ 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 @@ -1362,16 +1492,16 @@ msgstr "" 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" @@ -1493,7 +1623,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "" @@ -1501,8 +1631,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1514,8 +1682,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1533,15 +1701,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1559,10 +1791,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 "" @@ -1574,9 +1803,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1609,15 +1839,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1625,22 +1863,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1691,8 +1920,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1704,7 +1933,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1727,20 +1956,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 "" @@ -1749,52 +1975,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1802,27 +2021,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1848,7 +2046,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "" @@ -1908,96 +2106,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2031,7 +2253,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2043,6 +2265,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 "" @@ -2079,31 +2379,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2132,7 +2432,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2145,7 +2445,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mese" @@ -2165,25 +2465,25 @@ msgstr "" #: 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/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 @@ -2204,26 +2504,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2238,7 +2541,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2277,17 +2580,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2310,7 +2613,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2321,7 +2626,7 @@ msgstr "" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2336,22 +2641,23 @@ 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/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 "" @@ -2380,44 +2686,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2427,12 +2733,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2447,19 +2753,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2469,7 +2775,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2512,8 +2818,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2526,7 +2832,7 @@ 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 @@ -2554,8 +2860,8 @@ msgstr "Data" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2581,7 +2887,7 @@ msgstr "Orario" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2615,9 +2921,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2632,13 +2938,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2707,6 +3012,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2715,8 +3022,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2878,7 +3186,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2886,15 +3195,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2918,7 +3225,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" @@ -2929,7 +3236,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2950,7 +3257,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 "" @@ -2963,8 +3270,8 @@ 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 @@ -2975,7 +3282,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3021,8 +3328,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 @@ -3031,12 +3338,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 @@ -3049,10 +3356,10 @@ 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/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" @@ -3090,17 +3397,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3116,212 +3423,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3369,23 +3683,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3562,11 +3876,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 " @@ -3574,28 +3897,28 @@ 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 "" @@ -3652,7 +3975,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3675,7 +3998,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3683,30 +4017,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:101 -#: 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 "" @@ -3743,7 +4067,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3754,7 +4078,7 @@ msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3787,14 +4111,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3844,7 +4177,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3940,17 +4273,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3958,20 +4300,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3979,7 +4330,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 " @@ -3988,13 +4339,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 "" @@ -4018,8 +4369,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4074,12 +4425,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4211,13 +4556,11 @@ 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/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: " @@ -4379,7 +4722,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4415,8 +4758,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4444,10 +4787,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4481,7 +4825,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4536,8 +4880,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4681,14 +5025,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4738,6 +5082,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4751,79 +5096,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4847,7 +5192,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4855,7 +5200,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4863,7 +5208,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4871,7 +5216,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4879,7 +5224,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4887,7 +5232,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4895,7 +5240,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4903,7 +5248,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4911,7 +5256,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4919,7 +5264,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4927,7 +5272,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4935,7 +5280,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4943,7 +5288,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4951,7 +5296,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4959,7 +5304,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4967,7 +5312,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4975,7 +5320,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4983,7 +5328,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5005,69 +5350,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Riepilogo QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Riepilogo Paesi" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5097,10 +5442,10 @@ msgstr "Necessario" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5127,15 +5472,15 @@ msgstr "Inviata" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5157,12 +5502,12 @@ msgstr "Ricevuta" msgid "Requested" msgstr "Richiesta" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5230,11 +5575,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" @@ -5256,242 +5601,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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 "" +msgstr "Successo" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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 "" +msgstr "Installato" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5499,100 +5849,119 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" -msgstr "" +msgid "Albanian" +msgstr "Albanese" #: application/views/debug/index.php:630 -msgid "Czech" -msgstr "" +msgid "Bosnian" +msgstr "Bosniaco" #: application/views/debug/index.php:631 -msgid "Dutch" -msgstr "" +msgid "Bulgarian" +msgstr "Bulgaro" #: application/views/debug/index.php:632 -msgid "English" -msgstr "" +msgid "Chinese (Simplified)" +msgstr "Cinese (semplificato)" #: application/views/debug/index.php:633 -msgid "Finnish" -msgstr "" +msgid "Croatian" +msgstr "Croato" #: application/views/debug/index.php:634 -msgid "French" -msgstr "" +msgid "Czech" +msgstr "Ceco" #: application/views/debug/index.php:635 -msgid "German" -msgstr "" +msgid "Dutch" +msgstr "Olandese" #: application/views/debug/index.php:636 -msgid "Greek" -msgstr "" +msgid "English" +msgstr "Inglese" #: application/views/debug/index.php:637 -msgid "Italian" -msgstr "" +msgid "Finnish" +msgstr "Finlandese" #: application/views/debug/index.php:638 -msgid "Polish" -msgstr "" +msgid "French" +msgstr "Francese" #: application/views/debug/index.php:639 -msgid "Portuguese" -msgstr "" +msgid "German" +msgstr "Tedesco" #: application/views/debug/index.php:640 -msgid "Russian" -msgstr "" +msgid "Greek" +msgstr "Greco" #: application/views/debug/index.php:641 -msgid "Spanish" -msgstr "" +msgid "Italian" +msgstr "Italiano" #: application/views/debug/index.php:642 -msgid "Swedish" -msgstr "" +msgid "Montenegrin" +msgstr "Montenegrino" #: application/views/debug/index.php:643 +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 "" +msgstr "Turco" #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 @@ -5601,7 +5970,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 @@ -5809,6 +6179,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5816,8 +6190,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5930,66 +6304,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6106,19 +6609,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6126,79 +6637,79 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6469,8 +6980,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6491,44 +7002,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6537,18 +7079,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6558,15 +7100,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6575,18 +7117,18 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6597,10 +7139,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6615,14 +7157,14 @@ msgstr "" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6649,23 +7191,23 @@ msgstr "In coda" msgid "Invalid (Ignore)" msgstr "Invalido (Ignora)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6684,8 +7226,8 @@ msgstr "" msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6702,8 +7244,8 @@ msgstr "" msgid "Direct" msgstr "Diretta" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6720,8 +7262,8 @@ msgstr "Diretta" msgid "Electronic" msgstr "Elettronica" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6731,221 +7273,207 @@ msgstr "Elettronica" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6982,32 +7510,6 @@ msgstr "" 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 "" @@ -7111,58 +7613,58 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7674,7 +8176,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 "" @@ -7997,35 +8499,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 "" @@ -8145,7 +8632,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:690 msgid "Previous Contacts" msgstr "Contatti Precedenti" @@ -8186,16 +8673,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Referenza IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8261,15 +8748,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Suggerimenti" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Immagine Profilo" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8287,15 +8778,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8381,6 +8876,75 @@ msgstr "" 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 "" @@ -8401,10 +8965,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 @@ -8454,26 +9014,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8695,8 +9243,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 @@ -8716,8 +9264,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8785,122 +9333,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8908,304 +9455,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9253,6 +9746,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 "" @@ -9277,12 +9775,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 "" @@ -9499,9 +10037,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 @@ -9581,7 +10120,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9607,6 +10146,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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 "" @@ -9636,13 +10182,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 @@ -9685,10 +10231,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 "" @@ -10022,6 +10564,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 "" @@ -10036,96 +10694,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 "" @@ -10175,10 +10754,6 @@ msgstr "Dettagli QSO" msgid "QSL Management" msgstr "Gestione QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distanza Totale" @@ -10250,10 +10825,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Carica immagine fronte cartolina QSL" @@ -10282,7 +10853,7 @@ msgstr "Segna QSL come richiesto (Diretta)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" 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 e5f24229e..ed665c472 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-25 07:32+0000\n" -"Last-Translator: Casper van Lieburg \n" +"POT-Creation-Date: 2024-08-22 13:37+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,6 +18,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.6.2\n" +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 msgid "Accumulated Statistics" @@ -29,11 +101,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Gridsquares" @@ -55,12 +128,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 +151,7 @@ msgid "ADIF Export" msgstr "ADIF Export" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "ADIF Import / Export" @@ -146,7 +220,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "" @@ -166,12 +240,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "" @@ -181,7 +255,7 @@ msgstr "" #: 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/logbookadvanced/index.php:618 #: 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 @@ -196,12 +270,12 @@ msgstr "" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -239,6 +313,10 @@ msgstr "" msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -260,12 +338,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,7 +354,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +364,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +384,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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,74 +422,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -438,7 +516,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "" @@ -459,17 +537,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "" @@ -481,20 +559,44 @@ msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -503,42 +605,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -559,7 +661,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "" @@ -569,7 +671,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +689,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -629,7 +731,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -792,15 +894,15 @@ msgstr "Logboek" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -815,18 +917,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -845,17 +947,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -867,7 +969,7 @@ msgstr "" #: 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" @@ -878,10 +980,10 @@ msgstr "" #: 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/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 @@ -889,36 +991,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -959,12 +1062,12 @@ msgstr "" msgid "Mode" msgstr "" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -986,12 +1089,12 @@ msgstr "" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1014,7 +1117,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1024,7 +1127,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1038,13 +1140,13 @@ msgstr "" msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1056,7 +1158,7 @@ msgstr "Land" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1065,17 +1167,17 @@ msgstr "Land" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1093,7 +1195,7 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1105,8 +1207,8 @@ msgstr "" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1117,11 +1219,11 @@ msgstr "" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1133,14 +1235,14 @@ msgstr "" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1156,26 +1258,26 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1184,13 +1286,13 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1232,8 +1334,8 @@ msgstr "" msgid "Band" msgstr "" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1252,11 +1354,11 @@ msgstr "" msgid "Frequency" msgstr "Frequentie" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1274,22 +1376,21 @@ msgstr "Frequentie" msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1311,7 +1412,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1319,28 +1420,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1349,7 +1477,7 @@ 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 @@ -1361,16 +1489,16 @@ msgstr "" 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 "" @@ -1492,7 +1620,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "" @@ -1500,8 +1628,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1513,8 +1679,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1532,15 +1698,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1558,10 +1788,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 "" @@ -1573,9 +1800,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1608,15 +1836,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1624,22 +1860,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1690,8 +1917,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1703,7 +1930,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1726,20 +1953,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 "" @@ -1748,52 +1972,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1801,27 +2018,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1847,7 +2043,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "" @@ -1907,96 +2103,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2030,7 +2250,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2042,6 +2262,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 "" @@ -2078,31 +2376,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2131,7 +2429,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2144,7 +2442,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Maand" @@ -2164,25 +2462,25 @@ msgstr "" #: 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/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 @@ -2203,26 +2501,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2237,7 +2538,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2276,17 +2577,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2309,7 +2610,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2320,7 +2623,7 @@ msgstr "Satelliet" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2335,22 +2638,23 @@ 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/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 "" @@ -2379,44 +2683,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2426,12 +2730,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2446,19 +2750,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2468,7 +2772,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2511,8 +2815,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2525,7 +2829,7 @@ 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 @@ -2553,8 +2857,8 @@ msgstr "Datum" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2580,7 +2884,7 @@ msgstr "Tijd" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2614,9 +2918,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2631,13 +2935,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2706,6 +3009,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2714,8 +3019,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2817,7 +3123,7 @@ msgstr "" #: application/views/adif/import.php:267 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 msgid "" @@ -2877,7 +3183,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2885,15 +3192,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2917,7 +3222,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 "" @@ -2928,7 +3233,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2949,7 +3254,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 "" @@ -2962,8 +3267,8 @@ 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 @@ -2974,7 +3279,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3020,8 +3325,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 @@ -3030,12 +3335,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 @@ -3048,10 +3353,10 @@ 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/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" @@ -3089,17 +3394,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3115,212 +3420,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3368,23 +3680,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3561,11 +3873,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 " @@ -3573,28 +3894,28 @@ 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 "" @@ -3651,7 +3972,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3674,7 +3995,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3682,30 +4014,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:101 -#: 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 "" @@ -3742,7 +4064,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3750,10 +4072,10 @@ msgstr "" #: application/views/search/result.php:21 #: application/views/view_log/qso.php:521 msgid "City" -msgstr "By" +msgstr "Staf" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3786,14 +4108,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3843,7 +4174,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3939,17 +4270,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3957,20 +4297,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3978,7 +4327,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 " @@ -3987,13 +4336,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 "" @@ -4017,8 +4366,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4073,12 +4422,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4210,9 +4553,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4378,7 +4719,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4414,8 +4755,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4443,10 +4784,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4480,7 +4822,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4535,8 +4877,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4680,14 +5022,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4737,6 +5079,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4750,79 +5093,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4846,7 +5189,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4854,7 +5197,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4862,7 +5205,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4870,7 +5213,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4878,7 +5221,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4886,7 +5229,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4894,7 +5237,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4902,7 +5245,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4910,7 +5253,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4918,7 +5261,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4926,7 +5269,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4934,7 +5277,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4942,7 +5285,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4950,7 +5293,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4958,7 +5301,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4966,7 +5309,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4974,7 +5317,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4982,7 +5325,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5004,69 +5347,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSOs overzicht" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Landen overzicht" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5096,10 +5439,10 @@ msgstr "Nodig" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5126,15 +5469,15 @@ msgstr "" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5156,12 +5499,12 @@ msgstr "Ontvangen" msgid "Requested" msgstr "Aangevraagd" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5255,242 +5598,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5498,98 +5846,117 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5600,7 +5967,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 @@ -5808,6 +6176,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5815,8 +6187,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5929,66 +6301,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6105,19 +6606,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6125,79 +6634,79 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6468,8 +6977,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6490,44 +6999,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6536,18 +7076,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6557,15 +7097,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6574,18 +7114,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6596,10 +7136,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6614,14 +7154,14 @@ msgstr "" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6648,23 +7188,23 @@ msgstr "" msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6683,8 +7223,8 @@ msgstr "" msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6701,8 +7241,8 @@ msgstr "" msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6719,8 +7259,8 @@ msgstr "" msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6730,221 +7270,207 @@ msgstr "" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6981,32 +7507,6 @@ msgstr "" 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 "" @@ -7106,58 +7606,58 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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 "" @@ -7666,7 +8166,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 "" @@ -7989,35 +8489,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 "" @@ -8137,7 +8622,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:690 msgid "Previous Contacts" msgstr "Eerdere verbindingen" @@ -8178,16 +8663,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "IOTA Referentie" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8253,15 +8738,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Suggesties" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8279,15 +8768,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8373,6 +8866,75 @@ msgstr "" 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 "" @@ -8393,10 +8955,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 @@ -8446,26 +9004,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8687,8 +9233,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 @@ -8708,8 +9254,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8777,122 +9323,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8900,304 +9445,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9245,6 +9736,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 "" @@ -9269,12 +9765,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 "" @@ -9491,9 +10027,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 @@ -9573,7 +10110,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9599,6 +10136,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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 "" @@ -9628,13 +10172,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 @@ -9677,10 +10221,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 "" @@ -10014,6 +10554,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 "" @@ -10028,96 +10684,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 "" @@ -10167,10 +10744,6 @@ msgstr "" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "" @@ -10242,10 +10815,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "" @@ -10274,7 +10843,7 @@ msgstr "Markeer QSL Kort anmodet om (Direct)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index e37d4e347..fb39fca34 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 f5e4b48dc..7df554c82 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-09 13:26+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-17 10:48+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -16,7 +16,79 @@ 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.6.2\n" + +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -29,11 +101,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" @@ -55,12 +128,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 +151,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "" @@ -146,7 +220,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Ważny" @@ -166,12 +240,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "" @@ -181,7 +255,7 @@ msgstr "" #: 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/logbookadvanced/index.php:618 #: 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 @@ -196,12 +270,12 @@ msgstr "" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -239,6 +313,10 @@ msgstr "" msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -260,12 +338,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,7 +354,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +364,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +384,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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,74 +422,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -438,7 +516,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "" @@ -459,17 +537,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Logowanie Zawodów" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "" @@ -481,20 +559,44 @@ msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -503,42 +605,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -559,7 +661,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "" @@ -569,7 +671,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +689,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -630,7 +732,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -793,15 +895,15 @@ msgstr "Log" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -816,18 +918,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: 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,17 +948,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -868,7 +970,7 @@ msgstr "" #: 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" @@ -879,10 +981,10 @@ msgstr "" #: 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/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 @@ -890,36 +992,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -960,12 +1063,12 @@ msgstr "" msgid "Mode" msgstr "Modulacja" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -987,12 +1090,12 @@ msgstr "Modulacja" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1015,7 +1118,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1025,7 +1128,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1039,13 +1141,13 @@ msgstr "" msgid "Country" msgstr "Kraj" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1057,7 +1159,7 @@ msgstr "Kraj" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1066,17 +1168,17 @@ msgstr "Kraj" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1094,7 +1196,7 @@ msgstr "" msgid "State" msgstr "Stan" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1106,8 +1208,8 @@ msgstr "Stan" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1118,11 +1220,11 @@ msgstr "Stan" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1134,14 +1236,14 @@ msgstr "Stan" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1157,26 +1259,26 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1185,13 +1287,13 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1233,8 +1335,8 @@ msgstr "" msgid "Band" msgstr "Pasmo" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1253,11 +1355,11 @@ msgstr "Pasmo" msgid "Frequency" msgstr "Częstotliwość" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1275,22 +1377,21 @@ msgstr "Częstotliwość" msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1312,7 +1413,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1320,28 +1421,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1350,7 +1478,7 @@ 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 @@ -1362,16 +1490,16 @@ msgstr "" 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ę" @@ -1493,7 +1621,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "" @@ -1501,8 +1629,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1514,8 +1683,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1533,15 +1702,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1559,10 +1792,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 "" @@ -1574,9 +1804,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1609,15 +1840,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1625,22 +1864,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1691,8 +1921,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1704,7 +1934,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1727,20 +1957,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 "" @@ -1749,52 +1976,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1802,27 +2022,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1848,7 +2047,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "" @@ -1908,96 +2107,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2031,7 +2254,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2043,6 +2266,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 "" @@ -2079,31 +2380,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2132,7 +2433,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2145,7 +2446,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Miesiąc" @@ -2165,25 +2466,25 @@ msgstr "" #: 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/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 @@ -2204,26 +2505,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2238,7 +2542,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2277,17 +2581,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2310,7 +2614,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2321,7 +2627,7 @@ msgstr "Satelita" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2336,22 +2642,23 @@ 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/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 "" @@ -2380,44 +2687,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2427,12 +2734,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2447,19 +2754,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2469,7 +2776,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2512,8 +2819,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2526,7 +2833,7 @@ 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 @@ -2554,8 +2861,8 @@ msgstr "Data" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2581,7 +2888,7 @@ msgstr "Godzina" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2615,9 +2922,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2632,13 +2939,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2707,6 +3013,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2715,8 +3023,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2878,7 +3187,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2886,15 +3196,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2918,7 +3226,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 "" @@ -2929,7 +3237,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2950,7 +3258,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 "" @@ -2963,8 +3271,8 @@ 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 @@ -2975,7 +3283,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3021,8 +3329,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 @@ -3031,12 +3339,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 @@ -3049,10 +3357,10 @@ 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/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" @@ -3090,17 +3398,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3116,212 +3424,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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: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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3369,23 +3684,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3562,11 +3877,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 " @@ -3574,28 +3898,28 @@ 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 "" @@ -3652,7 +3976,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3675,7 +3999,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3683,30 +4018,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:101 -#: 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 "" @@ -3743,7 +4068,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3754,7 +4079,7 @@ msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3787,14 +4112,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3844,7 +4178,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3940,17 +4274,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3958,20 +4301,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3979,7 +4331,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 " @@ -3988,13 +4340,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 "" @@ -4018,8 +4370,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4074,12 +4426,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4211,9 +4557,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4379,7 +4723,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4415,8 +4759,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4444,10 +4788,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4481,7 +4826,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4536,8 +4881,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4681,14 +5026,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4738,6 +5083,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4751,79 +5097,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4847,7 +5193,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4855,7 +5201,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4863,7 +5209,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4871,7 +5217,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4879,7 +5225,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4887,7 +5233,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4895,7 +5241,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4903,7 +5249,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4911,7 +5257,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4919,7 +5265,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4927,7 +5273,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4935,7 +5281,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4943,7 +5289,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4951,7 +5297,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4959,7 +5305,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4967,7 +5313,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4975,7 +5321,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4983,7 +5329,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5005,22 +5351,22 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" @@ -5028,47 +5374,47 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:94 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Nie zrobiłeś dziś łączności; czas włączyć radio!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:101 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:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Rozkład QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: 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:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5098,10 +5444,10 @@ msgstr "Wymagane" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5128,15 +5474,15 @@ msgstr "Wysłane" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5158,12 +5504,12 @@ msgstr "Odebrane" msgid "Requested" msgstr "Poproszone" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5257,242 +5603,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5501,98 +5852,117 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5603,7 +5973,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 @@ -5811,6 +6182,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5818,8 +6193,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5932,66 +6307,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6108,19 +6612,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6128,79 +6640,79 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6471,8 +6983,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6493,44 +7005,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6539,18 +7082,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6560,15 +7103,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6577,18 +7120,18 @@ msgstr "Tak" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6599,10 +7142,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6617,14 +7160,14 @@ msgstr "Nie" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6651,23 +7194,23 @@ msgstr "" msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6686,8 +7229,8 @@ msgstr "" msgid "Bureau" msgstr "Biuro" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6704,8 +7247,8 @@ msgstr "Biuro" msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6722,8 +7265,8 @@ msgstr "" msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6733,221 +7276,207 @@ msgstr "" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6984,32 +7513,6 @@ msgstr "" 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 "" @@ -7114,58 +7617,58 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7677,7 +8180,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 "" @@ -8002,35 +8505,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 "" @@ -8150,7 +8638,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:690 msgid "Previous Contacts" msgstr "Poprzednie łączności" @@ -8191,16 +8679,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Podmiot IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8265,15 +8753,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Sugestie" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8291,15 +8783,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8385,6 +8881,75 @@ msgstr "" 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 "" @@ -8405,10 +8970,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 @@ -8458,26 +9019,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8699,8 +9248,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 @@ -8720,8 +9269,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8789,122 +9338,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8912,304 +9460,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9257,6 +9751,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 "" @@ -9281,12 +9780,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 "" @@ -9503,9 +10042,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 @@ -9585,7 +10125,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9611,6 +10151,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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 "" @@ -9640,13 +10187,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 @@ -9689,10 +10236,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 "" @@ -10026,6 +10569,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 "" @@ -10040,96 +10699,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 "" @@ -10179,10 +10759,6 @@ msgstr "Szczegóły QSO" msgid "QSL Management" msgstr "Zarządzanie kartami" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Suma odległości" @@ -10254,10 +10830,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Wyślij awers karty QSL" @@ -10286,7 +10858,7 @@ msgstr "Zaznacz QSL zgodnie z żądaniem (Bezpośredni)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index 7d1c716c3..2f9b0f1f1 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 4fe782c60..8917e72e3 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-30 21:59+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-22 20:55+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Portuguese (Portugal) \n" @@ -18,7 +18,79 @@ 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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -31,11 +103,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Gridsquares" @@ -57,12 +130,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 +153,7 @@ msgid "ADIF Export" msgstr "Exportação ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "Importação / Exportação ADIF" @@ -148,7 +222,7 @@ 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 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Válido" @@ -168,12 +242,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "Prémios - %s" @@ -183,7 +257,7 @@ msgstr "Prémios - %s" #: 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/logbookadvanced/index.php:618 #: 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 @@ -198,12 +272,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -241,6 +315,10 @@ msgstr "Visualização do log - VUCC" 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 +340,12 @@ msgid " and " msgstr " e " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -278,7 +356,7 @@ msgstr " e " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +366,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +386,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -346,74 +424,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -440,7 +518,7 @@ msgid "Export Cabrillo" msgstr "Exportar Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "Exportar CFD" @@ -461,17 +539,17 @@ msgstr "Nenhum utilizador configurou o Clublog." msgid "Contest Calendar" msgstr "Calendário de concursos" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Registo de concurso" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Concursos" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "Actualizar Concurso" @@ -483,20 +561,48 @@ msgid "Continents" msgstr "Continentes" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "Gestor Cron" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Editar Cronjob" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "Exportar CSV SOTA" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "Dashboard" @@ -505,35 +611,35 @@ msgstr "Dashboard" msgid "Number of days with QSOs each year" msgstr "Número de dias com QSOs por ano" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Migrar dados agora" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "A migração já foi efectuada. Executar novamente?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Não há dados a migrar" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Não é possível efetuar a migração" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog foi atualizado com sucesso!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() não disponível. Verifique o log de Erros." -#: application/controllers/Debug.php:273 +#: 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 " @@ -543,7 +649,7 @@ msgstr "" "Se tudo parecer correto, pode apagar as pastas 'assets/qslcard' e 'images/" "eqsl_card_images'." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "A migração de ficheiros falhou. Verifique o registo de erros." @@ -564,7 +670,7 @@ msgid "and band" msgstr "e banda" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "Exportar Gridsquare DX Atlas" @@ -574,7 +680,7 @@ msgid "DX Calendar" msgstr "Calendário DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -592,19 +698,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:416 msgid "eQSL Tools" msgstr "Ferramentas eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Erros: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Descarregado com sucesso: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "Descarregar Imagem do cartão eQSL" @@ -634,7 +740,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:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Exportação KML" @@ -804,15 +910,15 @@ msgstr "Logbook" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -827,18 +933,18 @@ msgstr "QSL" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -857,17 +963,17 @@ msgstr "LoTW" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -879,7 +985,7 @@ msgstr "LoTW" #: 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" @@ -890,10 +996,10 @@ msgstr "eQSL" #: 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/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 @@ -901,36 +1007,37 @@ msgstr "eQSL" msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -971,12 +1078,12 @@ msgstr "Clublog" msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -998,12 +1105,12 @@ msgstr "Modo" msgid "RST (S)" msgstr "RST (E)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1026,7 +1133,7 @@ msgstr "RST (E)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1036,7 +1143,6 @@ msgstr "RST (R)" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1050,13 +1156,13 @@ msgstr "RST (R)" msgid "Country" msgstr "País" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1068,7 +1174,7 @@ msgstr "País" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1077,17 +1183,17 @@ msgstr "País" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1105,7 +1211,7 @@ msgstr "IOTA" msgid "State" msgstr "Estado" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1117,8 +1223,8 @@ msgstr "Estado" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1129,11 +1235,11 @@ msgstr "Estado" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1145,14 +1251,14 @@ msgstr "Estado" msgid "Gridsquare" msgstr "Gridsquare" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1168,26 +1274,26 @@ msgstr "Gridsquare" msgid "Distance" msgstr "Distância" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1196,13 +1302,13 @@ msgstr "Distância" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1244,8 +1350,8 @@ msgstr "Distância" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1264,11 +1370,11 @@ msgstr "Banda" msgid "Frequency" msgstr "Frequência" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1286,22 +1392,21 @@ msgstr "Frequência" msgid "Operator" msgstr "Operador" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1323,7 +1428,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1331,28 +1436,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modos" @@ -1361,7 +1496,7 @@ 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 @@ -1373,16 +1508,16 @@ msgstr "Editar Modo" 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" @@ -1506,7 +1641,7 @@ msgid "Log Search & OQRS" msgstr "Pesquisa do Log & OQRS" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "Pedidos OQRS" @@ -1514,8 +1649,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "Logbook QRZ" @@ -1527,8 +1702,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1546,15 +1721,79 @@ msgstr "Gestão de cartões QSL" msgid "Print Requested QSLs" msgstr "Imprimir QSLs solicitadas" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "Adicionar contacto" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/qso/index.php:312 +msgid "Radio" +msgstr "Rádio" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "Registo de data e hora" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Opções" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:96 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "última atualização" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "Definir como rádio padrão" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Apagar" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "Não foram encontrados rádios com interface CAT." + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "Criar satélite" @@ -1572,10 +1811,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" @@ -1587,9 +1823,10 @@ msgstr "Tempos dos satélite" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1624,15 +1861,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1640,22 +1885,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "Configuração da estação" @@ -1706,8 +1942,8 @@ msgstr "Erro. A ligação já está a ser utilizada!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1719,7 +1955,7 @@ msgid "Set as Active Logbook" msgstr "Definir como logbook ativo" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1744,7 +1980,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: " @@ -1753,13 +1988,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" @@ -1768,30 +2001,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1799,23 +2030,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 "" @@ -1825,27 +2051,6 @@ msgstr "" "Tem a certeza que quer apagar o perfil de estação '%s'? Isto irá apagar " "todos os contactos dentro deste perfil de estação." -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Apagar" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1871,7 +2076,7 @@ msgid "QSL Statistics" msgstr "Estatísticas de QSL" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Temas" @@ -1931,37 +2136,37 @@ msgstr "Excepções do DXCC:" msgid "Dxcc Prefixes:" msgstr "Prefixos DXCC:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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." @@ -1969,22 +2174,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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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. " @@ -1995,38 +2196,70 @@ 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 @@ -2060,7 +2293,7 @@ msgstr "Exportar mapa" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "Transferência QO-100 Dx Club" @@ -2074,6 +2307,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." @@ -2118,31 +2429,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:4143 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:4149 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:4154 msgid "confirmed by award manager" msgstr "confirmado pelo gestor do diploma" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 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:4160 msgid "confirmation pending" msgstr "confirmação pendente" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "não confirmado" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "desconhecido" @@ -2171,7 +2482,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2184,7 +2495,7 @@ msgid "Yearly" msgstr "Anual" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mês" @@ -2204,25 +2515,25 @@ msgstr "Diferença" #: 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/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,26 +2554,29 @@ msgstr "Diferença" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2277,7 +2591,7 @@ msgstr "Diferença" #: 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:170 msgid "All" msgstr "Todos" @@ -2316,17 +2630,17 @@ 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/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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2349,7 +2663,9 @@ msgstr "Mostrar" #: 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/index.php:197 +#: 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" @@ -2360,7 +2676,7 @@ msgstr "Satélite" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2375,22 +2691,23 @@ 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/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 "Traçar" @@ -2419,44 +2736,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "Nada encontrado!" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2466,12 +2783,12 @@ msgstr "Nada encontrado!" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2486,19 +2803,19 @@ msgstr "Nada encontrado!" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2508,7 +2825,7 @@ msgstr "Contagem" 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" @@ -2551,8 +2868,8 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL." #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2565,7 +2882,7 @@ 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 @@ -2593,8 +2910,8 @@ msgstr "Data" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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,7 +2937,7 @@ msgstr "Tempo" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2654,9 +2971,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2671,13 +2988,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2748,6 +3064,8 @@ msgstr "Usar sempre o indicativo de login como nome do operador na importação" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "PERIGO" @@ -2756,11 +3074,12 @@ msgid "Ignore Stationcallsign on import" msgstr "Ignorar indicativo da estação na importação" #: application/views/adif/import.php:154 +#, 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 @@ -2937,7 +3256,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2945,15 +3265,13 @@ msgstr "Nome simples para descrever a utilização desta API." #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "Chaves API" @@ -2984,7 +3302,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" @@ -2995,7 +3313,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -3018,7 +3336,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" @@ -3031,8 +3349,8 @@ 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 @@ -3043,7 +3361,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Ações" @@ -3089,8 +3407,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 @@ -3099,12 +3417,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 @@ -3117,10 +3435,10 @@ 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/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" @@ -3167,17 +3485,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3193,11 +3511,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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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 " @@ -3208,7 +3549,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." @@ -3216,195 +3557,179 @@ 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Total confirmados" @@ -3464,23 +3789,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "Todas as bandas" @@ -3684,11 +4009,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 " @@ -3700,7 +4034,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 " @@ -3710,21 +4044,21 @@ 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" @@ -3797,7 +4131,7 @@ msgstr "Mostrar mapa IOTA" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3820,7 +4154,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3832,30 +4177,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:101 -#: 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" @@ -3900,7 +4235,7 @@ 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 msgid "Number" msgstr "Número" @@ -3911,7 +4246,7 @@ msgid "City" msgstr "Cidade" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "Satélite" @@ -3953,14 +4288,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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" @@ -4020,7 +4364,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4133,11 +4477,20 @@ msgstr "Lista" msgid "WAB Square" msgstr "Quadrado WAB" -#: application/views/awards/waja/index.php:17 +#: 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." @@ -4145,7 +4498,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 " @@ -4157,20 +4510,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -4182,7 +4544,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 " @@ -4196,7 +4558,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." @@ -4204,7 +4566,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" @@ -4234,8 +4596,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4301,12 +4663,6 @@ msgstr "Mapa de Bandas" msgid "BandList" msgstr "Lista de Bandas" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -msgstr "Rádio" - #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 #: application/views/contesting/index.php:94 @@ -4442,9 +4798,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4611,7 +4965,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4647,8 +5001,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4676,10 +5030,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Hoje" @@ -4718,7 +5073,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4773,8 +5128,8 @@ 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:285 -#: 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" @@ -4919,14 +5274,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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" @@ -4976,6 +5331,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" @@ -4991,7 +5347,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:" @@ -4999,61 +5355,61 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "nunca" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 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:101 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." @@ -5061,7 +5417,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:102 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" @@ -5069,7 +5425,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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -5094,7 +5450,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -5102,7 +5458,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -5110,7 +5466,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -5118,7 +5474,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -5126,7 +5482,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -5134,7 +5490,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -5142,7 +5498,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -5150,7 +5506,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -5158,7 +5514,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -5166,7 +5522,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -5174,7 +5530,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -5182,7 +5538,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -5190,7 +5546,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -5198,7 +5554,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -5206,7 +5562,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -5214,7 +5570,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -5222,7 +5578,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -5230,7 +5586,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5253,38 +5609,38 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." @@ -5292,33 +5648,33 @@ 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:115 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:121 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:211 #: 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:234 #: 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:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5348,10 +5704,10 @@ msgstr "Necessário" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5378,15 +5734,15 @@ msgstr "Enviado" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5408,12 +5764,12 @@ msgstr "Recebido" msgid "Requested" msgstr "Solicitado" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "VUCC-Grids" @@ -5503,64 +5859,73 @@ msgstr "Há algo de errado com a sua migração na base de dados!" #: application/views/debug/index.php:45 msgid "Migration is outdated and locked!" -msgstr "" +msgstr "A migração está desatualizada e bloqueada!" #: application/views/debug/index.php:46 #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "" +"A migração atual não é a versão que deveria ser. Recarregue esta página após " +"%s segundos. Se este aviso persistir, é provável que a migração esteja " +"bloqueada devido a um processo anteriormente falhado. Apague o ficheiro %s " +"para forçar a migração a decorrer novamente." #: application/views/debug/index.php:47 #, php-format -msgid "Current migration is %s" -msgstr "" +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 -msgid "Migration should be %s" -msgstr "" +msgid "Current migration is %s" +msgstr "A migração atual é %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "A migração deveria ser %s" + +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Ambiente" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "Total de QSO nesta instância" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Informação do Servidor" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "Software do Servidor" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "Versão PHP" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Obsoleto" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "Versão do MySQL" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Versão do Codeigniter" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Permissões das Pastas" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5568,33 +5933,33 @@ msgstr "" "Isto verifica se as pastas usadas pelo Wavelog têm permissões de leitura e " "gravação pelo PHP." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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 "Sucesso" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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 "Falhou" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Manutenção da Configuração" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" "O seu modo de autenticação está desatualizado e possivelmente não é seguro" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Por favor, edite o seu ficheiro %s:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5602,28 +5967,28 @@ msgstr "" "Vá para sua pasta application/config e compare config.sample.php com seu " "config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Alterar %s para o valor %s (fortemente recomendado)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "O modo de autenticação está definido corretamente" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "Ok" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "Está a utilizar a chave de encriptação predefinida. Deveria alterá-la!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Isto também activará a funcionalidade “Manter-me conectado”." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5633,15 +5998,15 @@ msgstr "" "'flossie1234555541'. Escolha uma palavra-passe segura e longa. (Fortemente " "recomendado)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Você não utiliza a chave de encriptação predefinida" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Migrar dados dos utilizadores" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5649,112 +6014,112 @@ msgstr "" "Aqui pode migrar os cartões QSL e os cartões eQSL existentes para a nova " "pasta userdata." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Módulos" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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 "Instalado" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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 "Não instalado" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "Configurações" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Informação do Git" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Ramo" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "n/d" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Último Fetch" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Verifica se há uma nova versão" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Atualizar agora" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Data de transferência do ficheiro" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Ficheiro" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Última atualização" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "Atualização do DXCC via Club Log" -#: 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/station_profile/edit.php:22 +#: 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 "Atualização" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "Descarregar ficheiro DOK" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "Descarregamento dos utilizadores de LoTW" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "Descarregamento do ficheiro POTA" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "Descarregamento de ficheiros SCP" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "Descarregamento do ficheiro SOTA" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "Descarregamento do ficheiro WWFF" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "Manutenção da QSO-DB" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5764,102 +6129,121 @@ msgstr[0] "" msgstr[1] "" "A base de dados contém %d contactos sem um perfil de estação (localização)" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "Indicativo da Estação" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Por favor marque os contactos e reatribua-os a uma localização de estação " "existente:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Localização do objetivo" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Reatribuir" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Cada contacto na sua base de dados é atribuído a um perfil de estação " "(localização)" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Tudo ok" -#: application/views/debug/index.php:628 +#: 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:629 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Chinês (simplificado)" -#: application/views/debug/index.php:630 +#: 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:631 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Holandês" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:636 msgid "English" msgstr "Inglês" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Finlandês" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:638 msgid "French" msgstr "Francês" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:639 msgid "German" msgstr "Alemão" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Grego" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:638 +#: 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:639 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Português" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:641 +#: 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:642 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Turco" @@ -5870,8 +6254,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" @@ -6105,6 +6490,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6112,8 +6501,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "Propagação" @@ -6237,34 +6626,30 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." @@ -6272,13 +6657,89 @@ 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Informação da Versão" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "Descrição:" + +#: application/views/interface_assets/footer.php:401 +msgid "Query description" +msgstr "Descrição da consulta" + +#: 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:419 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "Editar consultas" + +#: application/views/interface_assets/footer.php:421 +msgid "Stored queries:" +msgstr "Consultas guardadas:" + +#: 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: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: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: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: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:516 +msgid "The stored query has been deleted!" +msgstr "A consulta armazenada foi eliminada!" + +#: 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:551 +msgid "The query description has been updated!" +msgstr "A descrição da consulta foi atualizada!" + +#: 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: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 " @@ -6288,20 +6749,78 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +msgid "Callsign: " +msgstr "Indicativo: " + +#: 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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Número total" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "Cartão QSL para " + +#: application/views/interface_assets/footer.php:2131 +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:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "Cartão eQSL" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "Cartão eQSL para " + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "Ficheiro de imagem QSL" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "Frente do Cartão QSL:" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "Parte traseira do Cartão QSL:" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "Adicionar QSOs adicionais a um Cartão QSL" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "Algo correu mal. Por favor, tente novamente!" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Modo de Desenvolvedor" @@ -6418,19 +6937,27 @@ msgstr "Mapa de Bandas" msgid "SAT Timers" msgstr "Tempos satélite" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "Trajectória de Satélite" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "Passagem de Satélite" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Administrador" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "Opções Globais" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6438,79 +6965,79 @@ msgstr "Opções Globais" msgid "Satellites" msgstr "Satélites" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "Atualizar ficheiros de países" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "Informações de debug" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "Adicionar/Pesquisar Indicativo" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "Log" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "Pesquisar Indicativo" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "Conta" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "Outras opções de exportação" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "Exportação Cabrillo" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "Fila de QSLs" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "Etiquetas" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "Serviços de terceiros" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "Importação / Exportação de eQSL" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "Logbook HRDLog" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "Ajuda" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "Fórum" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "Terminar sessão" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "Selecionar uma localização" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "Extras" @@ -6789,8 +7316,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL via" @@ -6811,44 +7338,75 @@ msgstr "Modo Satélite" msgid "Band RX" msgstr "Banda RX" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Gridsquares" + +#: application/views/logbookadvanced/index.php:14 +#: 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/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "Zonas CQ" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "Zonas ITU" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Sombra nocturna" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "De" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "Para" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 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:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Nenhum/Vazio" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6857,18 +7415,18 @@ msgstr "QSL enviada" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6878,15 +7436,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6895,18 +7453,18 @@ msgstr "Sim" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6917,10 +7475,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6935,14 +7493,14 @@ msgstr "Não" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6969,23 +7527,23 @@ msgstr "Em fila" msgid "Invalid (Ignore)" msgstr "Inválido (Ignorar)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "Verificado" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 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:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -7004,8 +7562,8 @@ msgstr "Método de envio de QSL" msgid "Bureau" msgstr "Bureau" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -7022,8 +7580,8 @@ msgstr "Bureau" msgid "Direct" msgstr "Direto" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -7040,8 +7598,8 @@ msgstr "Direto" msgid "Electronic" msgstr "Eletrónico" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -7051,222 +7609,208 @@ msgstr "Eletrónico" msgid "Manager" msgstr "Manager" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "Método de receção de QSL" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "LoTW enviado" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "LoTW recebido" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "Clublog enviado" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "Clublog recebido" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "eQSL enviada" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "eQSL recebida" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "Imagens QSL" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "Com selecionado: " -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "Atualização via Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "Fila de espera Bureau" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "Fila de espera Direto" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "Fila de espera Eletrónica" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "Enviado (Bureau)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "Enviado (Direto)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "Enviado (Eletrónico)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "Não enviado" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "QSL não necessária" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "Não recebida" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "Recebido (Bureau)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "Recebido (Direto)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "Recebido (Eletrónico)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "Criar ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "Imprimir etiqueta" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "Apresentação de slides QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "Pesquisa rápida com selecionado: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "Pesquisar DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "Pesquisar Estado" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "Pesquisar quadrícula" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "Pesquisar Zona CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "Pesquisar Zona ITU" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "Pesquisar Modo" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "Pesquisar Banda" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "Pesquisar IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "Pesquisar SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "Pesquisar POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "Pesquisar WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "Pesquisar Operador" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "Filtros rápidos" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "Filtros QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtros" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Resultados" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "Duplicados" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "Mapa do globo" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "Opções" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "Mensagem QSL" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "As minhas referências" @@ -7303,32 +7847,6 @@ msgstr "Camada" 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" @@ -7437,60 +7955,60 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -8062,7 +8580,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" @@ -8402,35 +8920,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" @@ -8551,7 +9054,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:690 msgid "Previous Contacts" msgstr "Contactos anteriores" @@ -8592,16 +9095,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 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:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8667,15 +9170,19 @@ msgstr "Winkey" msgid "Connect" msgstr "Conectar" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "Enviar" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Sugestões" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Foto de Perfil" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "São apresentados no máximo 5 contactos anteriores" @@ -8694,15 +9201,19 @@ msgid "" msgstr "" "Se ainda não ligou nenhum rádio, consulte a página API para gerar chaves API." -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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 "Pode saber como utilizar as %s na wiki." -#: application/views/radio/index.php:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "funções do rádio" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "Aguarde ..." + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8790,6 +9301,75 @@ msgstr "Adicionar modo satélite" msgid "Add a satellite" msgstr "Adicionar um satélite" +#: application/views/satellite/pass.php:2 +msgid "Satellite passes" +msgstr "Passagens de satélites" + +#: 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 "" @@ -8812,10 +9392,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 @@ -8867,26 +9443,14 @@ msgstr "Não foram encontradas Zonas CQ incorretas." msgid "Save query" msgstr "Guardar consulta" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "Editar consultas" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "Consultas armazenadas" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "Executar Consulta" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "funções de filtro de pesquisa" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "Exportar para ADIF" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "Resultados da Pesquisa" @@ -9129,11 +9693,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" @@ -9152,10 +9716,9 @@ 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" +#, 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 msgid "Reload QSO List" @@ -9243,124 +9806,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -9370,8 +9932,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:126 -#: 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." @@ -9379,53 +9941,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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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 " @@ -9434,44 +9996,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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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." @@ -9479,13 +10041,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:188 -#: 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:193 -#: 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 " @@ -9495,204 +10057,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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Chave API de testes" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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" @@ -9740,6 +10238,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" @@ -9768,6 +10271,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 " @@ -9776,6 +10301,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" @@ -10016,12 +10569,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" @@ -10109,7 +10663,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "Verificar contactos sem dados DXCC" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "Verificar novamente todos os contactos no logbook" @@ -10137,6 +10691,16 @@ msgstr "Aqui pode atualizar contactos com informação de distância em falta." msgid "Update distance data" msgstr "Atualizar dados de distância" +#: application/views/update/index.php:61 +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" @@ -10166,13 +10730,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 @@ -10215,10 +10779,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" @@ -10574,6 +11134,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" @@ -10588,110 +11279,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" @@ -10744,10 +11342,6 @@ msgstr "Detalhes do contacto" msgid "QSL Management" msgstr "Gestão de QSLs" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "Cartão eQSL" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distância total" @@ -10819,10 +11413,6 @@ msgstr "Mais contactos" msgid "Details" msgstr "Detailes" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "Ficheiro de imagem QSL" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Imagem da frente do cartão QSL transferida" @@ -10851,7 +11441,7 @@ msgstr "Marcar cartão QSL como solicitado (Direto)" msgid "eQSL picture" msgstr "Imagem eQSL" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "CSV" @@ -10966,5 +11556,112 @@ msgstr "O seu indicativo:" msgid "Submit Request" msgstr "Submeter pedido" +#, 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 " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "A migração atual não é a versão que deveria ser. Recarrege esta página. " +#~ "Se este aviso persistir, a sua migração provavelmente está bloqueada " +#~ "devido a um processo anteriormente falhado. Verifique a pasta %s para um " +#~ "ficheiro chamado %s e remova este ficheiro para forçar a migração a " +#~ "correr novamente." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index f1dae37a8..014e0a8e9 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 675f7bf82..1371128c2 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-30 12:45+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-20 05:18+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -19,7 +19,79 @@ 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\n" + +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -32,11 +104,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Квадраты" @@ -58,12 +131,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 +154,7 @@ msgid "ADIF Export" msgstr "Экспорт ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "Импорт / Экспорт ADIF" @@ -149,7 +223,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Ключ недействительный — либо не найден, либо отключен" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Действительный" @@ -169,12 +243,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "Дипломы - %s" @@ -184,7 +258,7 @@ msgstr "Дипломы - %s" #: 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/logbookadvanced/index.php:618 #: 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 @@ -199,12 +273,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -242,6 +316,10 @@ msgstr "Журнал — VUCC" msgid "Log View" msgstr "Просмотр журнала" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " и диапазон " + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " и спутник " @@ -263,12 +341,12 @@ msgid " and " msgstr " и " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -279,7 +357,7 @@ msgstr " и " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +367,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +387,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -347,74 +425,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -441,7 +519,7 @@ msgid "Export Cabrillo" msgstr "Экспорт Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "Экспорт CDF" @@ -462,17 +540,17 @@ msgstr "Ни один пользователь не сконфигурирова msgid "Contest Calendar" msgstr "Календарь контестов" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Журнал контеста" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Контесты" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "Обновить контест" @@ -484,20 +562,44 @@ msgid "Continents" msgstr "Континенты" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "Диспетчер задач" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Редактирование задачи" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "ОК" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "Экспорт SOTA CSV" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "Панель управления" @@ -506,35 +608,35 @@ msgstr "Панель управления" msgid "Number of days with QSOs each year" msgstr "Количество дней с QSO в каждом году" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Отладка" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Переносите данные сейчас" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "Миграция уже выполнена. Запустить снова?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Нет данных для миграции" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Миграция невозможна" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog был успешно обновлен!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." -msgstr "" +msgstr "Selfupdate() недоступен. Проверьте журнал ошибок." -#: application/controllers/Debug.php:273 +#: 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 " @@ -544,7 +646,7 @@ msgstr "" "Если все в порядке, можете удалить папки 'assets/qslcard' и 'images/" "eqsl_card_images'." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" "Не удалось выполнить миграцию файлов. Пожалуйста, проверьте журнал ошибок." @@ -566,7 +668,7 @@ msgid "and band" msgstr "и диапазоне" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "Экспорт квадратов DX Atlas" @@ -576,7 +678,7 @@ msgid "DX Calendar" msgstr "Календарь DX экспедиций" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -594,19 +696,19 @@ msgstr "информация для импорта eQSL" msgid "eQSL QSO Upload" msgstr "загрузка QSO в eQSL" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "инструменты eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Ошибки: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Успешно скачано: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "скачать изображения eQSL" @@ -637,7 +739,7 @@ msgid "No QSOs found to upload." msgstr "Не найдены QSO для загрузки." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Экспорт KML" @@ -806,15 +908,15 @@ msgstr "Журнал" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -829,18 +931,18 @@ msgstr "QSL" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -859,17 +961,17 @@ msgstr "LoTW" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -881,7 +983,7 @@ msgstr "LoTW" #: 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" @@ -892,10 +994,10 @@ msgstr "eQSL" #: 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/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 @@ -903,36 +1005,37 @@ msgstr "eQSL" msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -973,12 +1076,12 @@ msgstr "Clublog" msgid "Mode" msgstr "Вид модуляции" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1000,12 +1103,12 @@ msgstr "Вид модуляции" msgid "RST (S)" msgstr "RST (TX)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1028,7 +1131,7 @@ msgstr "RST (TX)" msgid "RST (R)" msgstr "RST (RX)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1038,7 +1141,6 @@ msgstr "RST (RX)" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1052,13 +1154,13 @@ msgstr "RST (RX)" msgid "Country" msgstr "Страна" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1070,7 +1172,7 @@ msgstr "Страна" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1079,17 +1181,17 @@ msgstr "Страна" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1107,7 +1209,7 @@ msgstr "IOTA" msgid "State" msgstr "Область/штат" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1119,8 +1221,8 @@ msgstr "Область/штат" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1131,11 +1233,11 @@ msgstr "Область/штат" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1147,14 +1249,14 @@ msgstr "Область/штат" msgid "Gridsquare" msgstr "QTH локатор" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1170,26 +1272,26 @@ msgstr "QTH локатор" msgid "Distance" msgstr "Дистанция" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1198,13 +1300,13 @@ msgstr "Дистанция" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1246,8 +1348,8 @@ msgstr "Дистанция" msgid "Band" msgstr "Диапазон" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1266,11 +1368,11 @@ msgstr "Диапазон" msgid "Frequency" msgstr "Частота" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1288,22 +1390,21 @@ msgstr "Частота" msgid "Operator" msgstr "Оператор" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1325,7 +1426,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1333,28 +1434,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 "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 "" + +#: 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 "" + +#: 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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Виды модуляции" @@ -1363,7 +1491,7 @@ 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 @@ -1375,16 +1503,16 @@ msgstr "Редактировать" 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 "Редактировать" @@ -1506,7 +1634,7 @@ msgid "Log Search & OQRS" msgstr "Поиск в журнале и OQRS" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "Запросы OQRS" @@ -1514,8 +1642,49 @@ 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 "" + +#: 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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "Журнал QRZ" @@ -1527,8 +1696,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1546,15 +1715,79 @@ msgstr "Управление QSL карточками" msgid "Print Requested QSLs" msgstr "Распечатать запрошенные QSL" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "Добавить QSO" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Удалить" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "CAT-интерфейсные радиостанции не найдены." + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "Добавить спутник" @@ -1572,10 +1805,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 "здесь" @@ -1587,9 +1817,10 @@ msgstr "Спутниковые таймеры" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1624,15 +1855,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1640,22 +1879,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "Настройка станции" @@ -1706,8 +1936,8 @@ msgstr "Ошибка. Ссылка уже используется!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1719,7 +1949,7 @@ msgid "Set as Active Logbook" msgstr "Установить как активный" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1744,20 +1974,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" @@ -1766,52 +1993,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1821,27 +2041,6 @@ msgstr "" "Вы уверены в том, что хотите удалить профиль QTH '%s'? Это удалит все QSO, " "связанные с этим профилем QTH." -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Удалить" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1864,10 +2063,10 @@ msgstr "Пользовательская статистика" #: application/views/interface_assets/header.php:136 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" -msgstr "" +msgstr "Статистика QSL" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Темы оформления" @@ -1927,37 +2126,37 @@ msgstr "Исключения DXCC:" msgid "Dxcc Prefixes:" msgstr "Префиксы DXCC:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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." @@ -1965,22 +2164,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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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. " @@ -1991,38 +2186,66 @@ 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 "" + +#: 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 @@ -2056,7 +2279,7 @@ msgstr "Экспорт карты" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "Загрузка в QO-100 Dx Club" @@ -2070,6 +2293,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 неверны." @@ -2111,31 +2412,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:4143 msgid "QSO could not be matched" msgstr "QSO не может быть сопоставлено" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "подтверждено LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "подтверждено менеджером диплома" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "подтверждено кросс-проверкой с данными DCL" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "подтверждение ожидается" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "не подтверждено" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "неизвестно" @@ -2164,7 +2465,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2177,7 +2478,7 @@ msgid "Yearly" msgstr "Ежегодно" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Месяц" @@ -2197,25 +2498,25 @@ msgstr "Разница" #: 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/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 @@ -2236,26 +2537,29 @@ msgstr "Разница" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2270,7 +2574,7 @@ msgstr "Разница" #: 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:170 msgid "All" msgstr "Все" @@ -2309,17 +2613,17 @@ msgid "Period" msgstr "Период" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2342,7 +2646,9 @@ msgstr "Показать" #: 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/index.php:197 +#: 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" @@ -2353,7 +2659,7 @@ msgstr "Спутник" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2368,22 +2674,23 @@ 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/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" #: application/views/activated_gridmap/index.php:86 #: application/views/gridmap/index.php:130 +#: application/views/satellite/flightpath.php:42 msgid "Plot" msgstr "Отобразить" @@ -2412,44 +2719,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "Не найдено!" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2459,12 +2766,12 @@ msgstr "Не найдено!" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2479,19 +2786,19 @@ msgstr "Не найдено!" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2501,7 +2808,7 @@ msgstr "Счётчик" msgid "Show QSO's" msgstr "Показать QSO" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "Показать карту" @@ -2544,8 +2851,8 @@ msgstr "Данные DOK в вашем логе отличаются от DCL" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2558,7 +2865,7 @@ 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 @@ -2586,8 +2893,8 @@ msgstr "Дата" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2613,7 +2920,7 @@ msgstr "Время" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2647,9 +2954,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2664,13 +2971,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2741,6 +3047,8 @@ msgstr "Всегда использовать позывной (логин) ка #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "ОПАСНО" @@ -2749,12 +3057,13 @@ msgid "Ignore Stationcallsign on import" msgstr "Игнорировать позывной станции при импорте" #: application/views/adif/import.php:154 +#, 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/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -2928,7 +3237,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2936,15 +3246,13 @@ msgstr "Простое название, описывающее назначен #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "ключи API" @@ -2976,7 +3284,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 "Скопировать в буфер обмена" @@ -2987,7 +3295,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -3008,7 +3316,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 "Описание" @@ -3021,8 +3329,8 @@ 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 @@ -3033,7 +3341,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Действия" @@ -3079,8 +3387,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 +3397,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 +3415,10 @@ 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/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" @@ -3156,17 +3464,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3182,11 +3490,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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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 " @@ -3196,7 +3527,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." @@ -3205,195 +3536,179 @@ 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Всего пожтверждено" @@ -3453,25 +3768,25 @@ 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/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" @@ -3673,11 +3988,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 " @@ -3689,7 +4013,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 " @@ -3699,22 +4023,22 @@ 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 "Кантон" @@ -3788,7 +4112,7 @@ msgstr "Показать карту IOTA" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3811,7 +4135,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3823,31 +4158,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:101 -#: 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 - Сто японских городов" @@ -3891,7 +4216,7 @@ msgid "Results" msgstr "Результаты" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "Номер" @@ -3902,7 +4227,7 @@ msgid "City" msgstr "Город" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "Спутники" @@ -3943,14 +4268,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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" @@ -4008,7 +4342,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4120,11 +4454,20 @@ msgstr "Список" msgid "WAB Square" msgstr "Квадраты WAB" -#: application/views/awards/waja/index.php:17 +#: 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." @@ -4132,7 +4475,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 " @@ -4144,20 +4487,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -4169,7 +4521,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 " @@ -4183,13 +4535,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" @@ -4220,8 +4572,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4286,12 +4638,6 @@ msgstr "Карта активности на диапазоне" msgid "BandList" msgstr "Список активности на диапазоне" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4427,9 +4773,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4599,7 +4943,7 @@ msgstr "Не найдены предстоящие активации. Пров #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4635,8 +4979,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4664,10 +5008,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Сегодня" @@ -4705,7 +5050,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4763,8 +5108,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "Название контеста в спецификации ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Создать" @@ -4793,7 +5138,7 @@ msgstr "Тип обмена" #: application/views/contesting/index.php:16 msgid "Exchange" -msgstr "Обмен" +msgstr "Контрольный номер" #: application/views/contesting/index.php:18 msgid "Serial" @@ -4910,14 +5255,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "Интервал" @@ -4967,6 +5312,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 "Отмена" @@ -4982,7 +5328,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:" @@ -4990,61 +5336,61 @@ 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 "" -#: 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "никогда" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "Master-Cron не запущен." -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." @@ -5052,7 +5398,7 @@ msgstr "" "Скопируйте приведенную выше задачу cron во внешнюю службу cron или в cron " "вашего сервера, чтобы использовать этот диспетчер cron." -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:102 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" @@ -5060,7 +5406,7 @@ msgstr "" "На типичном linux-сервере с доступом к шелл используйте эту команду для " "редактирования расписания задач:" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -5086,7 +5432,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -5094,7 +5440,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -5102,7 +5448,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -5110,7 +5456,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -5118,7 +5464,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -5126,7 +5472,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -5134,7 +5480,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -5142,7 +5488,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -5150,7 +5496,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -5158,7 +5504,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -5166,7 +5512,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -5174,7 +5520,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -5182,7 +5528,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -5190,7 +5536,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -5198,7 +5544,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -5206,7 +5552,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -5214,7 +5560,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -5222,7 +5568,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5244,23 +5590,22 @@ msgstr "Вам нужнго обновить версию PHP. Минималь #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" @@ -5268,15 +5613,15 @@ msgstr[0] "За сегодня проведено %d QSO" msgstr[1] "За сегодня проведено %d QSO" msgstr[2] "За сегодня проведено %d QSO" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:94 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:101 msgid "Attention: you need to set an active station location." msgstr "Внимание: вам нужно назначить активный профиль QTH." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:107 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." @@ -5284,33 +5629,33 @@ msgstr "" "У вас есть темы без определенного режима темы. Пожалуйста, попросите " "администратора отредактировать темы." -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:115 msgid "At least one of your LoTW certificates is expired!" msgstr "Один из ваших сертификатов LoTW истёк!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Статистика QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Статистика по странам" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5340,10 +5685,10 @@ msgstr "Необходимо" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5370,15 +5715,15 @@ msgstr "Отправлено" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5400,12 +5745,12 @@ msgstr "Принято" msgid "Requested" msgstr "Запрошено" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "Квадраты VUCC" @@ -5495,64 +5840,75 @@ msgstr "Что-то не так с вашей миграцией в базе д #: application/views/debug/index.php:45 msgid "Migration is outdated and locked!" -msgstr "" +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. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "" +"Текущая миграция не является той версией, которой она должна быть. " +"Перезагрузите эту страницу через %s секунд. Если это предупреждение " +"сохраняется, ваша миграция, вероятно, заблокирована из-за ранее неудавшегося " +"процесса. Удалите файл %s, чтобы принудительно запустить миграцию снова." #: application/views/debug/index.php:47 #, php-format -msgid "Current migration is %s" +msgid "Check this wiki article %shere%s for more information." msgstr "" +"Проверьте эту статью на вики %sздесь%s для получения дополнительной " +"информации." #: application/views/debug/index.php:48 #, php-format -msgid "Migration should be %s" -msgstr "" +msgid "Current migration is %s" +msgstr "Текущая миграция - %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "Миграция должна быть %s" + +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Окружение" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "Всего QSO на этом инстансе" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Информация о сервере" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "ПО сервера" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "Версия PHP" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Устарело" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "Версия MySQL" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Версия Codeigniter" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Права доступа к каталогам" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5560,32 +5916,32 @@ msgstr "" "Это проверяет, что папки, используемые Wavelog, имеют права на чтение и " "запись в PHP." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Настройка режима обслуживания" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Ваш режим аутентификации устарел и, возможно, небезопасен" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Пожалуйста, отредактируйте ваш %s файл:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5593,28 +5949,28 @@ msgstr "" "Перейдите в папку application/config и сравните config.sample.php с вашим " "config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Замените %s на значение %s (настоятельно рекомендуется)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "Режим аутентификации установлен правильно" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "ОК" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "Вы используете ключ шифрования по умолчанию. Вам следует его изменить!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Это также включит функцию «Оставаться в системе»." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5624,15 +5980,15 @@ msgstr "" "'flossie1234555541'. Выберите безопасный и длинный пароль. (Настоятельно " "рекомендуется)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Вы не используете ключ шифрования по умолчанию" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Перенести пользовательский данные" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5640,112 +5996,112 @@ msgstr "" "Здесь вы можете перенести существующие QSL-карточки и eQSL-карточки в новую " "папку userdata." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Модули" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "Настройки" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Информация Git" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Ветка" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Коммит" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Тэг" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Последнее обновление" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Проверить наличие новой версии" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Обновить сейчас" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Дата скачивания файла" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Файл" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Последнее обновление" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "Обновление DXCC из Clublog" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "Скачать файл DOK" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "Скачать список пользователей LoTW" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "Скачать файл POTA" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "Скачать файл SCP" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "Скачать файл SOTA" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "Скачать файл WWFF" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "Обслуживание БД QSO" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5754,99 +6110,118 @@ msgstr[0] "База данных содержит %d QSO без привязан msgstr[1] "База данных содержит %d QSO без привязанного профиля QTH" msgstr[2] "База данных содержит %d QSO без привязанного профиля QTH" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "Позывной" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Пожалуйста, отметьте QSO и привяжите их к существующему профилю QTH:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Целевой профиль QTH" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Переназначить" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Каждое QSO в вашей базе данных привязано к соответствующему профилю QTH" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Всё ОК" -#: application/views/debug/index.php:628 +#: 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:629 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "Хорватский" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "Чешский" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Голландский" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:636 msgid "English" msgstr "Английский" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Финский" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:638 msgid "French" msgstr "Французский" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:639 msgid "German" msgstr "Немецкий" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Греческий" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "Итальянский" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "Черногорский" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "Польский" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Португальский" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Русский" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "Сербский" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "Испанский" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "Шведский" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Турецкий" @@ -5857,8 +6232,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" @@ -6091,6 +6467,10 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6098,8 +6478,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "Распространение" @@ -6222,46 +6602,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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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 "" + +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Информация о версии" -#: application/views/interface_assets/footer.php:672 +#: 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 "Экспортировать в ADIF" + +#: 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 " @@ -6271,20 +6722,78 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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 "Вы не вошли в систему. Пожалуйста, %sвойдите%s" + +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Всего" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "QSL-карточка для " + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "Внимание! Вы уверены, что хотите удалить эту QSL-карточку?" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL-карточка" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "eQSL-карточка для " + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "Изображение QSL-карточки" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "Лицевая сторона QSL-карточки:" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "Обратная сторона QSL-карточки:" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "Добавить дополнительные QSO на QSL-карточку" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз!" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Режим разработчика" @@ -6401,19 +6910,27 @@ msgstr "План диапазонов" msgid "SAT Timers" msgstr "Спутниковые таймеры" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "Траектория полета спутника" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "Прохождение спутника" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Администрирование" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "Общие настройки" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6421,79 +6938,79 @@ msgstr "Общие настройки" msgid "Satellites" msgstr "Спутники" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "Обновить файлы стран" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "Отладочная информация" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "Добавить/найти позывной" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "Журнал" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "Поиск позывного" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "Информация об аккаунте" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "Другие варианты экспорта" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "Экспорт Cabrillo" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "Очередь QSL" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "Наклейки" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "Сторонние сервисы" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "импорт / экспорт eQSL" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "Журнал HRDLog" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "Помощь" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "Форум" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "Выход" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "Выберите профиль QTH" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "Дополнения" @@ -6771,8 +7288,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL через" @@ -6793,44 +7310,75 @@ msgstr "Спутниковый режим" msgid "Band RX" msgstr "Диапазон приёма" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Квадраты" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "Траектории" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "Зоны CQ" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "Зоны ITU" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Ночная тень" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "От" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "к" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 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:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Нет/Пусто" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6839,18 +7387,18 @@ msgstr "QSL отправлено" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6860,15 +7408,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6877,18 +7425,18 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6899,10 +7447,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6917,14 +7465,14 @@ msgstr "Нет" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6951,23 +7499,23 @@ msgstr "В очереди" msgid "Invalid (Ignore)" msgstr "Некорректно (Игнорировать)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "Верифицировано" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "Способ отправки QSL" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6986,8 +7534,8 @@ msgstr "Способ отправки QSL" msgid "Bureau" msgstr "Бюро" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -7004,8 +7552,8 @@ msgstr "Бюро" msgid "Direct" msgstr "Напрямую" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -7022,8 +7570,8 @@ msgstr "Напрямую" msgid "Electronic" msgstr "Электронное" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -7033,221 +7581,207 @@ msgstr "Электронное" msgid "Manager" msgstr "Менеджер" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "Способ получения QSL" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "LoTW отправлен" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "LoTW получен" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "Отправлено в Clublog" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "Получено из Clublog" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "eQSL отправлено" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "eQSL получено" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "Изображения QSL" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "С выбранными: " -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "Обновить из колбука" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "В очередь (бюро)" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "В очередь (напрямую)" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "В очередь (электронно)" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "Отправлено (бюро)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "Отправле (напрямую)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "Отправлено (электронно)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "Не отправлено" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "QSL не требуется" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "Не получена" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "Получено (бюро)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "Получено (напрямую)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "Получено (электронно)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "Создать ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "Напечатать наклейки" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "Слайдшоу QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "Быстрый поиск с выбранными: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "Поиск DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "Поиск штата" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "Поиск квадрата" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "Поиск зоны CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "Поиск зоны ITU" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "Поиск вида модуляции" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "Поиск диапазона" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "Поиск IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "Поиск SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "Поиск POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "Поиск WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "Поиск оператора" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "Быстрые фильтры" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "QSL фильтры" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Фильтры" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Результаты" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "Дубликаты" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "Глобус" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "Опции" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "сообщение QSL" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Мой QTH локатор" @@ -7284,32 +7818,6 @@ msgstr "Слой" 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 "Штат США" @@ -7420,60 +7928,60 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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 "Ручная синхронизация" @@ -8033,7 +8541,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 "Емэйл" @@ -8373,35 +8881,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 - Макрос" @@ -8523,7 +9016,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:690 msgid "Previous Contacts" msgstr "Предыдущие QSO" @@ -8564,16 +9057,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Справочник IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8639,15 +9132,19 @@ msgstr "Winkey" msgid "Connect" msgstr "Подключить" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Изображение профиля" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "Показываются максимум 5 предыдущих QSO" @@ -8667,14 +9164,18 @@ msgstr "" "Если вы еще не подключили ни одной радиостанции, посмотрите страницу API, " "чтобы сгенерировать ключи API." -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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 "О том, как использовать %s, вы можете узнать в вики." -#: application/views/radio/index.php:27 +#: application/views/radio/index.php:22 msgid "radio functions" -msgstr "функции радиостанции" +msgstr "интерфейс радиостанции" + +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "Пожалуйста, подождите..." #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 @@ -8761,6 +9262,75 @@ msgstr "Добавить вид модуляции (для спутника)" 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 "Время 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 msgid "" @@ -8783,10 +9353,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 @@ -8838,26 +9404,14 @@ msgstr "Некорректных зон CQ не найдено." msgid "Save query" msgstr "Сохранить запрос" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "Редактировать запросы" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "Сохранённые запросы" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "Выполнить запрос" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "функции фильтров поиска" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "Экспортировать в ADIF" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "Результат поиска" @@ -9095,11 +9649,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" @@ -9118,10 +9671,9 @@ 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" +#, 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 msgid "Reload QSO List" @@ -9208,124 +9760,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -9334,8 +9885,8 @@ msgid "" msgstr "" "Квадрат станции, например: HM54AP. Если вы не знаете свой квадрат, то %s!" -#: application/views/station_profile/create.php:126 -#: 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." @@ -9343,95 +9894,95 @@ msgstr "" "Если вы располагаетесь на границе квадратов, то укажите квадраты через " "запятую, к примеру: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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." @@ -9439,13 +9990,13 @@ msgstr "" "Определите сообщение по умолчанию, которое будет заполняться и отправляться " "при каждом QSO для данного профиля QTH." -#: application/views/station_profile/create.php:188 -#: 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:193 -#: 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 " @@ -9455,201 +10006,139 @@ msgstr "" "загружаться в Clublog. Если эта функция отключилась самостоятельно, " "проверьте, правильно ли настроен позыной в Clublog" -#: application/views/station_profile/create.php:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Проверить ключ API" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "Имя журнала" @@ -9697,6 +10186,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" @@ -9724,6 +10218,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 " @@ -9732,6 +10246,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 "Привязка" @@ -9969,12 +10511,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" @@ -10063,7 +10606,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "Проверить QSO на отсутствие данных DXCC" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "Перепроверить все QSO в журнале" @@ -10092,6 +10635,16 @@ msgstr "" msgid "Update distance data" msgstr "Обновить информацию о дистанции" +#: application/views/update/index.php:61 +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 "Удалить аккаунт пользователя" @@ -10121,13 +10674,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 @@ -10170,10 +10723,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 "Формат даты" @@ -10526,6 +11075,133 @@ 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 "РЕЖИМ ОБСЛУЖИВАНИЯ" @@ -10540,108 +11216,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 "Уровень" @@ -10694,10 +11279,6 @@ msgstr "Детали QSO" msgid "QSL Management" msgstr "QSL менеджемент" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "eQSL-карточка" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Суммарная дистанция" @@ -10769,10 +11350,6 @@ msgstr "Больше QSO" msgid "Details" msgstr "Подробно" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "Изображение QSL-карточки" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Загруженное изображение лицевой стороны QSL карточки" @@ -10801,7 +11378,7 @@ msgstr "Отметить запрос QSL-карточки (напрямую)" msgid "eQSL picture" msgstr "изображение eQSL-карточки" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "CSV" @@ -10914,6 +11491,112 @@ msgstr "Ваш позывной:" msgid "Submit Request" 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 " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "Текущая версия миграции не является той, которой она должна быть. " +#~ "Перезагрузите эту страницу. Если это предупреждение сохраняется, ваша " +#~ "миграция, вероятно, заблокирована из-за предыдущего неудачного процесса. " +#~ "Проверьте папку %s на наличие файла с именем %s и удалите этот файл, " +#~ "чтобы принудительно запустить миграцию снова." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF / UHF Century Club (VUCC)" 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..502ba6c14 --- /dev/null +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -0,0 +1,10943 @@ +# 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-22 13:37+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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 +#: application/views/interface_assets/header.php:150 +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:374 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: 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 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:376 +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:384 +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:245 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:252 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:263 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:319 +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/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:91 +msgid "Valid" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:158 +#: 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 +#, 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:170 +#: application/views/interface_assets/header.php:194 +#: application/views/logbookadvanced/index.php:618 +#: 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 +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:164 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:150 +#: application/views/logbookadvanced/index.php:585 +#: 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:210 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:170 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +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 +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:1285 +#: 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:264 +#: 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:83 +#: application/views/qso/edit_ajax.php:336 +#: 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:1286 +#: 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:284 +#: 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/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:1287 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/qso/edit_ajax.php:346 +#: 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:188 +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:230 +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:168 +#: 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/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:280 +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:379 +#: 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:137 +#: application/controllers/Options.php:148 +#: 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:396 +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:247 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:126 +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 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:284 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:111 +#: application/controllers/Visitor.php:132 +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/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:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:390 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:245 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:307 +#: 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:416 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:463 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +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:377 +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:388 +#: 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:402 +#: 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/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/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +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:461 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:462 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:463 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:471 +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:391 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:420 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:428 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:450 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:475 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:488 +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:653 +#: application/controllers/Logbook.php:668 +#: 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:573 +#: 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:656 +#: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 +#: 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:384 +#: 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 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:659 +#: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 +#: 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:381 +#: 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:665 +#: 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/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 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1280 +#: 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/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/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/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:175 +#: application/views/logbookadvanced/index.php:549 +#: 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:78 +#: 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/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:104 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1281 +#: 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:552 +#: 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:79 +#: 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/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 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1282 +#: 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:555 +#: 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:80 +#: 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/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/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1283 +#: 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/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:118 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/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: 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/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 +#: 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:82 +#: application/views/qso/edit_ajax.php:318 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:202 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:1288 +#: 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:173 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/edit.php:64 +#: application/views/logbookadvanced/index.php:167 +#: application/views/logbookadvanced/index.php:588 +#: 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:86 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:177 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:1289 +#: 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/dashboard/index.php:13 +#: 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:171 +#: application/views/logbookadvanced/index.php:561 +#: 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:87 +#: 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/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:257 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/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1290 +#: 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/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:88 +#: 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:1291 +#: 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/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/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:186 +#: application/views/logbookadvanced/index.php:558 +#: 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:89 +#: 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/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:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:87 +#: 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/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 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:603 +#: 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/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/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1314 +#: 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:159 +#: 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:134 +#: 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 +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:423 +#: 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:272 +#: 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: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 +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: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 +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 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:175 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:297 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:299 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:373 +#: application/controllers/Options.php:378 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:375 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:413 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:432 +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 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:104 +#: application/views/interface_assets/header.php:413 +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:426 +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:242 +#: application/views/dashboard/index.php:259 +#: 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:432 +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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Satellite.php:37 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:60 +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:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 +#: 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:99 +#: application/views/visitor/layout/header.php:100 +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:18 +#: 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:377 +#: application/views/interface_assets/header.php:488 +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:608 +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/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:486 +#: 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:518 +#: 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:278 +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:17 +#: application/views/interface_assets/header.php:148 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:152 +#: 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:268 +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:356 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:88 +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:79 +#: application/controllers/Visitor.php:142 +#: application/controllers/Visitor.php:169 +#: application/controllers/Visitor.php:199 +#: application/controllers/Visitor.php:478 +#: 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/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:205 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:411 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:444 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:427 +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:4143 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4154 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4157 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4160 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4163 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4166 +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:220 +#: 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:225 +#: 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/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/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/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:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/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/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:170 +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:83 +#: 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/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:53 +#: 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/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/components/hamsat/table.php:29 +#: 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:197 +#: 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/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:206 +#: 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/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/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 +#: 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:150 +#: 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/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: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:507 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: 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 +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:42 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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:140 +#: 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/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:57 +#: 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:47 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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:141 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:256 +#: 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/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:201 +#: 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:61 +#: 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:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 +#: 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:622 +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/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:622 +#: 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/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 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 +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" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:135 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:152 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +#, 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:158 application/views/adif/import.php:273 +#: 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 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:166 +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/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:179 application/views/adif/import.php:225 +#: 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:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:220 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 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:242 +#, 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:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:251 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:258 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:260 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:269 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +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:107 +#: 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:431 +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:477 +#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: 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/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:119 +#: application/views/update/index.php:30 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:497 +#: 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/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/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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 +#: 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/bandmap/list.php:73 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 +#: 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/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/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/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/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/interface_assets/footer.php:2109 +#: application/views/qso/edit_ajax.php:378 +#: 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/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:528 +#: 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:521 +#: 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/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/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/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/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 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#, 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/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:250 +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/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:247 +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/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:253 +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/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:256 +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/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:259 +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/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:265 +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/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:262 +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:117 +#: application/views/timeline/index.php:204 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:236 +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:162 +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:153 +#: application/views/contesting/index.php:171 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:564 +#: 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:203 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 +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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 +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 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:350 +#: 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:482 +#: 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:303 +#: application/views/view_log/qso.php:570 +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:540 +#: 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/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:152 +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:469 +#: 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:296 +#: application/views/view_log/qso.php:563 +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:94 +#: application/views/contesting/index.php:169 +#: 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: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 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 +#: application/views/qso/index.php:433 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:208 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:232 +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/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 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +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 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +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 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +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 +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:158 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:606 +#: 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 +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:21 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:612 +#: 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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: 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:466 +#: 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:24 +#: application/views/qso/edit_ajax.php:548 +#: application/views/view_log/qso.php:275 +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:34 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:539 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 "" + +#: 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 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:168 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:172 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:174 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:175 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:211 +#: 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 +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/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:77 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:100 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:101 +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:102 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:109 +#, 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:401 +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:219 +#: 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:220 +#: 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:221 +#: 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:222 +#: 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:223 +#: 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:224 +#: 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:225 +#: 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:226 +#: 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:227 +#: 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:228 +#: 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:229 +#: 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:230 +#: 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:231 +#: 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:232 +#: 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:233 +#: 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:234 +#: 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:235 +#: 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:236 +#: 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 "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:56 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:63 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:71 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:79 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:88 +#, 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:94 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:101 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:107 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:115 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:121 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:211 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:251 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +#: 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/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: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/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 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 +#: 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/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/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 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/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:496 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: 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 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:286 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:349 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:146 +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:120 +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:649 +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/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:366 +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:243 +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:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:614 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:609 +#: 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 "" + +#: 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:318 +#: application/views/view_log/qso.php:434 +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:601 +#: application/views/visitor/layout/footer.php:245 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:512 +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:434 +#: 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:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +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:160 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:166 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:186 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:192 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:202 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:212 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:218 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:228 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:234 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:251 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:253 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:270 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:276 +#: 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:282 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:333 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:335 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:97 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:371 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:386 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:394 +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" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:435 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:436 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:438 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:446 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:525 +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:410 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:22 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:73 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:87 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:142 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:153 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:218 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 +#: 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:495 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 +#: 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:494 +#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: 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/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 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/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: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/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 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:313 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 +#: 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:408 +#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: 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 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 +#: 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/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 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 +#: 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/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 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 +#: 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/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:206 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:334 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:344 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:355 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:414 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:426 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:429 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +#: application/views/qso/edit_ajax.php:595 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:431 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:432 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:434 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:435 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:437 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:438 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:440 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:441 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:443 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:444 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:450 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:470 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:473 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:476 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:479 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:482 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:485 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:488 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:494 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:496 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:505 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:524 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:627 +#: 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:148 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:149 +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:404 +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: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/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: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 +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:576 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:168 +#: src/QSLManager/QSO.php:300 +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:133 +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/view_log/qso.php:542 +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:177 +msgid "QTH" +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: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 "" + +#: application/views/qso/edit_ajax.php:369 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:403 +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 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:416 +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 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:436 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +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 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:530 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:576 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:581 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:593 +#: 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 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:596 +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:690 +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:439 +#: 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:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:456 +#: 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:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:538 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:645 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:647 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:704 +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/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:323 +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 +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 +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 +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 +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 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:340 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:342 +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:170 +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:148 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:160 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:167 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:168 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:169 +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: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:40 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:42 application/views/update/index.php:62 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:45 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:47 +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 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:60 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:61 +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:128 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:221 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:228 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:404 +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 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:679 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:241 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:75 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:83 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:97 +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..1042659b4 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..df5afde1b --- /dev/null +++ b/application/locale/sr/LC_MESSAGES/messages.po @@ -0,0 +1,11366 @@ +# 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-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-22 13:37+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" + +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 +#: application/views/interface_assets/header.php:150 +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:374 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: 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:375 +msgid "Gridsquares confirmed" +msgstr "Potvrđena polja" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:376 +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:384 +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:245 +msgid "Station Profile not valid for User" +msgstr "Profil stanice nije validan za ovog korisnika" + +#: application/controllers/Adif.php:252 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "ADIF uvezen" + +#: application/controllers/Adif.php:263 +msgid "DCL Import" +msgstr "Uvoz DCL" + +#: application/controllers/Adif.php:319 +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/Api.php:118 +msgid "Key Disabled" +msgstr "Ključ onemogućen" + +#: application/controllers/Api.php:118 +msgid "No Key Found" +msgstr "Ključ nije pronađen" + +#: application/controllers/Api.php:120 +msgid "Key Invalid - either not found or disabled" +msgstr "Ključ nije ispravan - ili nije pronađen, ili je onemogućen" + +#: application/controllers/Api.php:124 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Validan" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:158 +#: 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 +#, 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:170 +#: application/views/interface_assets/header.php:194 +#: application/views/logbookadvanced/index.php:618 +#: 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 +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:164 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:150 +#: application/views/logbookadvanced/index.php:585 +#: 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:210 +msgid "JCC" +msgstr "JCC" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:170 +msgid "VUCC" +msgstr "VUCC" + +#: application/controllers/Awards.php:405 +msgid "Log View - VUCC" +msgstr "Pregled loga - 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 +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:1285 +#: 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:264 +#: 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:83 +#: application/views/qso/edit_ajax.php:336 +#: 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:1286 +#: 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:284 +#: 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/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:1287 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/qso/edit_ajax.php:346 +#: 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:188 +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:230 +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:168 +#: 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/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:280 +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:379 +#: 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:137 +#: application/controllers/Options.php:148 +#: 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:396 +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:247 +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:112 +#: application/views/interface_assets/header.php:274 +msgid "Contests" +msgstr "Takmičenja" + +#: application/controllers/Contesting.php:126 +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:154 +msgid "Continents" +msgstr "Kontinenti" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:284 +msgid "Cron Manager" +msgstr "Cron menadžer" + +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "Uredi cronjob" + +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:392 +msgid "SOTA CSV Export" +msgstr "Izvoz SOTA CSV" + +#: application/controllers/Dashboard.php:111 +#: application/controllers/Visitor.php:132 +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/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:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "QSOi sa" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "i opseg" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:390 +msgid "DX Atlas Gridsquare Export" +msgstr "Izvoz polja za DX Atlas" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:245 +msgid "DX Calendar" +msgstr "DX kalendar" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:307 +#: 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:416 +msgid "eQSL Tools" +msgstr "eQSL alati" + +#: application/controllers/Eqsl.php:463 +msgid " / Errors: " +msgstr " / Greške: " + +#: application/controllers/Eqsl.php:463 +msgid "Successfully downloaded: " +msgstr "Uspešno preuzeto: " + +#: application/controllers/Eqsl.php:472 +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:377 +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:388 +#: 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:402 +#: 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:403 +#: 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:404 +#: 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:405 +msgid "Top Margin" +msgstr "Gornja margina" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +msgid "Left Margin" +msgstr "Leva margina" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +msgid "QSLs Horizontally" +msgstr "Horizontalne QSL karte" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +msgid "QSLs Vertically" +msgstr "Vertikalne QSL karte" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +msgid "Horizontal Space" +msgstr "Horizontalni razmak" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +msgid "Vertical Space" +msgstr "Vertikalni razmak" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +msgid "Label width" +msgstr "Širina oznake" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +msgid "Label height" +msgstr "Visina oznake" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +msgid "Size of Font" +msgstr "Veličina fonta" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +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:461 +msgid "Paper Name" +msgstr "Naziv papira" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:462 +msgid "Paper Width" +msgstr "Širina papira" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:463 +msgid "Paper Height" +msgstr "Visina papira" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:471 +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:391 +msgid "Edit Label" +msgstr "Uredite oznaku" + +#: application/controllers/Labels.php:420 +msgid "Label was saved." +msgstr "Oznaka je sačuvana." + +#: application/controllers/Labels.php:428 +msgid "Label was deleted." +msgstr "Oznaka je obrisana." + +#: application/controllers/Labels.php:450 +msgid "Edit Paper" +msgstr "Uredite papir" + +#: application/controllers/Labels.php:475 +msgid "Paper was saved." +msgstr "Papir je sačuvan." + +#: application/controllers/Labels.php:488 +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:653 +#: application/controllers/Logbook.php:668 +#: 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:573 +#: 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:656 +#: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 +#: 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:384 +#: 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 +msgid "LoTW" +msgstr "LoTW" + +#: application/controllers/Logbook.php:659 +#: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 +#: 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:381 +#: 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:665 +#: 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/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 +msgid "Clublog" +msgstr "Clublog" + +#: application/controllers/Logbook.php:1280 +#: 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/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/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/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:175 +#: application/views/logbookadvanced/index.php:549 +#: 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:78 +#: 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/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:104 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "Vrsta rada" + +#: application/controllers/Logbook.php:1281 +#: 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:552 +#: 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:79 +#: 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/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 +msgid "RST (S)" +msgstr "RST (S)" + +#: application/controllers/Logbook.php:1282 +#: 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:555 +#: 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:80 +#: 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/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/visitor/index.php:12 +msgid "RST (R)" +msgstr "RST (R)" + +#: application/controllers/Logbook.php:1283 +#: 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/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:118 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/visitor/index.php:15 +msgid "Country" +msgstr "Zemlja" + +#: application/controllers/Logbook.php:1284 +#: 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/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 +#: 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:82 +#: application/views/qso/edit_ajax.php:318 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:202 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:1288 +#: 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:173 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/edit.php:64 +#: application/views/logbookadvanced/index.php:167 +#: application/views/logbookadvanced/index.php:588 +#: 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:86 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:177 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:1289 +#: 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/dashboard/index.php:13 +#: 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:171 +#: application/views/logbookadvanced/index.php:561 +#: 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:87 +#: 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/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:257 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/visitor/index.php:27 +msgid "Gridsquare" +msgstr "Polje" + +#: application/controllers/Logbook.php:1290 +#: 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/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:88 +#: 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:1291 +#: 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/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/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:186 +#: application/views/logbookadvanced/index.php:558 +#: 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:89 +#: 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/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:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:87 +#: 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/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 +msgid "Frequency" +msgstr "Frekvencija" + +#: application/controllers/Logbook.php:1293 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:603 +#: 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/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/visitor/index.php:39 +msgid "Operator" +msgstr "Operator" + +#: application/controllers/Logbook.php:1314 +#: 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:159 +#: 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:134 +#: 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 +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:423 +#: 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:272 +#: 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: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 +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: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 +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 +msgid "Options saved" +msgstr "Opcije su sačuvane" + +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "de kontinent promenjen u " + +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +msgstr "Maksimalna starost spotova promenjena na " + +#: application/controllers/Options.php:175 +msgid "DXCluster Cache URL changed to " +msgstr "Keširanje URL DX klastera promenjeno na " + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "Podešavanja radija" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "Upozorenje o neaktivnosti radija promenjeno na " + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "Email" + +#: application/controllers/Options.php:297 +msgid "The settings were saved successfully." +msgstr "Podešavanja su uspešno sačuvana." + +#: application/controllers/Options.php:299 +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:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "Opcije OQRS" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "Opcije OQRS su sačuvane." + +#: application/controllers/Options.php:373 +#: application/controllers/Options.php:378 +msgid "Testmail failed. Something went wrong." +msgstr "Testmail je bio neuspešan. Nešto nije u redu." + +#: application/controllers/Options.php:375 +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:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" +msgstr "Podešavanja informacija o verziji" + +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "Zaglavlje informacije o verziji promenjeno u" + +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" +msgstr "Mod informacije o verziji promenjen u" + +#: application/controllers/Options.php:413 +msgid "Version Info Custom Text saved!" +msgstr "Prilagođeni tekst informacije o verziji je sačuvan!" + +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" +msgstr "Informacija o verziji će biti ponovo prikazana svim korisnicima" + +#: application/controllers/Options.php:432 +msgid "Version Info will not be shown to any user" +msgstr "Informacija o verziji neće biti prikazana nijednom korisniku" + +#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 +#: application/controllers/Oqrs.php:73 +msgid "Log Search & OQRS" +msgstr "Pretraga dnevnika i OQRS" + +#: application/controllers/Oqrs.php:104 +#: application/views/interface_assets/header.php:413 +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:426 +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:242 +#: application/views/dashboard/index.php:259 +#: 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:432 +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:92 +#: 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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +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/Satellite.php:37 +msgid "Create Satellite" +msgstr "Kreiraj satelit" + +#: application/controllers/Satellite.php:60 +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:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 +#: 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:99 +#: application/views/visitor/layout/header.php:100 +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:18 +#: 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:377 +#: application/views/interface_assets/header.php:488 +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:608 +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/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:486 +#: 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:518 +#: 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:278 +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:17 +#: application/views/interface_assets/header.php:148 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "Vremenska linija" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:152 +#: 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:268 +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:356 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:88 +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:79 +#: application/controllers/Visitor.php:142 +#: application/controllers/Visitor.php:169 +#: application/controllers/Visitor.php:199 +#: application/controllers/Visitor.php:478 +#: application/controllers/Widgets.php:40 +msgid "Unknown Public Page." +msgstr "Nepoznata javna stranica." + +#: application/controllers/Visitor.php:74 +#: application/controllers/Visitor.php:165 +#: application/controllers/Visitor.php:195 +#: application/controllers/Visitor.php:474 +#: application/controllers/Widgets.php:36 +msgid "Empty Logbook" +msgstr "Prazan dnevnik" + +#: application/controllers/Visitor.php:205 +msgid "Satellite Gridsquare Map" +msgstr "Satelitska mapa polja" + +#: application/controllers/Visitor.php:411 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "Javna pretraga" + +#: application/controllers/Visitor.php:444 +msgid "Export Map" +msgstr "Izvoz mape" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:427 +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:4143 +msgid "QSO could not be matched" +msgstr "QSO se ne poklapa" + +#: application/models/Logbook_model.php:4149 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "potvrđeno preko LoTW/Clublog/eQSL/Kontest" + +#: application/models/Logbook_model.php:4154 +msgid "confirmed by award manager" +msgstr "potvrđeno od strane menadžera za diplome" + +#: application/models/Logbook_model.php:4157 +msgid "confirmed by cross-check of DCL data" +msgstr "potvrđeno unakrsnom proverom DCL podataka" + +#: application/models/Logbook_model.php:4160 +msgid "confirmation pending" +msgstr "čeka potvrđivanje" + +#: application/models/Logbook_model.php:4163 +msgid "unconfirmed" +msgstr "nepotvrđeno" + +#: application/models/Logbook_model.php:4166 +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:220 +#: 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:225 +#: 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/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/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/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:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/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/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:170 +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:83 +#: 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/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:53 +#: 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/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/components/hamsat/table.php:29 +#: 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:197 +#: 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/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:206 +#: 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/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/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +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:172 +#: application/views/adif/import.php:217 +#: 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:150 +#: 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/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: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:507 +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: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 +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:42 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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:140 +#: 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/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:57 +#: 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:47 +#: application/views/contesting/index.php:200 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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:141 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:256 +#: 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/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:201 +#: 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:61 +#: 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:242 +msgid "DARC DCL" +msgstr "DARC DCL" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 +#: 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:622 +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:220 +#: application/views/adif/import.php:258 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:622 +#: 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:168 application/views/adif/import.php:215 +#: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 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 +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 HRDLog.net Logbook" +msgstr "Označi uvezene QSO kao učitane na HRDLog.net dnevnik" + +#: application/views/adif/import.php:113 +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:123 +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:133 +msgid "Use DXCC information from ADIF" +msgstr "Koristi DXCC informaciju iz ADIF" + +#: application/views/adif/import.php:135 +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:143 +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:152 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 +msgid "DANGER" +msgstr "OPASNOST" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "Zanemari pozivni znak stanice prilikom uvoza" + +#: application/views/adif/import.php:154 +#, 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:158 application/views/adif/import.php:273 +#: 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:165 +msgid "Take your logbook file anywhere!" +msgstr "Ponesite datoteku sa vašim dnevnikom gde god želite!" + +#: application/views/adif/import.php:166 +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:176 application/views/adif/import.php:222 +#: 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:179 application/views/adif/import.php:225 +#: 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:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "Označi izvezene QSO kao učitane na LoTW" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "Izvezi QSO koji nisu učitani na LoTW" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "Izvezi QSOe" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "Izvezi samo satelitske QSO" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "Izvezi sve satelitske QSO" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "Izvezi sve satelitske QSO potvrđene na LoTW" + +#: application/views/adif/import.php:220 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:228 +msgid "Mark QSOs as exported to LoTW" +msgstr "Označi QSOe kao izvezene u LoTW" + +#: application/views/adif/import.php:242 +#, 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:249 +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:251 +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:258 +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:260 +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:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "Zanemarite QSOe koji se ne mogu poklopiti." + +#: application/views/adif/import.php:269 +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_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:107 +#: 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:431 +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:477 +#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: 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/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:119 +#: application/views/update/index.php:30 +msgid "Status" +msgstr "Status" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:497 +#: 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/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/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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 +#: 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/bandmap/list.php:73 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 +#: 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/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/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/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/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/interface_assets/footer.php:2109 +#: application/views/qso/edit_ajax.php:378 +#: 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/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:528 +#: 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:521 +#: 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/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/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/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/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 +msgid "ARRL website" +msgstr "ARR web sajt" + +#: application/views/awards/dxcc/index.php:16 +#, 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/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:250 +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/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:247 +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/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:253 +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/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:256 +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/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:259 +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/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:265 +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/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:262 +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:117 +#: application/views/timeline/index.php:204 +msgid "Prefix" +msgstr "Prefiks" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:236 +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:162 +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:153 +#: application/views/contesting/index.php:171 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:564 +#: 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:203 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 +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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 +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 +msgid "Number" +msgstr "Broj" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "Grad" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:350 +#: 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:482 +#: 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:303 +#: application/views/view_log/qso.php:570 +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:540 +#: 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/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:152 +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:469 +#: 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:296 +#: application/views/view_log/qso.php:563 +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:94 +#: application/views/contesting/index.php:169 +#: 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: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 +msgid "Sig" +msgstr "Sig" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 +#: application/views/qso/index.php:433 +msgid "USA County" +msgstr "USA okrug" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:208 +msgid "WAJA" +msgstr "WAJA" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:232 +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/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 +msgid "Proceed" +msgstr "Nastavite" + +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "Izaberite godinu" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "Izaberite takmičenje" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "Izaberite datumski opseg" + +#: application/views/cabrillo/index.php:6 +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 +msgid "Club" +msgstr "Klub" + +#: application/views/cabrillo/index.php:48 +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 +msgid "Operators" +msgstr "Operatori" + +#: application/views/cabrillo/index.php:155 +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 +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:158 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:606 +#: 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 +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:21 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:612 +#: 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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: 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:466 +#: 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:24 +#: application/views/qso/edit_ajax.php:548 +#: application/views/view_log/qso.php:275 +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:34 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "Pozivni znak operatora" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +#: application/views/qso/edit_ajax.php:571 +msgid "Serial (S)" +msgstr "Serijski broj (brojevi)" + +#: 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 "Polje (S)" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +#: application/views/qso/edit_ajax.php:566 +msgid "Serial (R)" +msgstr "Serijski (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 "Polje (R)" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Resetuj QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Sačuvaj QSO" + +#: application/views/contesting/index.php:166 +msgid "Copy received exchange to" +msgstr "Kopiraj primljenu razmenu u" + +#: application/views/contesting/index.php:168 +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:172 +msgid "Age" +msgstr "Starost" + +#: application/views/contesting/index.php:174 +msgid "RX Power (W)" +msgstr "RX snaga (W)" + +#: application/views/contesting/index.php:175 +msgid "Locator" +msgstr "Lokator" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Predlozi pozivnog znaka" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Takmičarski dnevnik" + +#: application/views/contesting/index.php:211 +#: application/views/qso/edit_ajax.php:164 +msgid "VUCC Gridsquare" +msgstr "VUCC polje" + +#: 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 +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/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:77 +msgid "disabled" +msgstr "onemogućeno" + +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 +msgid "never" +msgstr "nikada" + +#: application/views/cron/index.php:100 +msgid "Your Mastercron isn't running." +msgstr "Vaš Mastercron nije pokrenut." + +#: application/views/cron/index.php:101 +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:102 +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:109 +#, 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:401 +msgid "Propagation Mode" +msgstr "Vrsta propagacija" + +#: 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:219 +#: 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:220 +#: 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:221 +#: 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:222 +#: 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:223 +#: 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:224 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "Earth-Moon-Earth" + +#: 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:225 +#: 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:226 +#: 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:227 +#: 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:228 +#: 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:229 +#: 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:230 +#: 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:231 +#: 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:232 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "Zemaljski ili atmosferski repetitor ili 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:233 +#: 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:234 +#: 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:235 +#: 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:236 +#: 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" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "RSTR" + +#: application/views/dashboard/index.php:56 +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:63 +#, 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:71 +#, 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:79 +#, 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:88 +#, 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:94 +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:101 +msgid "Attention: you need to set an active station location." +msgstr "Pažnja: morate da odredite aktivnu lokaciju stanice." + +#: application/views/dashboard/index.php:107 +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:115 +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:121 +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:211 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "Prelom veza" + +#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "Prelom zemalja" + +#: application/views/dashboard/index.php:251 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "Potrebno" + +#: application/views/dashboard/index.php:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +#: 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/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: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/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 +msgid "Sent" +msgstr "Poslato" + +#: application/views/dashboard/index.php:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 +#: 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/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/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 +msgid "Received" +msgstr "Primljeno" + +#: application/views/dashboard/index.php:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/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:496 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: 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 +msgid "Requested" +msgstr "Zahtevano" + +#: application/views/dashboard/index.php:286 +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:349 +msgid "VUCC-Grids" +msgstr "VUCC-polja" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:146 +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:120 +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:649 +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/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:366 +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:243 +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:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:614 +msgid "View" +msgstr "Pregledaj" + +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/useroptions.php:118 +msgid "Propagation" +msgstr "Propagacije" + +#: application/views/gridmap/index.php:42 +msgid "None/Empty" +msgstr "Ništa/Prazno" + +#: 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:318 +#: application/views/view_log/qso.php:434 +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:601 +#: application/views/visitor/layout/footer.php:245 +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:512 +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:434 +#: 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:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 +msgid "grid square" +msgstr "polje" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 +msgid "Total count" +msgstr "Ukupan broj" + +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "QSL karta za " + +#: application/views/interface_assets/footer.php:2131 +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:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL karta" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "eQSL karta za " + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "Datoteka slike QSL karte" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "Prednja strana QSL karte:" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "Zadnja strana QSL karte:" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "Dodajte dodatne QSOe na QSL kartu" + +#: application/views/interface_assets/footer.php:2450 +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:160 +msgid "International" +msgstr "Međunarodno" + +#: application/views/interface_assets/header.php:166 +msgid "ITU" +msgstr "ITU" + +#: application/views/interface_assets/header.php:186 +msgid "Canada" +msgstr "Kanada" + +#: application/views/interface_assets/header.php:192 +msgid "Germany" +msgstr "Nemačka" + +#: application/views/interface_assets/header.php:196 +msgid "DL Gridmaster" +msgstr "DL Gridmaster" + +#: application/views/interface_assets/header.php:200 +msgid "Great Britain" +msgstr "Velika Britanija" + +#: application/views/interface_assets/header.php:202 +msgid "WAB" +msgstr "WAB" + +#: application/views/interface_assets/header.php:206 +msgid "Japan" +msgstr "Japan" + +#: application/views/interface_assets/header.php:212 +msgid "JA Gridmaster" +msgstr "JA Gridmaster" + +#: application/views/interface_assets/header.php:216 +msgid "Luxemburg" +msgstr "Luksemburg" + +#: application/views/interface_assets/header.php:218 +msgid "LX Gridmaster" +msgstr "LX Gridmaster" + +#: application/views/interface_assets/header.php:222 +msgid "Switzerland" +msgstr "Švajcarska" + +#: application/views/interface_assets/header.php:228 +msgid "USA" +msgstr "SAD" + +#: application/views/interface_assets/header.php:234 +msgid "US Gridmaster" +msgstr "US Gridmaster" + +#: application/views/interface_assets/header.php:251 +msgid "Bandmap" +msgstr "Mapa opsega" + +#: application/views/interface_assets/header.php:253 +msgid "SAT Timers" +msgstr "SAT vremena" + +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "Putanja leta satelita" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "Preleti satelita" + +#: application/views/interface_assets/header.php:265 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "Admin" + +#: application/views/interface_assets/header.php:270 +msgid "Global Options" +msgstr "Globalne opcije" + +#: application/views/interface_assets/header.php:276 +#: 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:282 +msgid "Update Country Files" +msgstr "Ažuriranje datoteka okruga" + +#: application/views/interface_assets/header.php:286 +msgid "Debug Information" +msgstr "Informacije debaginga" + +#: application/views/interface_assets/header.php:333 +msgid "Add/Search Callsign" +msgstr "Dodaj/pretraži pozivni znak" + +#: application/views/interface_assets/header.php:335 +msgid "Log" +msgstr "Dnevnik" + +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:97 +msgid "Search Callsign" +msgstr "Pretraga pozivnog znaka" + +#: application/views/interface_assets/header.php:371 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Nalog" + +#: application/views/interface_assets/header.php:386 +msgid "Other Export Options" +msgstr "Ostale opcije izvoza" + +#: application/views/interface_assets/header.php:394 +msgid "Cabrillo Export" +msgstr "Cabrilo izvoz" + +#: application/views/interface_assets/header.php:418 +msgid "QSL Queue" +msgstr "QSL karte u redu" + +#: application/views/interface_assets/header.php:419 +msgid "Labels" +msgstr "Oznake" + +#: application/views/interface_assets/header.php:421 +msgid "Third-Party Services" +msgstr "Treći servisi" + +#: application/views/interface_assets/header.php:424 +msgid "eQSL Import / Export" +msgstr "eQSL izvoz/uvoz" + +#: application/views/interface_assets/header.php:425 +msgid "HRDLog Logbook" +msgstr "HRDLog Logbook" + +#: application/views/interface_assets/header.php:435 +msgid "Help" +msgstr "Pomoć" + +#: application/views/interface_assets/header.php:436 +msgid "Forum" +msgstr "Forum" + +#: application/views/interface_assets/header.php:438 +msgid "Logout" +msgstr "Odjavite se" + +#: application/views/interface_assets/header.php:446 +msgid "Select a Location" +msgstr "Izaberite lokaciju" + +#: application/views/interface_assets/header.php:525 +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:410 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "QSL via" + +#: application/views/logbookadvanced/edit.php:22 +msgid "LoTW Sent" +msgstr "LoTW poslat" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Received" +msgstr "LoTW primljen" + +#: application/views/logbookadvanced/edit.php:73 +msgid "SAT Mode" +msgstr "SAT vrsta rada" + +#: application/views/logbookadvanced/edit.php:87 +msgid "Band RX" +msgstr "RX opseg" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Polja" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: 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:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "CQ Zone" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "ITU Zone" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Senka noći" + +#: application/views/logbookadvanced/index.php:138 +msgid "From" +msgstr "Od" + +#: application/views/logbookadvanced/index.php:142 +msgid "To" +msgstr "Za" + +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "Dx" + +#: application/views/logbookadvanced/index.php:153 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "- NIJEDNA - (npr. /MM, /AM)" + +#: application/views/logbookadvanced/index.php:218 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "Nema/Prazno" + +#: application/views/logbookadvanced/index.php:302 +msgid "QSL sent" +msgstr "QSL poslata" + +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 +#: 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:495 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 +#: 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:494 +#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: 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/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 +msgid "Queued" +msgstr "U nizu" + +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/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: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/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 +msgid "Invalid (Ignore)" +msgstr "Neispravno (ignorišite)" + +#: application/views/logbookadvanced/index.php:313 +msgid "QSL received" +msgstr "QSL primljena" + +#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +msgid "Verified" +msgstr "Verifikovano" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL send. method" +msgstr "Način slanja QSL" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 +#: 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:408 +#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: 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 +msgid "Bureau" +msgstr "Biro" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 +#: 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/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 +msgid "Direct" +msgstr "Direktno" + +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 +#: 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/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 +msgid "Electronic" +msgstr "Elektronski" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 +#: 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/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:206 +msgid "Manager" +msgstr "Menadžer" + +#: application/views/logbookadvanced/index.php:334 +msgid "QSL recv. method" +msgstr "Način prijema QSL" + +#: application/views/logbookadvanced/index.php:344 +msgid "LoTW sent" +msgstr "LoTW poslat" + +#: application/views/logbookadvanced/index.php:355 +msgid "LoTW received" +msgstr "LoTW primljen" + +#: application/views/logbookadvanced/index.php:366 +msgid "Clublog sent" +msgstr "Clublog poslat" + +#: application/views/logbookadvanced/index.php:377 +msgid "Clublog received" +msgstr "Clublog primljen" + +#: application/views/logbookadvanced/index.php:388 +msgid "eQSL sent" +msgstr "eQSL poslata" + +#: application/views/logbookadvanced/index.php:399 +msgid "eQSL received" +msgstr "eQSL primljena" + +#: application/views/logbookadvanced/index.php:414 +msgid "QSL Images" +msgstr "Slike QSL" + +#: application/views/logbookadvanced/index.php:426 +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:429 +msgid "With selected: " +msgstr "Sa izabranim: " + +#: application/views/logbookadvanced/index.php:430 +#: application/views/qso/edit_ajax.php:595 +msgid "Update from Callbook" +msgstr "Ažurirajte iz Callbooka" + +#: application/views/logbookadvanced/index.php:431 +msgid "Queue Bureau" +msgstr "U nizu za biro" + +#: application/views/logbookadvanced/index.php:432 +msgid "Queue Direct" +msgstr "U nizu za direktno" + +#: application/views/logbookadvanced/index.php:433 +msgid "Queue Electronic" +msgstr "U nizu za elektronsko" + +#: application/views/logbookadvanced/index.php:434 +msgid "Sent (Bureau)" +msgstr "Poslato (preko biroa)" + +#: application/views/logbookadvanced/index.php:435 +msgid "Sent (Direct)" +msgstr "Poslato (direktno)" + +#: application/views/logbookadvanced/index.php:436 +msgid "Sent (Electronic)" +msgstr "Poslato (elektronski)" + +#: application/views/logbookadvanced/index.php:437 +msgid "Not Sent" +msgstr "Nije poslato" + +#: application/views/logbookadvanced/index.php:438 +msgid "QSL Not Required" +msgstr "QSL nije zahtevana" + +#: application/views/logbookadvanced/index.php:439 +msgid "Not Received" +msgstr "Nije primljena" + +#: application/views/logbookadvanced/index.php:440 +msgid "Received (Bureau)" +msgstr "Primljena (preko biroa)" + +#: application/views/logbookadvanced/index.php:441 +msgid "Received (Direct)" +msgstr "Primljena (direktno)" + +#: application/views/logbookadvanced/index.php:442 +msgid "Received (Electronic)" +msgstr "Primljena (elektronski)" + +#: application/views/logbookadvanced/index.php:443 +msgid "Create ADIF" +msgstr "Napravi ADIF" + +#: application/views/logbookadvanced/index.php:444 +msgid "Print Label" +msgstr "Štampa etiketa" + +#: application/views/logbookadvanced/index.php:445 +msgid "QSL Slideshow" +msgstr "Prikaz QSL karata" + +#: application/views/logbookadvanced/index.php:450 +msgid "Quicksearch with selected: " +msgstr "Brza pretraga sa izabranim: " + +#: application/views/logbookadvanced/index.php:455 +msgid "Search DXCC" +msgstr "Pretraži DXCC" + +#: application/views/logbookadvanced/index.php:458 +msgid "Search State" +msgstr "Pretraži državu" + +#: application/views/logbookadvanced/index.php:461 +msgid "Search Gridsquare" +msgstr "Pretraži polje" + +#: application/views/logbookadvanced/index.php:464 +msgid "Search CQ Zone" +msgstr "Pretraži CQ zonu" + +#: application/views/logbookadvanced/index.php:467 +msgid "Search ITU Zone" +msgstr "Pretraži ITU zonu" + +#: application/views/logbookadvanced/index.php:470 +msgid "Search Mode" +msgstr "Pretraži vrstu rada" + +#: application/views/logbookadvanced/index.php:473 +msgid "Search Band" +msgstr "Pretraži opseg" + +#: application/views/logbookadvanced/index.php:476 +msgid "Search IOTA" +msgstr "Pretraži IOTA" + +#: application/views/logbookadvanced/index.php:479 +msgid "Search SOTA" +msgstr "Pretraži SOTA" + +#: application/views/logbookadvanced/index.php:482 +msgid "Search POTA" +msgstr "Pretraži POTA" + +#: application/views/logbookadvanced/index.php:485 +msgid "Search WWFF" +msgstr "Pretraži WWFF" + +#: application/views/logbookadvanced/index.php:488 +msgid "Search Operator" +msgstr "Pretraži operatora" + +#: application/views/logbookadvanced/index.php:494 +msgid "Quickfilters" +msgstr "Brzi filteri" + +#: application/views/logbookadvanced/index.php:495 +msgid "QSL Filters" +msgstr "QSL filteri" + +#: application/views/logbookadvanced/index.php:496 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "Filteri" + +#: application/views/logbookadvanced/index.php:498 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "# rezultata" + +#: application/views/logbookadvanced/index.php:505 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "Lokacija" + +#: application/views/logbookadvanced/index.php:517 +msgid "Dupes" +msgstr "Duple" + +#: application/views/logbookadvanced/index.php:524 +msgid "Globe map" +msgstr "Karta sveta" + +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "De" + +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "QSL poruka" + +#: application/views/logbookadvanced/index.php:627 +#: 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:148 +msgctxt "Map Options" +msgid "Layer" +msgstr "Sloj" + +#: application/views/logbookadvanced/useroptions.php:149 +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:404 +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: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/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: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 +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:576 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:168 +#: src/QSLManager/QSO.php:300 +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:133 +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/view_log/qso.php:542 +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:177 +msgid "QTH" +msgstr "QTH" + +#: 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: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 "SIG info" + +#: application/views/qso/edit_ajax.php:369 +msgid "Notes (for internal usage only)" +msgstr "Napomene (samo za unutrašnju upotrebu)" + +#: application/views/qso/edit_ajax.php:403 +msgid "Sent Method" +msgstr "Način slanja" + +#: 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 +msgid "Method" +msgstr "Način" + +#: application/views/qso/edit_ajax.php:416 +msgid "Sent Via" +msgstr "Poslato preko" + +#: application/views/qso/edit_ajax.php:430 +#: application/views/qso/edit_ajax.php:471 +#: application/views/qso/edit_ajax.php:510 +msgid "Verified (Match)" +msgstr "Verifikovano (preklapa se)" + +#: application/views/qso/edit_ajax.php:436 +msgid "Received Method" +msgstr "Način primanja" + +#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +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:481 application/views/qso/index.php:586 +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:530 +msgid "Change Station Profile" +msgstr "Promenite stanični profil" + +#: application/views/qso/edit_ajax.php:576 +msgid "Exchange (R)" +msgstr "Razmena (R)" + +#: application/views/qso/edit_ajax.php:581 +msgid "Exchange (S)" +msgstr "Razmena (S)" + +#: application/views/qso/edit_ajax.php:593 +#: 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 +msgid "Delete QSO" +msgstr "Izbrišite QSO" + +#: application/views/qso/edit_ajax.php:596 +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:690 +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:439 +#: 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:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA Referenca" + +#: application/views/qso/index.php:212 application/views/qso/index.php:456 +#: 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:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA referenca" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frekvencija (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Opseg (RX)" + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Na primer: YU/ZS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Na primer: YUFF-0024." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Na primer: PA-0150. Dozvoljeno je uneti višestruke unose." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Na primer: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Na primer: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Na primer: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Ime satelita" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Vrsta rada satelita" + +#: application/views/qso/index.php:538 +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:604 +msgid "Reset to Default" +msgstr "Reset na podrazumevano" + +#: application/views/qso/index.php:645 +msgid "Winkey" +msgstr "Winkey" + +#: application/views/qso/index.php:647 +msgid "Connect" +msgstr "Povežite" + +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "Pošalji" + +#: application/views/qso/index.php:673 +msgid "Suggestions" +msgstr "Predlozi" + +#: application/views/qso/index.php:680 +msgid "Profile Picture" +msgstr "Profilna slika" + +#: application/views/qso/index.php:704 +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/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:323 +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:324 +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:333 +#: application/views/view_log/qso.php:652 +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:334 +#: application/views/view_log/qso.php:654 +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:325 +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:326 +#: application/views/view_log/qso.php:666 +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:340 +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:342 +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 "" + +#: application/views/simplefle/index.php:17 +#: application/views/simplefle/index.php:170 +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:148 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:160 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:167 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:168 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:169 +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: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:40 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:42 application/views/update/index.php:62 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:45 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:47 +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 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:60 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:61 +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 "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 "" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "" + +#: 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 "" + +#: 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 "Potvrdi lozinku" + +#: 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:128 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:221 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:228 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:404 +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 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:679 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:241 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:75 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:83 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:97 +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 "" + +#, 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 0d6b5de5b..c86cd618d 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-09 13:26+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-17 10:48+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -15,7 +15,79 @@ 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:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -28,11 +100,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" @@ -54,12 +127,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 +150,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "" @@ -145,7 +219,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Giltig" @@ -165,12 +239,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "" @@ -180,7 +254,7 @@ msgstr "" #: 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/logbookadvanced/index.php:618 #: 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 @@ -195,12 +269,12 @@ msgstr "" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -238,6 +312,10 @@ msgstr "" msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -259,12 +337,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -275,7 +353,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +363,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +383,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -343,74 +421,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -437,7 +515,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "" @@ -458,17 +536,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Contest-loggning" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Tävlingar" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "" @@ -480,20 +558,44 @@ msgid "Continents" msgstr "Kontinenter" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "" @@ -502,42 +604,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -558,7 +660,7 @@ msgid "and band" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "" @@ -568,7 +670,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -586,19 +688,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -628,7 +730,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -793,15 +895,15 @@ msgstr "Loggbok" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -816,18 +918,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: 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,17 +948,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -868,7 +970,7 @@ msgstr "" #: 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" @@ -879,10 +981,10 @@ msgstr "" #: 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/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 @@ -890,36 +992,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -960,12 +1063,12 @@ msgstr "" msgid "Mode" msgstr "" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -987,12 +1090,12 @@ msgstr "" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1015,7 +1118,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1025,7 +1128,6 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1039,13 +1141,13 @@ msgstr "" msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1057,7 +1159,7 @@ msgstr "Land" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1066,17 +1168,17 @@ msgstr "Land" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1094,7 +1196,7 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1106,8 +1208,8 @@ msgstr "" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1118,11 +1220,11 @@ msgstr "" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1134,14 +1236,14 @@ msgstr "" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1157,26 +1259,26 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1185,13 +1287,13 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1233,8 +1335,8 @@ msgstr "" msgid "Band" msgstr "" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1253,11 +1355,11 @@ msgstr "" msgid "Frequency" msgstr "Frekvens" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1275,22 +1377,21 @@ msgstr "Frekvens" msgid "Operator" msgstr "Operatör" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1312,7 +1413,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1320,28 +1421,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1350,7 +1478,7 @@ 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 @@ -1362,16 +1490,16 @@ msgstr "" 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" @@ -1493,7 +1621,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "OQRS Förfrågningar" @@ -1501,8 +1629,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "QRZ Loggbok" @@ -1514,8 +1680,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1533,15 +1699,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "Skriv ut begärda QSL" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Alternativ" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "Radera" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1559,10 +1789,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 "" @@ -1574,9 +1801,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1609,15 +1837,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1625,22 +1861,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1691,8 +1918,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1704,7 +1931,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1727,20 +1954,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 "" @@ -1749,52 +1973,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1802,27 +2019,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "Radera" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1848,7 +2044,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "Teman" @@ -1908,96 +2104,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2031,7 +2251,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Ladda upp" @@ -2043,6 +2263,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 "" @@ -2079,31 +2377,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2132,7 +2430,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2145,7 +2443,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Denna månad" @@ -2165,25 +2463,25 @@ msgstr "" #: 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/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 @@ -2204,26 +2502,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2238,7 +2539,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2277,17 +2578,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2310,7 +2611,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2321,7 +2624,7 @@ msgstr "Satellit" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2336,22 +2639,23 @@ 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/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 "" @@ -2380,44 +2684,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2427,12 +2731,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2447,19 +2751,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2469,7 +2773,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2512,8 +2816,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2526,7 +2830,7 @@ 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 @@ -2554,8 +2858,8 @@ msgstr "Datum" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2581,7 +2885,7 @@ msgstr "Tid" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2615,9 +2919,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2632,13 +2936,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2707,6 +3010,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2715,8 +3020,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2878,7 +3184,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2886,15 +3193,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2918,7 +3223,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" @@ -2929,7 +3234,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2950,7 +3255,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 "" @@ -2963,8 +3268,8 @@ 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 @@ -2975,7 +3280,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3021,8 +3326,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 @@ -3031,12 +3336,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 @@ -3049,10 +3354,10 @@ 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/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" @@ -3090,17 +3395,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3116,212 +3421,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3369,23 +3681,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3562,11 +3874,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 " @@ -3574,28 +3895,28 @@ 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 "" @@ -3652,7 +3973,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3675,7 +3996,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3683,30 +4015,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:101 -#: 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 "" @@ -3743,7 +4065,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3754,7 +4076,7 @@ msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3787,14 +4109,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3844,7 +4175,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3940,17 +4271,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3958,20 +4298,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3979,7 +4328,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 " @@ -3988,13 +4337,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 "" @@ -4018,8 +4367,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4074,12 +4423,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4211,9 +4554,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4379,7 +4720,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4415,8 +4756,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4444,10 +4785,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4481,7 +4823,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4536,8 +4878,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4681,14 +5023,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4738,6 +5080,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4751,79 +5094,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4847,7 +5190,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4855,7 +5198,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4863,7 +5206,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4871,7 +5214,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4879,7 +5222,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4887,7 +5230,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4895,7 +5238,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4903,7 +5246,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4911,7 +5254,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4919,7 +5262,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4927,7 +5270,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4935,7 +5278,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4943,7 +5286,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4951,7 +5294,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4959,7 +5302,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4967,7 +5310,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4975,7 +5318,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4983,7 +5326,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5005,69 +5348,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 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:115 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:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Länder Breakdown" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5097,10 +5440,10 @@ msgstr "Behövs" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5127,15 +5470,15 @@ msgstr "Skickad" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5157,12 +5500,12 @@ msgstr "Mottagen" msgid "Requested" msgstr "Begärd" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5256,242 +5599,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5499,98 +5847,117 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 -msgid "Bulgarian" -msgstr "" - #: application/views/debug/index.php:629 -msgid "Chinese (Simplified)" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Czech" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Dutch" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "English" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "Finnish" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "French" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "German" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "Greek" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Italian" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Polish" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Portuguese" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Russian" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Spanish" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Swedish" +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 "" @@ -5601,7 +5968,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 @@ -5809,6 +6177,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5816,8 +6188,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5930,66 +6302,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Totalt antal" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6106,19 +6607,27 @@ msgstr "Bandkarta" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "Globala alternativ" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6126,79 +6635,79 @@ msgstr "Globala alternativ" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "Uppdatera landsfiler" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "Debug Info" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "Användarkontoinformation" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "Etiketter" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "HRDLog Loggbok" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "Hjälp" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "Logga ut" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6469,8 +6978,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6491,44 +7000,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6537,18 +7077,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6558,15 +7098,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6575,18 +7115,18 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6597,10 +7137,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6615,14 +7155,14 @@ msgstr "Nej" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6649,23 +7189,23 @@ msgstr "Köad" msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6684,8 +7224,8 @@ msgstr "" msgid "Bureau" msgstr "Byrå" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6702,8 +7242,8 @@ msgstr "Byrå" msgid "Direct" msgstr "Direkt" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6720,8 +7260,8 @@ msgstr "Direkt" msgid "Electronic" msgstr "Elektronisk" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6731,221 +7271,207 @@ msgstr "Elektronisk" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "Alternativ" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6982,32 +7508,6 @@ msgstr "" 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 "" @@ -7111,59 +7611,59 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7680,7 +8180,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" @@ -8003,35 +8503,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 "" @@ -8151,7 +8636,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:690 msgid "Previous Contacts" msgstr "Föregående QSOn" @@ -8192,16 +8677,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8266,15 +8751,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Förslag" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Profilbild" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8292,15 +8781,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8386,6 +8879,75 @@ msgstr "" 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 "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 "" @@ -8406,10 +8968,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 @@ -8459,26 +9017,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8700,8 +9246,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 @@ -8721,8 +9267,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8790,122 +9336,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8913,304 +9458,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9258,6 +9749,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 "" @@ -9282,12 +9778,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 "" @@ -9504,9 +10040,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 @@ -9586,7 +10123,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9612,6 +10149,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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" @@ -9641,13 +10185,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 @@ -9690,10 +10234,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" @@ -10033,6 +10573,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 "" @@ -10047,99 +10706,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 "" @@ -10189,10 +10766,6 @@ msgstr "QSO-detaljer" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Totalt avstånd" @@ -10264,10 +10837,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Uppladdat QSL-kort bild framsida" @@ -10296,7 +10865,7 @@ msgstr "Ange QSL Karta Begärda (Direkt)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index a9e6465b5..88c258fa8 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 cb94505c4..f3c67039e 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-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-26 14:02+0000\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-17 10:48+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish \n" @@ -18,6 +18,78 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.6.2\n" +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 msgid "Accumulated Statistics" @@ -29,11 +101,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Konum Belirteci" @@ -55,12 +128,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 +151,7 @@ msgid "ADIF Export" msgstr "ADIF Dışa Aktarma" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "ADIF İçe / Dışa Aktarma" @@ -146,7 +220,7 @@ 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 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Geçerli" @@ -166,12 +240,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "Ödüller - %s" @@ -181,7 +255,7 @@ msgstr "Ödüller - %s" #: 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/logbookadvanced/index.php:618 #: 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 @@ -196,12 +270,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -239,6 +313,10 @@ msgstr "Kayıt Görünümü - VUCC" 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 +338,12 @@ msgid " and " msgstr " ve " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,7 +354,7 @@ msgstr " ve " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +364,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +384,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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,74 +422,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -438,7 +516,7 @@ msgid "Export Cabrillo" msgstr "Cabrillo'yu dışa aktar" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "CFD Dışa Aktarımı" @@ -459,17 +537,17 @@ msgstr "Clublog'u hiçbir kullanıcı yapılandırmadı." msgid "Contest Calendar" msgstr "Yarışma Takvimi" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Yarışma Kayıtları" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "Yarışmalar" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "Yarışmayı Güncelleyin" @@ -481,20 +559,44 @@ msgid "Continents" msgstr "Kıtalar" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "Cron Yöneticisi" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Cronjob'u Düzenle" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "SOTA CSV Dışa Aktarma" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "Kontrol Paneli" @@ -503,35 +605,35 @@ msgstr "Kontrol Paneli" msgid "Number of days with QSOs each year" msgstr "Her yıl QSO'lu gün sayısı" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Hata ayıklama" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Verileri şimdi taşıyın" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "Görev zaten tamamlandı. Tekrar çalıştırılsın mı?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Taşınacak veri yok" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Taşınma mümkün değil" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: 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 " @@ -541,7 +643,7 @@ msgstr "" "edin. Her şey doğru görünüyorsa 'assets/qslcard' ve 'images/" "eqsl_card_images' klasörlerini silebilirsiniz." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 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." @@ -563,7 +665,7 @@ msgid "and band" msgstr "ve bant" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Konum belirleyici Dışa Aktarma" @@ -573,7 +675,7 @@ msgid "DX Calendar" msgstr "DX Takvimi" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -591,19 +693,19 @@ msgstr "eQSL İçe Aktarma Bilgileri" msgid "eQSL QSO Upload" msgstr "eQSL QSO Yükleme" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "eQSL Araçları" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Hatalar: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Başarıyla indirildi: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "eQSL Kart Görüntüsü İndirme" @@ -633,7 +735,7 @@ msgid "No QSOs found to upload." msgstr "Yüklenecek QSO bulunamadı." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML Dışa Aktarma" @@ -798,15 +900,15 @@ msgstr "Kayıt defteri" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -821,18 +923,18 @@ msgstr "" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: 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,17 +953,17 @@ msgstr "" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -873,7 +975,7 @@ msgstr "" #: 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" @@ -884,10 +986,10 @@ msgstr "" #: 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/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 @@ -895,36 +997,37 @@ msgstr "" msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -965,12 +1068,12 @@ msgstr "" msgid "Mode" msgstr "Mod" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -992,12 +1095,12 @@ msgstr "Mod" msgid "RST (S)" msgstr "RST (G)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1020,7 +1123,7 @@ msgstr "RST (G)" msgid "RST (R)" msgstr "RST (A)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1030,7 +1133,6 @@ msgstr "RST (A)" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1044,13 +1146,13 @@ msgstr "RST (A)" msgid "Country" msgstr "Ülke" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1062,7 +1164,7 @@ msgstr "Ülke" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1071,17 +1173,17 @@ msgstr "Ülke" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1099,7 +1201,7 @@ msgstr "" msgid "State" msgstr "Eyalet" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1111,8 +1213,8 @@ msgstr "Eyalet" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1123,11 +1225,11 @@ msgstr "Eyalet" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1139,14 +1241,14 @@ msgstr "Eyalet" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1162,26 +1264,26 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1190,13 +1292,13 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1238,8 +1340,8 @@ msgstr "" msgid "Band" msgstr "Bant" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1258,11 +1360,11 @@ msgstr "Bant" msgid "Frequency" msgstr "Frekans" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1280,22 +1382,21 @@ msgstr "Frekans" msgid "Operator" msgstr "Operatör" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1317,7 +1418,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1325,28 +1426,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1355,7 +1483,7 @@ 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 @@ -1367,16 +1495,16 @@ msgstr "" 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" @@ -1498,7 +1626,7 @@ msgid "Log Search & OQRS" msgstr "" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "" @@ -1506,8 +1634,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "" @@ -1519,8 +1685,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1538,15 +1704,79 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/qso/index.php:312 +msgid "Radio" +msgstr "Telsiz" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "" @@ -1564,10 +1794,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 "" @@ -1579,9 +1806,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1614,15 +1842,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1630,22 +1866,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "" @@ -1696,8 +1923,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1709,7 +1936,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1732,20 +1959,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 "" @@ -1754,52 +1978,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1807,27 +2024,6 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1853,7 +2049,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "" @@ -1913,96 +2109,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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 @@ -2036,7 +2256,7 @@ msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2048,6 +2268,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 "" @@ -2084,31 +2382,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "" @@ -2137,7 +2435,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2150,7 +2448,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Ay" @@ -2170,25 +2468,25 @@ msgstr "" #: 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/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 @@ -2209,26 +2507,29 @@ msgstr "" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2243,7 +2544,7 @@ msgstr "" #: 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:170 msgid "All" msgstr "" @@ -2282,17 +2583,17 @@ msgid "Period" msgstr "" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2315,7 +2616,9 @@ msgstr "" #: 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/index.php:197 +#: 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" @@ -2326,7 +2629,7 @@ msgstr "Uydu" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2341,22 +2644,23 @@ 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/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 "" @@ -2385,44 +2689,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2432,12 +2736,12 @@ msgstr "" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2452,19 +2756,19 @@ msgstr "" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2474,7 +2778,7 @@ msgstr "" msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2517,8 +2821,8 @@ msgstr "" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2531,7 +2835,7 @@ 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 @@ -2559,8 +2863,8 @@ msgstr "Tarih" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2586,7 +2890,7 @@ msgstr "Saat" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2620,9 +2924,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2637,13 +2941,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2712,6 +3015,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -2720,8 +3025,9 @@ msgid "Ignore Stationcallsign on import" msgstr "" #: application/views/adif/import.php:154 +#, 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 "" @@ -2883,7 +3189,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2891,15 +3198,13 @@ msgstr "" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "" @@ -2923,7 +3228,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" @@ -2934,7 +3239,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2955,7 +3260,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 "" @@ -2968,8 +3273,8 @@ 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 @@ -2980,7 +3285,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3026,8 +3331,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 @@ -3036,12 +3341,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 @@ -3054,10 +3359,10 @@ 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/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" @@ -3095,17 +3400,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3121,212 +3426,219 @@ 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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3374,23 +3686,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3567,11 +3879,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 " @@ -3579,28 +3900,28 @@ 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 "" @@ -3657,7 +3978,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3680,7 +4001,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3688,30 +4020,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:101 -#: 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 "" @@ -3748,7 +4070,7 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "" @@ -3759,7 +4081,7 @@ msgid "City" msgstr "Şehir" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3792,14 +4114,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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 "" @@ -3849,7 +4180,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3945,17 +4276,26 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: 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 " @@ -3963,20 +4303,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -3984,7 +4333,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 " @@ -3993,13 +4342,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 "" @@ -4023,8 +4372,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4079,12 +4428,6 @@ msgstr "" msgid "BandList" msgstr "" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -msgstr "Telsiz" - #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 #: application/views/contesting/index.php:94 @@ -4216,9 +4559,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4384,7 +4725,7 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4420,8 +4761,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4449,10 +4790,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4486,7 +4828,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4541,8 +4883,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4686,14 +5028,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "" @@ -4743,6 +5085,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4756,79 +5099,79 @@ 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4852,7 +5195,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4860,7 +5203,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4868,7 +5211,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4876,7 +5219,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4884,7 +5227,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4892,7 +5235,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4900,7 +5243,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4908,7 +5251,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4916,7 +5259,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4924,7 +5267,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4932,7 +5275,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4940,7 +5283,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4948,7 +5291,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4956,7 +5299,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4964,7 +5307,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4972,7 +5315,7 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4980,7 +5323,7 @@ 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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4988,7 +5331,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5010,69 +5353,69 @@ msgstr "" #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 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:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:211 #: 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:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Ülke Analizi" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5102,10 +5445,10 @@ msgstr "İstenenler" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5132,15 +5475,15 @@ msgstr "Gönderilen" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5162,12 +5505,12 @@ msgstr "Gelen" msgid "Requested" msgstr "İstenen" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "" @@ -5261,242 +5604,247 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "Current migration is %s" +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:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: 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:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: 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:177 +#: 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:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: 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:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: 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:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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 "Kurulmuş" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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 "Kurulu Değil" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5504,98 +5852,117 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: 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:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: 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:629 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Çince (Basitleştirilmiş)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "Çek" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Flemenkçe" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:636 msgid "English" msgstr "İngilizce" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Fince" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:638 msgid "French" msgstr "Fransızca" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:639 msgid "German" msgstr "Almanca" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Yunanca" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "İtalyanca" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "Polonyaca" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Portekizce" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Rusça" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "İspanyolca" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "İsveççe" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Türkçe" @@ -5606,7 +5973,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 @@ -5814,6 +6182,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5821,8 +6193,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5935,66 +6307,195 @@ 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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: 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:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6111,19 +6612,27 @@ msgstr "" msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6131,79 +6640,79 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "" @@ -6474,8 +6983,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -6496,44 +7005,75 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6542,18 +7082,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6563,15 +7103,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6580,18 +7120,18 @@ msgstr "Evet" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6602,10 +7142,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6620,14 +7160,14 @@ msgstr "Hayır" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6654,23 +7194,23 @@ msgstr "Sıralanan" msgid "Invalid (Ignore)" msgstr "Geçersiz (Yok say)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6689,8 +7229,8 @@ msgstr "" msgid "Bureau" msgstr "Büro" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6707,8 +7247,8 @@ msgstr "Büro" msgid "Direct" msgstr "Direk" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6725,8 +7265,8 @@ msgstr "Direk" msgid "Electronic" msgstr "Elektronik" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6736,221 +7276,207 @@ msgstr "Elektronik" msgid "Manager" msgstr "Yönetici" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6987,32 +7513,6 @@ msgstr "" 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 "" @@ -7116,59 +7616,59 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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" @@ -7680,7 +8180,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 "" @@ -8003,35 +8503,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 "" @@ -8151,7 +8636,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:690 msgid "Previous Contacts" msgstr "Önceki Görüşmeler" @@ -8192,16 +8677,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "IOTA Referansı" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8266,15 +8751,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Öneriler" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Profil Resmi" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8292,15 +8781,19 @@ msgid "" "keys." msgstr "" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8386,6 +8879,75 @@ msgstr "" 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 "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 "" @@ -8406,10 +8968,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 @@ -8459,26 +9017,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8700,8 +9246,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 @@ -8721,8 +9267,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" #: application/views/simplefle/index.php:167 @@ -8790,122 +9336,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -8913,304 +9458,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "" @@ -9258,6 +9749,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 "" @@ -9282,12 +9778,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 "" @@ -9504,9 +10040,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 @@ -9586,7 +10123,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -9612,6 +10149,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +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 "" @@ -9641,13 +10185,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 @@ -9690,10 +10234,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 "" @@ -10027,6 +10567,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 "" @@ -10041,96 +10697,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 "" @@ -10180,10 +10757,6 @@ msgstr "QSO detayları" msgid "QSL Management" msgstr "QSL Yönetimi" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Topam mesafe" @@ -10255,10 +10828,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Yüklenen QSL kartının ön resmi" @@ -10287,7 +10856,7 @@ msgstr "QSL'i gerektiği gibi işaretleyin" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 1124d39b8..48d523511 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 692246392..24f3e33ec 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-31 11:18+0000\n" -"Last-Translator: BG6HJE <1753409828@qq.com>\n" +"POT-Creation-Date: 2024-08-22 13:37+0000\n" +"PO-Revision-Date: 2024-08-22 14:14+0000\n" +"Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" @@ -17,7 +17,79 @@ msgstr "" "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\n" + +#: application/controllers/Accumulated.php:13 +#: 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:149 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: 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:348 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 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:599 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Satellite.php:15 +#: 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:11 +#: 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:21 #: application/views/interface_assets/header.php:150 @@ -30,11 +102,12 @@ 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/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "网格" @@ -56,12 +129,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 +152,7 @@ msgid "ADIF Export" msgstr "ADIF 导出" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:378 +#: application/views/interface_assets/header.php:384 msgid "ADIF Import / Export" msgstr "ADIF 导入/导出" @@ -147,7 +221,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Key 无效(未找到或已禁用)" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "有效" @@ -167,12 +241,12 @@ 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 #, php-format msgid "Awards - %s" msgstr "奖项 - %s" @@ -182,7 +256,7 @@ msgstr "奖项 - %s" #: 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/logbookadvanced/index.php:618 #: 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 @@ -197,12 +271,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:164 #: 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:150 +#: application/views/logbookadvanced/index.php:585 #: 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 @@ -240,6 +314,10 @@ msgstr "日志视图 - VUCC" msgid "Log View" msgstr "日志视图" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " 并且波段为 " + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " 并且卫星 " @@ -261,12 +339,12 @@ msgid " and " msgstr " 并且 " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1285 #: 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/logbookadvanced/index.php:264 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -277,7 +355,7 @@ msgstr " 并且 " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: 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 +365,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1286 #: 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/logbookadvanced/index.php:284 #: 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/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 +385,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1287 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:182 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:268 +#: application/views/logbookadvanced/index.php:600 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: 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 @@ -345,74 +423,74 @@ 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/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 #: application/views/interface_assets/header.php:230 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/controllers/Awards.php:1140 #: application/views/interface_assets/header.php:168 #: 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/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:274 +#: application/views/interface_assets/header.php:280 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:373 +#: application/views/interface_assets/header.php:379 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -439,7 +517,7 @@ msgid "Export Cabrillo" msgstr "导出 Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:396 msgid "CFD Export" msgstr "CFD 导出" @@ -460,17 +538,17 @@ msgstr "Clublog 未配置用户账户。" msgid "Contest Calendar" msgstr "竞赛日志" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "竞赛日志" -#: application/controllers/Contesting.php:101 -#: application/views/interface_assets/header.php:268 +#: application/controllers/Contesting.php:112 +#: application/views/interface_assets/header.php:274 msgid "Contests" msgstr "比赛" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:126 msgid "Update Contest" msgstr "更新竞赛" @@ -482,20 +560,44 @@ msgid "Continents" msgstr "大陆" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:284 msgid "Cron Manager" msgstr "Cron 管理器" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:141 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "编辑 Cron" +#: application/controllers/Cron.php:261 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "确认" + +#: application/controllers/Cron.php:265 +#, 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:268 +#, 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:273 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:386 +#: application/views/interface_assets/header.php:392 msgid "SOTA CSV Export" msgstr "SOTA CSV 导出" -#: application/controllers/Dashboard.php:108 +#: application/controllers/Dashboard.php:111 #: application/controllers/Visitor.php:132 msgid "Dashboard" msgstr "仪表板" @@ -504,35 +606,35 @@ msgstr "仪表板" msgid "Number of days with QSOs each year" msgstr "本年QSO总数" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "立即迁移数据" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "迁移已完成,是否重新迁移?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "没有可迁移的数据" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "无法迁移" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog已更新成功!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate()不可用。请检查错误日志。" -#: application/controllers/Debug.php:273 +#: 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 " @@ -541,7 +643,7 @@ msgstr "" "文件迁移成功,请手动检查是否完整。如果一切正常,您可以删除文件夹“assets/" "qslcard”和“images/eqsl_card_images”。" -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "文件迁移失败。请检查错误日志。" @@ -562,7 +664,7 @@ msgid "and band" msgstr "和波段" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:390 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Gridsquare 导出" @@ -572,7 +674,7 @@ msgid "DX Calendar" msgstr "DX 日志" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:307 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -590,19 +692,19 @@ msgstr "eQSL 导入信息" msgid "eQSL QSO Upload" msgstr "eQSL QSO 上传" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "eQSL 工具" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / 错误: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "下载成功: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "eQSL 卡片图像下载" @@ -631,7 +733,7 @@ msgid "No QSOs found to upload." msgstr "无 QSO 可供上传。" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:382 +#: application/views/interface_assets/header.php:388 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML 导出" @@ -794,15 +896,15 @@ msgstr "日志簿" #: 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:573 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -817,18 +919,18 @@ msgstr "QSL" #: application/controllers/Logbook.php:656 #: 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/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:242 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -847,17 +949,17 @@ msgstr "LoTW" #: application/controllers/Logbook.php:659 #: 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/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:242 #: 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,7 +971,7 @@ msgstr "LoTW" #: 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" @@ -880,10 +982,10 @@ msgstr "eQSL" #: 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/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 @@ -891,36 +993,37 @@ msgstr "eQSL" msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1280 +#: 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/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/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 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:175 +#: application/views/logbookadvanced/index.php:549 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -961,12 +1064,12 @@ msgstr "Clublog" msgid "Mode" msgstr "模式" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1281 #: 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/logbookadvanced/index.php:552 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -988,12 +1091,12 @@ msgstr "模式" msgid "RST (S)" msgstr "信号报告(发)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1282 #: 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/logbookadvanced/index.php:555 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1016,7 +1119,7 @@ msgstr "信号报告(发)" msgid "RST (R)" msgstr "信号报告(收)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1283 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1026,7 +1129,6 @@ msgstr "信号报告(收)" #: application/views/qso/components/previous_contacts.php:81 #: 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 @@ -1040,13 +1142,13 @@ msgstr "信号报告(收)" msgid "Country" msgstr "DXCC 实体" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1284 #: 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/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:272 +#: application/views/logbookadvanced/index.php:597 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1058,7 +1160,7 @@ msgstr "DXCC 实体" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 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 @@ -1067,17 +1169,17 @@ msgstr "DXCC 实体" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1288 #: 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/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 #: application/views/contesting/index.php:173 #: 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/index.php:167 +#: application/views/logbookadvanced/index.php:588 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1095,7 +1197,7 @@ msgstr "IOTA" msgid "State" msgstr "州" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1289 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 @@ -1107,8 +1209,8 @@ msgstr "州" #: 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:171 +#: application/views/logbookadvanced/index.php:561 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1119,11 +1221,11 @@ msgstr "州" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:87 #: 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/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:257 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 @@ -1135,14 +1237,14 @@ msgstr "州" msgid "Gridsquare" msgstr "网格坐标" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1290 #: 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/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 @@ -1158,26 +1260,26 @@ msgstr "网格坐标" msgid "Distance" msgstr "距离" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1291 #: 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/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 @@ -1186,13 +1288,13 @@ msgstr "距离" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: 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:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:186 +#: application/views/logbookadvanced/index.php:558 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1234,8 +1336,8 @@ msgstr "距离" msgid "Band" msgstr "频段" -#: application/controllers/Logbook.php:1285 -#: application/views/bandmap/list.php:110 +#: application/controllers/Logbook.php:1292 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 #: application/views/contesting/index.php:87 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 @@ -1254,11 +1356,11 @@ msgstr "频段" msgid "Frequency" msgstr "频率" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1293 #: 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:288 +#: application/views/logbookadvanced/index.php:603 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1276,22 +1378,21 @@ msgstr "频率" msgid "Operator" msgstr "操作员" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1314 #: 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:159 #: 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:54 -#: 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 @@ -1313,7 +1414,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:417 +#: application/views/interface_assets/header.php:423 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1321,28 +1422,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:266 +#: application/views/interface_assets/header.php:272 #: application/views/mode/index.php:15 msgid "Modes" msgstr "模式" @@ -1351,7 +1481,7 @@ 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 @@ -1363,16 +1493,16 @@ msgstr "编辑模式" 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 "编辑笔记" @@ -1494,7 +1624,7 @@ msgid "Log Search & OQRS" msgstr "查找日志 & OQRS" #: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:407 +#: application/views/interface_assets/header.php:413 msgid "OQRS Requests" msgstr "OQRS" @@ -1502,8 +1632,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:420 +#: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" msgstr "QRZ 日志簿" @@ -1515,8 +1680,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:242 +#: application/views/dashboard/index.php:259 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1534,15 +1699,79 @@ msgstr "QSL 卡片管理" msgid "Print Requested QSLs" msgstr "打印请求的QSL卡片" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:102 msgid "Add QSO" msgstr "添加 QSO" -#: application/controllers/Radio.php:18 -#: application/views/interface_assets/header.php:426 +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:432 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/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:527 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:171 +#: 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:96 +#: 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:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:519 +#: 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:613 +msgid "Delete" +msgstr "删除" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "无 CAT 控制电台。" + #: application/controllers/Satellite.php:37 msgid "Create Satellite" msgstr "创建卫星信息" @@ -1560,10 +1789,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 "这里" @@ -1575,9 +1801,10 @@ msgstr "卫星时钟" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:330 -#: application/views/interface_assets/header.php:337 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:336 +#: application/views/interface_assets/header.php:343 +#: application/views/logbookadvanced/index.php:516 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1610,15 +1837,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/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 -#: 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 @@ -1626,22 +1861,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:371 -#: application/views/interface_assets/header.php:482 +#: application/views/interface_assets/header.php:377 +#: application/views/interface_assets/header.php:488 msgid "Station Setup" msgstr "设置台站" @@ -1692,8 +1918,8 @@ msgstr "错误,链接已正在使用!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 -#: 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" @@ -1705,7 +1931,7 @@ msgid "Set as Active Logbook" msgstr "设置为正在使用的日志" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:486 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1728,20 +1954,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 "启用" @@ -1750,52 +1973,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/labels/index.php:47 -#: application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: 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:518 #: 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 "" @@ -1803,27 +2019,6 @@ msgid "" "within this station profile." msgstr "确定要删除台站 '%s' 吗?这会删除此台站下的所有 QSO。" -#: application/controllers/Stationsetup.php:372 -#: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: 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/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 -msgid "Delete" -msgstr "删除" - #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:221 msgid "NONE" @@ -1849,7 +2044,7 @@ msgid "QSL Statistics" msgstr "QSL统计信息" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:278 msgid "Themes" msgstr "主题" @@ -1909,58 +2104,54 @@ msgstr "DXCC 例外:" msgid "Dxcc Prefixes:" msgstr "DXCC 前缀:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:262 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:268 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:350 -#: application/views/user/login.php:89 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:356 +#: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 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. " @@ -1969,38 +2160,66 @@ 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 "" + +#: 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 @@ -2034,7 +2253,7 @@ msgstr "导出地图" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club 上传" @@ -2046,6 +2265,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 用户名或密码错误。" @@ -2082,31 +2379,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:4143 msgid "QSO could not be matched" msgstr "QSO 无法匹配" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4149 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4154 msgid "confirmed by award manager" msgstr "已经通过奖项管理员确认" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4157 msgid "confirmed by cross-check of DCL data" msgstr "已经通过 DCL 数据交叉检查确认" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4160 msgid "confirmation pending" msgstr "等待确认" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4163 msgid "unconfirmed" msgstr "未确认" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4166 msgid "unknown" msgstr "未知" @@ -2135,7 +2432,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:220 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2148,7 +2445,7 @@ msgid "Yearly" msgstr "每年" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:225 #: application/views/visitor/index.php:251 msgid "Month" msgstr "月" @@ -2168,25 +2465,25 @@ msgstr "差异" #: 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/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 @@ -2207,26 +2504,29 @@ msgstr "差异" #: 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/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: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/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 +#: 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:177 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:242 +#: application/views/logbookadvanced/index.php:253 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: 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/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2241,7 +2541,7 @@ msgstr "差异" #: 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:170 msgid "All" msgstr "所有" @@ -2280,17 +2580,17 @@ msgid "Period" msgstr "周期" #: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: 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/awards/rac/index.php:104 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 #: application/views/distances/index.php:53 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 @@ -2313,18 +2613,20 @@ msgstr "显示" #: 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/index.php:197 +#: 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/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:206 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2339,22 +2641,23 @@ 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/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 "绘制" @@ -2383,44 +2686,44 @@ 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/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" msgstr "未找到!" -#: application/views/activators/index.php:99 +#: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 #: application/views/adif/import.php:217 #: application/views/awards/pota/index.php:34 @@ -2430,12 +2733,12 @@ msgstr "未找到!" #: 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/csv/index.php:23 application/views/dashboard/index.php:150 #: 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 @@ -2450,19 +2753,19 @@ msgstr "未找到!" #: 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/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/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:507 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/activators/index.php:101 #: application/views/timeline/index.php:121 #: application/views/timeline/index.php:153 #: application/views/timeline/index.php:178 @@ -2472,7 +2775,7 @@ msgstr "数量" msgid "Show QSO's" msgstr "显示 QSO" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "显示地图" @@ -2515,8 +2818,8 @@ msgstr "与 DCL 相比,日志中 DOK 的数据不同" #: 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:544 application/views/eqsl/analysis.php:36 +#: application/views/dashboard/index.php:145 +#: application/views/debug/index.php:545 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 @@ -2529,7 +2832,7 @@ 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 @@ -2557,8 +2860,8 @@ msgstr "日期" #: 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:545 application/views/eqsl/analysis.php:37 +#: application/views/dashboard/index.php:148 +#: application/views/debug/index.php:546 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 @@ -2584,7 +2887,7 @@ msgstr "时间" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: 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 @@ -2618,9 +2921,9 @@ 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:94 +#: application/views/dashboard/index.php:115 +#: application/views/dashboard/index.php:121 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2635,13 +2938,12 @@ 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:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 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/webadif/export.php:34 @@ -2710,6 +3012,8 @@ msgstr "总是在导入时使用登录的呼号作为操作者名称" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "警告" @@ -2718,12 +3022,12 @@ msgid "Ignore Stationcallsign on import" msgstr "导入时忽略台站的呼号" #: application/views/adif/import.php:154 +#, 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/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -2885,7 +3189,8 @@ 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:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -2893,15 +3198,13 @@ msgstr "如用于描述用途的名字。" #: 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:425 +#: application/views/interface_assets/header.php:431 msgid "API Keys" msgstr "API 密钥" @@ -2929,7 +3232,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 "复制到剪贴板" @@ -2940,7 +3243,7 @@ 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/radio/index.php:27 +#: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -2961,7 +3264,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 "说明" @@ -2974,8 +3277,8 @@ 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 @@ -2986,7 +3289,7 @@ 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:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "操作" @@ -3032,8 +3335,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 @@ -3042,12 +3345,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 @@ -3060,10 +3363,10 @@ 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/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" @@ -3105,17 +3408,17 @@ 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/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:215 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3131,11 +3434,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:240 +#: application/views/logbookadvanced/index.php:591 +#: 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:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:231 +#: 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 " @@ -3144,202 +3470,186 @@ 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/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:242 +#: application/views/dashboard/index.php:360 +#: 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/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:238 +#: application/views/dashboard/index.php:354 #: 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/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/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/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/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/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: 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/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:528 #: 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:521 #: 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:87 -#: 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/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/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/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "共确认" @@ -3394,23 +3704,23 @@ 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/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "各个波段" @@ -3602,11 +3912,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 " @@ -3616,7 +3935,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 " @@ -3625,21 +3944,21 @@ 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" @@ -3705,7 +4024,7 @@ msgstr "显示IOTA地图" #: application/views/contesting/index.php:171 #: 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:564 #: 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 @@ -3728,7 +4047,18 @@ 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:251 +#: application/views/logbookadvanced/index.php:594 +#: application/views/logbookadvanced/useroptions.php:94 +#: 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 " @@ -3736,30 +4066,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:101 -#: 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 - 日本世纪城市奖" @@ -3799,7 +4119,7 @@ msgid "Results" msgstr "结果" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 msgid "Number" msgstr "数量" @@ -3810,7 +4130,7 @@ msgid "City" msgstr "城市" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:350 #: application/views/distances/index.php:23 msgid "SAT" msgstr "卫星" @@ -3848,14 +4168,23 @@ 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:158 -#: application/views/station_profile/edit.php:245 +#: 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:303 #: application/views/view_log/qso.php:570 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地图" @@ -3910,7 +4239,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:540 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4014,11 +4343,20 @@ msgstr "表格" msgid "WAB Square" msgstr "WAB分区" -#: application/views/awards/waja/index.php:17 +#: 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." @@ -4026,7 +4364,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 " @@ -4036,20 +4374,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/awards/waja/index.php:154 #: application/views/timeline/index.php:152 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 " @@ -4060,7 +4407,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 " @@ -4072,13 +4419,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地图" @@ -4106,8 +4453,8 @@ 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:152 -#: application/views/station_profile/edit.php:232 +#: 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:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4164,12 +4511,6 @@ msgstr "波段地图" msgid "BandList" msgstr "波段列表" -#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 -#: application/views/qso/index.php:312 -msgid "Radio" -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 @@ -4302,9 +4643,7 @@ 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/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4470,7 +4809,7 @@ msgstr "未找到即将进行的激活。 请稍后再回来查看。" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:606 #: 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 @@ -4506,8 +4845,8 @@ 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/index.php:293 +#: application/views/logbookadvanced/index.php:612 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4535,10 +4874,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:260 +#: application/views/dashboard/index.php:287 +#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:329 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "今天" @@ -4572,7 +4912,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:460 +#: application/views/interface_assets/header.php:466 #: 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 @@ -4627,8 +4967,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "竞赛 在 ADIF 中的名称" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "创建" @@ -4772,14 +5112,14 @@ 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:242 -#: application/views/station_profile/edit.php:314 +#: 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 "间隔" @@ -4829,6 +5169,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 "取消" @@ -4842,79 +5183,79 @@ 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 任务并创建一个新的:" +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 "" -#: 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:77 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:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:81 application/views/cron/index.php:83 +#: application/views/cron/index.php:85 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 msgid "never" msgstr "从不" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:100 msgid "Your Mastercron isn't running." msgstr "Cron 主任务未运行。" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:101 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:102 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:109 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4938,7 +5279,7 @@ 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/logbookadvanced/index.php:219 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4946,7 +5287,7 @@ 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/logbookadvanced/index.php:220 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4954,7 +5295,7 @@ 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/logbookadvanced/index.php:221 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4962,7 +5303,7 @@ 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/logbookadvanced/index.php:222 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4970,7 +5311,7 @@ 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/logbookadvanced/index.php:223 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4978,7 +5319,7 @@ 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/logbookadvanced/index.php:224 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4986,7 +5327,7 @@ 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/logbookadvanced/index.php:225 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4994,7 +5335,7 @@ 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/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -5002,7 +5343,7 @@ 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/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -5010,7 +5351,7 @@ 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/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -5018,7 +5359,7 @@ 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/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -5026,7 +5367,7 @@ 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/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -5034,7 +5375,7 @@ 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/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -5042,7 +5383,7 @@ 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/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -5050,7 +5391,7 @@ 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/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -5058,15 +5399,15 @@ 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/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" -msgstr "卫星" +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/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -5074,7 +5415,7 @@ 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/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -5096,68 +5437,68 @@ msgstr "您需要升级您的 PHP 版本。 最低版本为 7.4。 你的版本 #: application/views/dashboard/index.php:63 #, 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:71 #, 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 +#: application/views/dashboard/index.php:79 #, 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:88 #, 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:94 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:101 msgid "Attention: you need to set an active station location." msgstr "注意:你需要设置一个活动的电台站地址。" -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:107 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:115 msgid "At least one of your LoTW certificates is expired!" msgstr "至少有一个 LoTW 证书已经过期!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:121 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:211 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSO 分析" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:234 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "DXCC 实体分析" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:251 #: 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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 @@ -5187,10 +5528,10 @@ msgstr "待通联" 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:270 +#: application/views/dashboard/index.php:297 +#: application/views/dashboard/index.php:318 +#: application/views/dashboard/index.php:339 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 @@ -5217,15 +5558,15 @@ msgstr "已发送" 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:276 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:360 +#: 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/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -5247,12 +5588,12 @@ msgstr "已收到" msgid "Requested" msgstr "已请求" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:286 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:349 msgid "VUCC-Grids" msgstr "VUCC 网格" @@ -5340,123 +5681,130 @@ msgstr "数据库迁移出错!" #: application/views/debug/index.php:45 msgid "Migration is outdated and locked!" -msgstr "" +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. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"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 "" +"迁移文件版本不匹配,%s 秒后刷新页面。如此提示持续出现,可能由于上次更新之中出" +"现了错误,请删除 %s 文件,强制重新迁移。" #: application/views/debug/index.php:47 #, php-format -msgid "Current migration is %s" -msgstr "" +msgid "Check this wiki article %shere%s for more information." +msgstr "请查看 %swiki%s 以获得帮助。" #: application/views/debug/index.php:48 #, php-format -msgid "Migration should be %s" -msgstr "" +msgid "Current migration is %s" +msgstr "当前迁移为 %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "迁移应该是 %s" + +#: application/views/debug/index.php:54 msgid "Environment" msgstr "环境" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "本站 QSO 总数量" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "服务器信息" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "服务器软件" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "PHP版本" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "已废弃" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "MySQL版本" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Codeigniter 版本" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "文件夹权限" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "这验证了Wavelog使用的文件夹是否具有PHP的读写权限。" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: 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:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: 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:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "维护配置" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "您的认证方式已过时,可能存在风险隐患" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "请编辑您的%s文件:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" "请前往 application/config 文件夹,根据 config.sample.php 修改成 config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "将%s改为%s(强烈建议)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "认证方式设置正确" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "好的" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "你使用了默认加密密钥。请修改它!" -#: application/views/debug/index.php:194 -msgid "This will also enable the 'Keep me logged in' feature." -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 " @@ -5465,224 +5813,243 @@ msgstr "" "将 %s 的值改为新的加密密钥,而非 “flossie1234555541”,选择一个安全的长密码。" "(强烈建议)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "你没有使用默认加密密钥" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "迁移用户数据" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "您可以在此将现有的QSL卡和eQSL卡迁移到新的用户数据文件夹。" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "模块" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: 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:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: 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:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "设置" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Git信息" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "分支" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: 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:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "标签" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "上次抓取" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "检查新版本" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "现在升级" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "文件下载日期" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "文件" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "上次更新" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "DXCC 更新(ClubLog)" -#: 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/station_profile/edit.php:22 +#: 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:498 +#: application/views/debug/index.php:499 msgid "DOK file download" -msgstr "下载DOK文件" +msgstr "下载 DOK 文件" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" -msgstr "下载LoTW用户" +msgstr "下载 LoTW 用户状态" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" -msgstr "下载POTA文件" +msgstr "下载 POTA 文件" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" -msgstr "下载SCP文件" +msgstr "下载 SCP 文件" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" -msgstr "下载SOTA文件" +msgstr "下载 SOTA 文件" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" -msgstr "下载WWFF文件" +msgstr "下载 WWFF 文件" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "QSO-DB 维护" -#: application/views/debug/index.php:536 +#: 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] "数据库中共有%d个没有台站信息(位置)的QSO" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 -#: 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" msgstr "电台呼号" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "请标记 QSO 并将其重新分配到现有的电台位置:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "目标位置" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "重新分配" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" -msgstr "数据库中的每个 QSO 都分配给一个台站" +msgstr "数据库中的所有 QSO 都有台站相关联" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "一切正常" -#: application/views/debug/index.php:628 +#: 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:629 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "简体中文" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "克罗地亚语" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "捷克语" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "荷兰语" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:636 msgid "English" msgstr "英语" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "芬兰语" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:638 msgid "French" msgstr "法语" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:639 msgid "German" msgstr "德语" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "希腊语" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "意大利语" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "黑山语" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "波兰语" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "葡萄牙语" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "俄语" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "塞尔维亚语" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "西班牙语" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "瑞典语" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "土耳其语" @@ -5693,8 +6060,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" @@ -5911,6 +6279,10 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5918,8 +6290,8 @@ 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/index.php:215 +#: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "传播方式" @@ -6034,46 +6406,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/interface_assets/footer.php:46 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/visitor/layout/footer.php:245 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 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:428 +#: 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 "" + +#: 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:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "版本信息" -#: application/views/interface_assets/footer.php:672 +#: 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 "导出 ADIF" + +#: 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 " @@ -6082,20 +6525,78 @@ msgstr "" "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽" "略该警告。" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:511 +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 "请前往 %s这里%s 登录" + +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "总数" +#: application/views/interface_assets/footer.php:2111 +msgid "QSL Card for " +msgstr "QSL 卡片至 " + +#: application/views/interface_assets/footer.php:2131 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "警告!确定要删除这个 QSL 卡片吗?" + +#: application/views/interface_assets/footer.php:2171 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "电子 QSL 卡片" + +#: application/views/interface_assets/footer.php:2173 +msgid "eQSL Card for " +msgstr "eQSL 卡片至 " + +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "QSL 图片文件" + +#: application/views/interface_assets/footer.php:2365 +msgid "Front QSL Card:" +msgstr "QSL 卡片正面:" + +#: application/views/interface_assets/footer.php:2403 +msgid "Back QSL Card:" +msgstr "QSL 卡片背面:" + +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 +msgid "Add additional QSOs to a QSL Card" +msgstr "向一张卡片添加额外的 QSO" + +#: application/views/interface_assets/footer.php:2450 +msgid "Something went wrong. Please try again!" +msgstr "出现了错误,请重试!" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "开发者模式" @@ -6212,19 +6713,27 @@ msgstr "波段地图" msgid "SAT Timers" msgstr "卫星过境时钟" -#: application/views/interface_assets/header.php:259 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:256 +msgid "Satellite Flightpath" +msgstr "卫星轨迹" + +#: application/views/interface_assets/header.php:258 +msgid "Satellite Pass" +msgstr "卫星过境" + +#: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "管理员" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:270 msgid "Global Options" msgstr "全局选项" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:276 #: 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 @@ -6232,79 +6741,79 @@ msgstr "全局选项" msgid "Satellites" msgstr "卫星" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:282 msgid "Update Country Files" msgstr "更新国家文件" -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:286 msgid "Debug Information" msgstr "调试信息" -#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" msgstr "添加/搜索 呼号" -#: application/views/interface_assets/header.php:329 +#: application/views/interface_assets/header.php:335 msgid "Log" msgstr "日志" -#: application/views/interface_assets/header.php:336 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:342 +#: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" msgstr "查询呼号" -#: application/views/interface_assets/header.php:365 +#: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" msgstr "账户信息" -#: application/views/interface_assets/header.php:380 +#: application/views/interface_assets/header.php:386 msgid "Other Export Options" msgstr "其它导出选项" -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" msgstr "Cabrillo 导出" -#: application/views/interface_assets/header.php:412 +#: application/views/interface_assets/header.php:418 msgid "QSL Queue" msgstr "QSL 队列" -#: application/views/interface_assets/header.php:413 +#: application/views/interface_assets/header.php:419 msgid "Labels" msgstr "标签" -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:421 msgid "Third-Party Services" msgstr "第三方服务" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" msgstr "eQSL 导入/导出" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" msgstr "HRDLog 日志簿" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:435 msgid "Help" msgstr "帮助" -#: application/views/interface_assets/header.php:430 +#: application/views/interface_assets/header.php:436 msgid "Forum" msgstr "论坛" -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Logout" msgstr "注销" -#: application/views/interface_assets/header.php:440 +#: application/views/interface_assets/header.php:446 msgid "Select a Location" msgstr "选择电台站位置" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:525 msgid "Extras" msgstr "额外" @@ -6575,8 +7084,8 @@ 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:410 +#: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL Via" @@ -6597,44 +7106,75 @@ msgstr "卫星模式" msgid "Band RX" msgstr "接收频段" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:158 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "网格" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "路径" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "CQ 分区" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "ITU 分区" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "夜晚阴影" + +#: application/views/logbookadvanced/index.php:138 msgid "From" msgstr "开始日期" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:142 msgid "To" msgstr "截止日期" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:146 +#: application/views/logbookadvanced/index.php:546 #: 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:153 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:218 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "无/空" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:302 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:305 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: 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:417 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:394 #: application/views/qso/edit_ajax.php:427 @@ -6643,18 +7183,18 @@ msgstr "QSL 发送" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 -#: 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: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 @@ -6664,15 +7204,15 @@ 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:306 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: 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:418 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6681,18 +7221,18 @@ msgstr "是" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 -#: 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: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 @@ -6703,10 +7243,10 @@ 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:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6721,14 +7261,14 @@ msgstr "否" 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:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: 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/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6755,23 +7295,23 @@ msgstr "已排队" msgid "Invalid (Ignore)" msgstr "无效(忽略)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:313 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:320 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 msgid "Verified" msgstr "已验证" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" msgstr "QSL 发送方式" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:337 #: 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 @@ -6790,8 +7330,8 @@ msgstr "QSL 发送方式" msgid "Bureau" msgstr "卡片局" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:338 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6808,8 +7348,8 @@ msgstr "卡片局" msgid "Direct" msgstr "直邮" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:339 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6826,8 +7366,8 @@ msgstr "直邮" msgid "Electronic" msgstr "电子" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:340 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:410 @@ -6837,221 +7377,207 @@ msgstr "电子" msgid "Manager" msgstr "管理员" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" msgstr "QSL 接收方式" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" msgstr "LoTW 发送" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:355 msgid "LoTW received" msgstr "LoTW 接收" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" msgstr "Clublog 已发送" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:377 msgid "Clublog received" msgstr "Clublog 已收到" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" msgstr "eQSL 发送" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:399 msgid "eQSL received" msgstr "eQSL 接收" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:414 msgid "QSL Images" msgstr "QSL 图片" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:426 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:429 msgid "With selected: " msgstr "用选中行进行: " -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" msgstr "从历史日志补全信息" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" msgstr "卡片局队列" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" msgstr "直邮卡片队列" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" msgstr "电子卡片队列" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" msgstr "已发送(卡片局)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" msgstr "已发送(直邮)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" msgstr "已发送(电子)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:437 msgid "Not Sent" msgstr "未发送" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" msgstr "未获取 QSL" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:439 msgid "Not Received" msgstr "未收到" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" msgstr "已接收(卡片局)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" msgstr "已接收(直邮)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" msgstr "已接收(电子)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" msgstr "创建 ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:444 msgid "Print Label" msgstr "打印标签" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" msgstr "QSL 展示窗" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " msgstr "用选中行的条件进行快速搜索: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" msgstr "搜索 DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:458 msgid "Search State" msgstr "搜索 州/省" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" msgstr "搜索 网格" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" msgstr "搜索 CQ 分区" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" msgstr "搜索 ITU 分区" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:470 msgid "Search Mode" msgstr "搜索 模式" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:473 msgid "Search Band" msgstr "搜索 频段" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" msgstr "搜索 IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" msgstr "搜索 SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:482 msgid "Search POTA" msgstr "搜索 POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" msgstr "搜索 WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:488 msgid "Search Operator" msgstr "搜索操作符" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" msgstr "快速过滤" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" msgstr "过滤 QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" msgstr "过滤器" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "每页结果数" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:505 #: 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:517 msgid "Dupes" -msgstr "重复 QSO" +msgstr "重复的 QSO" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:524 msgid "Globe map" msgstr "全球地图" -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 -#: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 -#: application/views/stationsetup/exportmapoptions.php:5 -#: application/views/statistics/custom.php:31 -#: application/views/statistics/custom_result.php:33 -msgid "Options" -msgstr "设置" - -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:543 #: 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:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "QSL 信息" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "电台网格" @@ -7088,32 +7614,6 @@ msgstr "层" 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 "美国州" @@ -7215,58 +7715,58 @@ 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/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 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: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 "手动同步" @@ -7781,7 +8281,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 "电子邮件" @@ -8106,35 +8606,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" @@ -8254,7 +8739,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:690 msgid "Previous Contacts" msgstr "先前通联" @@ -8295,16 +8780,16 @@ 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:130 -#: application/views/station_profile/edit.php:191 +#: 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:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "IOTA 编号" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 -#: application/views/station_profile/edit.php:219 +#: 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:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8368,15 +8853,19 @@ msgstr "Winkey" msgid "Connect" msgstr "连接" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "建议" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "操作员照片" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "最多五次先前通联将会被显示" @@ -8394,15 +8883,19 @@ msgid "" "keys." msgstr "如果您尚未配置电台,请查看 API 页面来生成 API Key。" -#: application/views/radio/index.php:27 application/views/search/filter.php:69 +#: 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 "您可以在 Wiki 上查看使用说明 %s。" -#: application/views/radio/index.php:27 +#: application/views/radio/index.php:22 msgid "radio functions" msgstr "电台功能" +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "请稍等…" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8488,6 +8981,75 @@ msgstr "添加卫星模式" 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 "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 msgid "" @@ -8508,10 +9070,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 @@ -8561,26 +9119,14 @@ msgstr "全部 CQ 分区填写正确。" msgid "Save query" msgstr "保存查询" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "编辑查询" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "存储的查询" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "执行查询" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "搜索过滤器功能" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "导出 ADIF" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "搜索结果" @@ -8811,10 +9357,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" @@ -8833,9 +9378,9 @@ 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" +#, 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 msgid "Reload QSO List" @@ -8917,122 +9462,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:32 -#: 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:33 -#: application/views/station_profile/create.php:34 -#: 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:34 -#: 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:40 -#: 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:44 -#: 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:46 -#: 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:49 -#: 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:52 -#: 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:59 -#: 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:64 -#: 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:66 -#: 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:75 -#: 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:80 -#: 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:82 -#: 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:97 -#: 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:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 -#: 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:111 -#: 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:116 -#: 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:121 -#: 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:125 -#: 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 "" @@ -9040,59 +9584,59 @@ msgid "" "then %s!" msgstr "台站的网格,如 HM54AP,如果不知道自己的网格,在这里查询 %s!" -#: application/views/station_profile/create.php:126 -#: 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:141 -#: 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:142 -#: 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:142 -#: 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:148 -#: 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:148 -#: 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:154 -#: 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:154 -#: 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:160 -#: 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:160 -#: 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 " @@ -9100,56 +9644,56 @@ msgid "" msgstr "" "台站的 POTA 标识符,可以使用多个值(逗号分隔),可在 %s 查看 POTA 目录。" -#: application/views/station_profile/create.php:164 -#: 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:166 -#: 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:170 -#: 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:172 -#: 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:176 -#: 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:178 -#: 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:182 -#: 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:185 -#: 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:188 -#: 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:193 -#: 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 " @@ -9158,191 +9702,136 @@ msgstr "" "如启用,台站下的 QSO 不会上传至 Clublog。如这个选项自动关闭了,请查看 " "Clublog 上的呼号是否配置正确" -#: application/views/station_profile/create.php:196 -#: 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:205 -#: 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:207 -#: 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:210 -#: 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:212 -#: 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:212 -#: 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:215 -#: 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:224 -#: 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:229 +#: 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:232 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Test API-Key" -#: application/views/station_profile/create.php:235 -#: 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:235 -#: 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:238 -#: 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:241 -#: 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:249 -#: 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:251 -#: 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:251 -#: 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:254 -#: 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:264 -#: 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:271 -#: 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:276 -#: 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:279 -#: 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:281 -#: 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 "台站日志名称" @@ -9390,6 +9879,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 "取消链接的台站位置" @@ -9401,8 +9895,8 @@ msgid "" "analytics. Great for when your operating in multiple locations but they are " "part of the same DXCC or VUCC Circle." msgstr "" -"台站日志可以让您对日志进行分组,如您的电台想在多个 DXCC 或 VUCC 下通联,您可" -"让一个日志关联到多个不同的台站地址。" +"使用多个日志簿可以对日志进行分组管理,例如您的电台想在多个 DXCC 或 VUCC 下通" +"联。您可让一个日志簿关联到多个不同的台站地址。" #: application/views/stationsetup/stationsetup.php:32 msgid "Linked locations" @@ -9416,11 +9910,53 @@ 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 "上方的已启用日志,会显示在关联的台站地址的 '已绑定' 栏中。" +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" @@ -9643,12 +10179,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" @@ -9732,7 +10269,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "检查缺失 DXCC 数据的 QSO" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "重新检查所有 QSO" @@ -9758,6 +10295,15 @@ msgstr "您可在此更新缺失距离信息的 QSO。" msgid "Update distance data" msgstr "更新距离数据" +#: application/views/update/index.php:61 +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 "删除用户账户" @@ -9787,13 +10333,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 @@ -9836,10 +10382,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 "日期格式" @@ -9913,7 +10455,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 @@ -10179,6 +10721,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 "请稍等…" + +#: 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 "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "维护模式" @@ -10193,100 +10855,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 "等级" @@ -10336,10 +10915,6 @@ msgstr "QSO 详情" msgid "QSL Management" msgstr "QSL 管理" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "电子 QSL 卡片" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "总计距离" @@ -10411,10 +10986,6 @@ msgstr "更多 QSO" msgid "Details" msgstr "详细" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "QSL 图片文件" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "上传 QSL 卡片正面图像" @@ -10443,7 +11014,7 @@ msgstr "标记 已请求卡片(直邮)" msgid "eQSL picture" msgstr "eQSL 图片" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:241 msgid "CSV" msgstr "CSV" @@ -10546,6 +11117,99 @@ msgstr "您的呼号:" msgid "Submit Request" 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 "您没有台站位置。单击%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 " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "当前的迁移版本不正确。请重新加载此页面。如果警告仍然存在,可能是由于之前的" +#~ "失败进程导致迁移被锁定。请检查文件夹%s中的%s文件并删除该文件以强制迁移重新" +#~ "运行。" + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" 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/208_tag_1_7.php b/application/migrations/208_tag_1_7.php index 492456ce1..93d433d3b 100644 --- a/application/migrations/208_tag_1_7.php +++ b/application/migrations/208_tag_1_7.php @@ -35,8 +35,5 @@ class Migration_tag_1_7 extends CI_Migration { { $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '1.6.1')); - - // Revert the DB adjustment - $this->db->query("ALTER TABLE ".$this->config->item('table_name')." MODIFY COLUMN `COL_QTH` VARCHAR(64) DEFAULT NULL;"); } } 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/212_tag_1_8_1.php b/application/migrations/212_tag_1_8_1.php new file mode 100644 index 000000000..2ca2b3a1c --- /dev/null +++ b/application/migrations/212_tag_1_8_1.php @@ -0,0 +1,40 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.1')); + + // 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')); + + // small DB adjustment in this release to save mig versions + // see: https://github.com/wavelog/wavelog/issues/698 + $this->db->query("ALTER TABLE ".$this->config->item('table_name')." MODIFY COLUMN `COL_POTA_REF` VARCHAR(128) DEFAULT NULL;"); + $this->db->query("ALTER TABLE ".$this->config->item('table_name')." MODIFY COLUMN `COL_MY_POTA_REF` VARCHAR(128) DEFAULT NULL;"); + + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8')); + } +} diff --git a/application/migrations/213_tag_1_8_2.php b/application/migrations/213_tag_1_8_2.php new file mode 100644 index 000000000..b69333d88 --- /dev/null +++ b/application/migrations/213_tag_1_8_2.php @@ -0,0 +1,35 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.2')); + + // 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.1')); + } +} diff --git a/application/migrations/214_tle_table.php b/application/migrations/214_tle_table.php new file mode 100644 index 000000000..57b00c2c5 --- /dev/null +++ b/application/migrations/214_tle_table.php @@ -0,0 +1,55 @@ +db->table_exists('tle')) { + + $this->dbforge->add_field(array( + 'id' => array( + 'type' => 'INT', + 'constraint' => 6, + 'unsigned' => TRUE, + 'auto_increment' => TRUE, + 'null' => FALSE + ), + 'satelliteid' => array( + 'type' => 'INT', + 'constraint' => '6', + 'unsigned' => TRUE, + 'null' => FALSE, + ), + 'tle' => array( + 'type' => 'TEXT', + 'null' => TRUE, + ), + 'updated' => array( + 'type' => 'timestamp', + 'null' => false, + 'default' => 'CURRENT_TIMESTAMP' + ), + )); + $this->dbforge->add_key('id', TRUE); + + $this->dbforge->create_table('tle'); + + $this->db->query("INSERT INTO tle (satelliteid, tle) select id, '1 53106U 22080B 24108.26757684 -.00000003 00000-0 00000-0 0 9991 +2 53106 70.1428 213.6795 0007982 119.5170 240.6286 6.42557181 41352' from satellite where name = 'IO-117'"); + + $this->db->query("INSERT INTO tle (satelliteid, tle) select id, '1 43700U 18090A 24108.89503844 .00000137 00000-0 00000-0 0 9999 +2 43700 0.0157 247.0647 0001348 170.1236 137.3539 1.00275203 19758' from satellite where name = 'QO-100'"); + + $this->db->query("INSERT INTO tle (satelliteid, tle) select id, '1 27607U 02058C 24108.20375939 .00004950 00000+0 68675-3 0 9992 +2 27607 64.5563 48.9470 0031938 141.6898 218.6483 14.78629101147515' from satellite where name = 'SO-50'"); + + } + } + + public function down() + { + $this->dbforge->drop_table('tle'); + } +} diff --git a/application/models/Accumulate_model.php b/application/models/Accumulate_model.php index 46a3102dd..76e5667e4 100644 --- a/application/models/Accumulate_model.php +++ b/application/models/Accumulate_model.php @@ -38,110 +38,121 @@ class Accumulate_model extends CI_Model 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, $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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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_dxcc = x.col_dxcc"; + $sql .= " and col_dxcc = x.col_dxcc"; - 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; + } + } - 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 thcv.col_dxcc > 0"; + $sql .= " where thcv.col_dxcc > 0"; - 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; + } + } - 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 . ")"; + $sql .= " and station_id in (" . $location_list . ")"; - 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 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; @@ -151,6 +162,7 @@ class Accumulate_model extends CI_Model } function get_accumulated_waja($band, $mode, $period, $location_list) { + $binding=[]; if ($period == "year") { $sql = "select year(thcv.col_time_on) year"; } else if ($period == "month") { @@ -175,15 +187,19 @@ class Accumulate_model extends CI_Model 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; } } 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,'')) != ''"; @@ -202,15 +218,19 @@ class Accumulate_model extends CI_Model 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; } } 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')"; @@ -229,15 +249,19 @@ class Accumulate_model extends CI_Model 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; } } 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,315 +272,351 @@ 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, $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 ($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; + } + } - 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 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 .= " 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 .= " 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_state = x.col_state"; + $sql .= " and col_state = x.col_state"; - 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; + } + } - 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 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 .= " 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 .= " 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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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_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, $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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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, $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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - 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) { @@ -565,188 +625,210 @@ class Accumulate_model extends CI_Model $sql = ""; if ($dbversion[0] >= "8") { - $sql = $this->fastquery($band, $mode, $period, $location_list); - $query = $this->db->query($sql); + $query = $this->fastquery($band, $mode, $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, $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, $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 ($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; + } + } - 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 .= " 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"; - } + $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"; + } - $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 .= " 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 ($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; + } + } - 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 .= " GROUP BY 1) as z + $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, $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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[]=$band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[]=$band; + } + } - 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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[]=$band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[]=$band; + } + } - 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 != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[]=$band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[]=$band; + } + } - 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 ecc74c5fb..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; @@ -105,8 +105,13 @@ } function radio_status($id) { - $sql = 'SELECT * FROM `cat` WHERE id = ' . $id . ' and user_id =' . $this->session->userdata('user_id'); - return $this->db->query($sql); + $sql = 'SELECT * FROM `cat` WHERE id = ? AND user_id = ?'; + return $this->db->query($sql, array($id, $this->session->userdata('user_id'))); + } + + function last_updated() { + $sql = 'SELECT * FROM cat WHERE user_id = ? ORDER BY timestamp DESC LIMIT 1'; + return $this->db->query($sql, $this->session->userdata('user_id')); } function delete($id) { diff --git a/application/models/Eqslmethods_model.php b/application/models/Eqslmethods_model.php index 5e9030d63..a1e89d39d 100644 --- a/application/models/Eqslmethods_model.php +++ b/application/models/Eqslmethods_model.php @@ -41,7 +41,7 @@ class Eqslmethods_model extends CI_Model { function uploadUser($userid, $username, $password) { $data['user_eqsl_name'] = $this->security->xss_clean($username); - $data['user_eqsl_password'] = $this->security->xss_clean($password); + $data['user_eqsl_password'] = html_entity_decode($this->security->xss_clean($password)); $clean_userid = $this->security->xss_clean($userid); $qslsnotsent = $this->eqsl_not_yet_sent($clean_userid); 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..988212bf3 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,11 +191,14 @@ 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(); @@ -203,7 +210,9 @@ class helvetia_model extends CI_Model { " 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); @@ -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,11 +233,14 @@ 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(); @@ -237,7 +249,7 @@ class helvetia_model extends CI_Model { $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..7bfd435fa 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,12 +60,16 @@ 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); @@ -85,19 +81,23 @@ 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); @@ -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,34 +128,42 @@ 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']); @@ -172,24 +173,30 @@ class IOTA extends CI_Model { } 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) { @@ -201,7 +208,7 @@ class IOTA extends CI_Model { $sql .= $this->genfunctions->addBandToQuery($postdata['band']); $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/Logbook_model.php b/application/models/Logbook_model.php index d64701ae1..f17c8c482 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -407,242 +407,223 @@ class Logbook_model extends CI_Model { /* * 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 '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'); @@ -1726,46 +1707,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 +1815,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 +1843,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 +1972,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 +2217,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 +2293,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 +2420,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 +2479,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 +3208,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 +3250,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 +3321,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 +3339,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 +3362,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); @@ -4675,14 +4670,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/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/Satellite_model.php b/application/models/Satellite_model.php index 7f0c4f770..a566e5dc1 100644 --- a/application/models/Satellite_model.php +++ b/application/models/Satellite_model.php @@ -11,6 +11,16 @@ class Satellite_model extends CI_Model { return $this->db->query($sql)->result(); } + function get_all_satellites_with_tle() { + $sql = "select satellite.id, satellite.name as satname, tle.tle + from satellite + join tle on satellite.id = tle.satelliteid + order by satellite.name + "; + + return $this->db->query($sql)->result(); + } + function delete($id) { // Clean ID $clean_id = $this->security->xss_clean($id); @@ -102,19 +112,27 @@ class Satellite_model extends CI_Model { return $query->result(); } - function array_group_by($flds, $arr) { - $groups = array(); - foreach ($arr as $rec) { - $keys = array_map(function($f) use($rec) { return $rec[$f]; }, $flds); - $k = implode('@', $keys); - if (isset($groups[$k])) { - $groups[$k][] = $rec; - } else { - $groups[$k] = array($rec); - } - } - return $groups; - } + function array_group_by($flds, $arr) { + $groups = array(); + foreach ($arr as $rec) { + $keys = array_map(function($f) use($rec) { return $rec[$f]; }, $flds); + $k = implode('@', $keys); + if (isset($groups[$k])) { + $groups[$k][] = $rec; + } else { + $groups[$k] = array($rec); + } + } + return $groups; + } + + function get_tle($sat) { + $this->db->select('satellite.name AS satellite, tle.tle'); + $this->db->join('tle', 'satellite.id = tle.satelliteid'); + $this->db->where('name', $sat); + $query = $this->db->get('satellite'); + return $query->row(); + } } diff --git a/application/models/Timeline_model.php b/application/models/Timeline_model.php index fb92cd1a5..c8c41326c 100644 --- a/application/models/Timeline_model.php +++ b/application/models/Timeline_model.php @@ -4,9 +4,8 @@ if (!defined('BASEPATH')) exit('No direct script access allowed'); class Timeline_model extends CI_Model { function get_timeline($band, $mode, $award, $qsl, $lotw, $eqsl) { - $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; @@ -27,6 +26,7 @@ class Timeline_model extends CI_Model } public function get_timeline_dxcc($band, $mode, $location_list, $qsl, $lotw, $eqsl) { + $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 @@ -34,16 +34,19 @@ class Timeline_model extends CI_Model 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; } } if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; + $sql .= " and col_mode = ?"; + $binding[] = $mode; } $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); @@ -51,28 +54,32 @@ class Timeline_model extends CI_Model $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(); } public function get_timeline_waja($band, $mode, $location_list, $qsl, $lotw, $eqsl) { + $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 . "'"; + $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; } } if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; + $sql .= " and col_mode = ?"; + $binding[] = $mode; } $sql .= " and COL_DXCC = '339' and trim(coalesce(COL_STATE,'')) != '' "; @@ -82,28 +89,32 @@ class Timeline_model extends CI_Model $sql .= " group by col_state order by date desc"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } public function get_timeline_was($band, $mode, $location_list, $qsl, $lotw, $eqsl) { + $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 . "'"; + $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; } } if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; + $sql .= " and col_mode = ?"; + $binding[] = $mode; } $sql .= " and COL_DXCC in ('291', '6', '110')"; @@ -114,12 +125,13 @@ class Timeline_model extends CI_Model $sql .= " group by col_state order by date desc"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } public function get_timeline_iota($band, $mode, $location_list, $qsl, $lotw, $eqsl) { + $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 @@ -127,16 +139,19 @@ class Timeline_model extends CI_Model 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; } } if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; + $sql .= " and col_mode = ?"; + $binding[] = $mode; } $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); @@ -144,28 +159,32 @@ class Timeline_model extends CI_Model $sql .= " and col_iota <> '' group by col_iota, name, prefix order by date desc"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } public function get_timeline_waz($band, $mode, $location_list, $qsl, $lotw, $eqsl) { + $binding = []; $sql = "select min(date(COL_TIME_ON)) date, col_cqz 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 . "'"; + $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; } } if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; + $sql .= " and col_mode = ?"; + $binding[] = $mode; } $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); @@ -173,12 +192,12 @@ class Timeline_model extends CI_Model $sql .= " and col_cqz <> '' group by col_cqz order by date desc"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } - + // Adds confirmation to query function addQslToQuery($qsl, $lotw, $eqsl) { $sql = ''; @@ -212,41 +231,9 @@ class Timeline_model extends CI_Model 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')); + $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'); @@ -290,9 +277,9 @@ class Timeline_model extends CI_Model '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) { @@ -312,23 +299,26 @@ class Timeline_model extends CI_Model } public function get_gridsquare($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - // $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from " + $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 . ")"; 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; } } if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; + $sql .= " and col_mode = ?"; + $binding[] = $mode; } $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); @@ -336,38 +326,41 @@ class Timeline_model extends CI_Model $sql .= " and col_gridsquare <> '' group by upper(substring(col_gridsquare, 1, 4)) order by date desc"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } public function get_vucc_grids($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - // $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from " + $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 . ")"; 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; } } if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; + $sql .= " and col_mode = ?"; + $binding[] = $mode; } $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); $sql .= " and col_vucc_grids <> ''"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } - + } diff --git a/application/models/User_model.php b/application/models/User_model.php index 4e3f0af46..68bce1205 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -305,11 +305,14 @@ class User_Model extends CI_Model { // Hash password if($fields['user_password'] != NULL) { - if ($fields['user_password'] !== $pwd_placeholder) { - $decoded_password = htmlspecialchars_decode($fields['user_password']); - $data['user_password'] = $this->_hash($decoded_password); - if($data['user_password'] == EPASSWORDINVALID) { - return EPASSWORDINVALID; + if (!file_exists('.demo') || (file_exists('.demo') && $this->session->userdata('user_type') == 99)) { + + if ($fields['user_password'] !== $pwd_placeholder) { + $decoded_password = htmlspecialchars_decode($fields['user_password']); + $data['user_password'] = $this->_hash($decoded_password); + if($data['user_password'] == EPASSWORDINVALID) { + return EPASSWORDINVALID; + } } } } @@ -409,7 +412,7 @@ class User_Model extends CI_Model { if ($u == null) { $u = $this->get_by_id($id); } - + $userdata = array( 'user_id' => $u->row()->user_id, 'user_name' => $u->row()->user_name, @@ -422,7 +425,7 @@ class User_Model extends CI_Model { 'user_eqsl_name' => $u->row()->user_eqsl_name, 'user_eqsl_qth_nickname' => $u->row()->user_eqsl_qth_nickname, 'user_hash' => $this->_hash($u->row()->user_id."-".$u->row()->user_type), - 'radio' => $this->session->userdata('radio') ?? '', + 'radio' => ((($this->session->userdata('radio') ?? '') == '') ? $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? '' : $this->session->userdata('radio')), 'station_profile_id' => $this->session->userdata('station_profile_id') ?? '', 'user_measurement_base' => $u->row()->user_measurement_base, 'user_date_format' => $u->row()->user_date_format, @@ -451,14 +454,16 @@ class User_Model extends CI_Model { 'isWinkeyEnabled' => $u->row()->winkey, 'hasQrzKey' => $this->hasQrzKey($u->row()->user_id) ); - + 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']; } } - + $this->session->set_userdata($userdata); } @@ -556,16 +561,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/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..92912a6c0 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 = '';
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..4421e07ed 100644 --- a/application/views/adif/import.php +++ b/application/views/adif/import.php @@ -151,7 +151,7 @@
-
all QSO's of the ADIF, regardless if they match to the chosen station-location.") ?>
+
', ''); ?>
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 @@ +
+ +
+ +

+ +
+ + + + + + + +
+ +
+
+
diff --git a/application/views/satellite/pass.php b/application/views/satellite/pass.php new file mode 100644 index 000000000..74a5cdfa8 --- /dev/null +++ b/application/views/satellite/pass.php @@ -0,0 +1,511 @@ +
+

+
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+
+ + +
+ +
+ +
+
+ +
+
+
+ diff --git a/application/views/satellite/passtable.php b/application/views/satellite/passtable.php new file mode 100644 index 000000000..78b9a916a --- /dev/null +++ b/application/views/satellite/passtable.php @@ -0,0 +1,47 @@ + +
+ + + + + + + + + + '; + foreach ($filtered as $pass) { + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + } + echo '
' . $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) . '
RadioFrequencyModeTimestampOptions" . __("Radio") . "" . __("Frequency") . "" . __("Mode") . "" . __("Timestamp") . "" . __("Options") . "
".$row->radio."" . $row->radio . "- / -".$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) . "N/A".$row->mode."" . $row->mode . "".$row->mode_rx." / ".$row->mode."" . $row->mode_rx . " / " . $row->mode . "".date('H:i:s d-m-y', $phpdate)."id."\" class=\"btn btn-sm btn-danger\"> Delete" . date($custom_date_format . ' H:i:s', $phpdate) . "' . __("last updated") . 'id . "\" class=\"btn btn-sm btn-danger\"> " . __("Delete") . "
No CAT Interfaced radios found.
" . __("No CAT interfaced radios found.") . "
' . __("Satellite") . '' . __("AOS Time") . '' . __("Duration") . '' . __("AOS Az") . '' . __("AOS El") . '' . __("Max El") . '' . __("LOS Time") . '' . __("LOS Az") . '' . __("LOS El") . '
' . $pass->satname . '' . Predict_Time::daynum2readable($pass->visible_aos, $zone, $format) . '' . returntimediff(Predict_Time::daynum2readable($pass->visible_aos, $zone, $format), Predict_Time::daynum2readable($pass->visible_los, $zone, $format), $format) . '' . round($pass->visible_aos_az) . ' (' . azDegreesToDirection($pass->visible_aos_az) . ')' . round($pass->visible_aos_el) . '' . round($pass->max_el) . '' . Predict_Time::daynum2readable($pass->visible_los, $zone, $format) . '' . round($pass->visible_los_az) . ' (' . azDegreesToDirection($pass->visible_los_az) . ')' . round($pass->visible_los_el) . '
'; +} + +function returntimediff($start, $end, $format) { + $datetime1 = DateTime::createFromFormat($format, $end); + $datetime2 = DateTime::createFromFormat($format, $start); + $interval = $datetime1->diff($datetime2); + + $minutesDifference = ($interval->days * 24 * 60) + ($interval->h * 60) + $interval->i + ($interval->s / 60); + + return round($minutesDifference) . ' min'; +} + +function azDegreesToDirection($az = 0) { + $i = floor($az / 22.5); + $m = (22.5 * (2 * $i + 1)) / 2; + $i = ($az >= $m) ? $i + 1 : $i; + + return trim(substr('N NNENE ENEE ESESE SSES SSWSW WSWW WNWNW NNWN ', $i * 3, 3)); +} diff --git a/application/views/search/search_result_ajax.php b/application/views/search/search_result_ajax.php index 1ec06b442..e81a82db7 100644 --- a/application/views/search/search_result_ajax.php +++ b/application/views/search/search_result_ajax.php @@ -63,7 +63,7 @@ function echo_table_col($row, $name) { break; case 'Frequency': $CI =& get_instance(); - if($row->COL_SAT_NAME != null) { echo ''; if ($row->COL_FREQ != null) { echo ' '.$row->COL_SAT_NAME.''; } else { echo $row->COL_SAT_NAME; } echo ''; } else { if ($row->COL_FREQ != null) { echo ' '.$CI->frequency->hz_to_mhz($row->COL_FREQ).''; } else { echo strtolower($row->COL_BAND); } }; + if($row->COL_SAT_NAME != null) { echo ''; if ($row->COL_FREQ != null) { echo ' '.$row->COL_SAT_NAME.''; } else { echo $row->COL_SAT_NAME; } echo ''; } else { if ($row->COL_FREQ != null) { echo ' '.$CI->frequency->qrg_conversion($row->COL_FREQ).''; } else { echo strtolower($row->COL_BAND); } }; break; case 'State': echo ($row->COL_STATE); diff --git a/application/views/simplefle/index.php b/application/views/simplefle/index.php index 4c5757a0a..744bb4e43 100644 --- a/application/views/simplefle/index.php +++ b/application/views/simplefle/index.php @@ -104,7 +104,7 @@ - Station Location"), site_url('station')); ?> + ', ''); ?>
@@ -165,7 +165,7 @@
- SOTA, IOTA, POTA or WWFF"); ?> + ', '', '', '', '', '', '', ''); ?>
diff --git a/application/views/simplefle/syntax_help.php b/application/views/simplefle/syntax_help.php index cff9d2e93..62e770a3c 100644 --- a/application/views/simplefle/syntax_help.php +++ b/application/views/simplefle/syntax_help.php @@ -25,5 +25,5 @@ day ++ df3et -

this article"); ?>

+

', ''); ?>

diff --git a/application/views/station_profile/create.php b/application/views/station_profile/create.php index 676951f65..199f83899 100644 --- a/application/views/station_profile/create.php +++ b/application/views/station_profile/create.php @@ -1,3 +1,29 @@ +
@@ -48,7 +74,7 @@
num_rows() > 0) { ?> - result() as $dxcc) { ?>
-
- +
+
-
+
".__("HRDLog.net Userprofile page").""); ?>
- + + + session->userdata('user_type') !== '99') { echo 'disabled'; } ?> /> ".$username_error.""; } ?>
diff --git a/application/views/user/main.php b/application/views/user/index.php similarity index 59% rename from application/views/user/main.php rename to application/views/user/index.php index 4706ac800..aa8335ca3 100644 --- a/application/views/user/main.php +++ b/application/views/user/index.php @@ -21,7 +21,7 @@
- + @@ -51,6 +51,9 @@ + + + @@ -65,15 +68,15 @@ user_callsign; ?> user_email; ?> config->item('auth_level'); - echo $l[$row->user_type]; ?> - user_type]; ?> + last_seen != null) { // if the user never logged in before the value is null. We can show "never" then. $lastSeenTimestamp = strtotime($row->last_seen); $currentTimestamp = time(); if (($currentTimestamp - $lastSeenTimestamp) < 120) { - echo " " . $row->last_seen . ""; + echo " " . date($custom_date_format . ' H:i:s', $lastSeenTimestamp) . ""; } else { - echo " " . $row->last_seen . ""; + echo " " . date($custom_date_format . ' H:i:s', $lastSeenTimestamp) . ""; } } else { echo __("Never"); @@ -92,14 +95,73 @@ user_id; ?>" class="btn btn-outline-primary btn-sm"> user_id) { + if ($session_uid != $row->user_id) { echo ''; } ?> + user_id) { - echo "user_id . " class=\"btn btn-danger btn-sm\">"; + if ($session_uid != $row->user_id) { ?> + + -
diff --git a/application/views/user/login.php b/application/views/user/login.php index 2bb2271e7..b30bdd982 100644 --- a/application/views/user/login.php +++ b/application/views/user/login.php @@ -57,9 +57,11 @@



: demo
: demo

- Github."), "https://www.github.com/wavelog/wavelog"); ?>

+ ', ''); ?>

- +
form_validation->set_error_delimiters('', ''); ?> diff --git a/application/views/view_log/partial/log_ajax.php b/application/views/view_log/partial/log_ajax.php index 1525af49f..2bdcd47b2 100644 --- a/application/views/view_log/partial/log_ajax.php +++ b/application/views/view_log/partial/log_ajax.php @@ -36,9 +36,9 @@ function echo_table_col($row, $name) { echo '' . ($ci->qra->echoQrbCalcLink($row->station_gridsquare, $row->COL_VUCC_GRIDS, $row->COL_GRIDSQUARE)) . ''; break; case 'Distance':echo '' . ($row->COL_DISTANCE ? $row->COL_DISTANCE . ' km' : '') . ''; break; case 'Band': - echo ''; if($row->COL_SAT_NAME ?? '' != '') { echo ''.$row->COL_SAT_NAME.''; } else { if ($row->COL_FREQ ?? ''!= '') { echo ' '. strtolower($row->COL_BAND ?? '').''; } else { echo strtolower($row->COL_BAND ?? ''); } } echo ''; break; + echo ''; if($row->COL_SAT_NAME ?? '' != '') { echo ''.$row->COL_SAT_NAME.''; } else { if ($row->COL_FREQ ?? ''!= '') { echo ' '. strtolower($row->COL_BAND ?? '').''; } else { echo strtolower($row->COL_BAND ?? ''); } } echo ''; break; case 'Frequency': - echo ''; if($row->COL_SAT_NAME ?? '' != '') { echo ''; if ($row->COL_FREQ != null) { echo ' '.$row->COL_SAT_NAME.''; } else { echo $row->COL_SAT_NAME; } echo ''; } else { if ($row->COL_FREQ != null) { echo ' '.$ci->frequency->hz_to_mhz($row->COL_FREQ).''; } else { echo strtolower($row->COL_BAND); } } echo ''; break; + echo ''; if($row->COL_SAT_NAME ?? '' != '') { echo ''; if ($row->COL_FREQ != null) { echo ' '.$row->COL_SAT_NAME.''; } else { echo $row->COL_SAT_NAME; } echo ''; } else { if ($row->COL_FREQ != null) { echo ' '.$ci->frequency->qrg_conversion($row->COL_FREQ).''; } else { echo strtolower($row->COL_BAND); } } echo ''; break; case 'State': echo '' . ($row->COL_STATE ?? '') . ''; break; case 'Operator':echo '' . ($row->COL_OPERATOR ?? '') . ''; break; case 'Location':echo '' . ($row->station_profile_name ?? '') . ''; break; diff --git a/application/views/view_log/qso.php b/application/views/view_log/qso.php index 213e82df2..f8203a1dd 100644 --- a/application/views/view_log/qso.php +++ b/application/views/view_log/qso.php @@ -91,12 +91,12 @@ config->item('display_freq') == true) { ?> - frequency->hz_to_mhz($row->COL_FREQ); ?> + frequency->qrg_conversion($row->COL_FREQ); ?> COL_FREQ_RX != 0) { ?> - frequency->hz_to_mhz($row->COL_FREQ_RX); ?> + frequency->qrg_conversion($row->COL_FREQ_RX); ?> diff --git a/application/views/visitor/exportmap/footer.php b/application/views/visitor/exportmap/footer.php index 6c53ce6c8..5b5a41ebf 100644 --- a/application/views/visitor/exportmap/footer.php +++ b/application/views/visitor/exportmap/footer.php @@ -16,6 +16,7 @@ var base_url = ""; // Base URL var site_url = ""; // Site URL var icon_dot_url = "assets/images/dot.png"; + var option_map_tile_server_copyright = 'optionslib->get_option('option_map_tile_server_copyright');?>'; diff --git a/application/views/visitor/index.php b/application/views/visitor/index.php index 6978cad2c..ea9ae8b4b 100644 --- a/application/views/visitor/index.php +++ b/application/views/visitor/index.php @@ -107,7 +107,7 @@ function echo_table_col($row, $name) case 'Frequency': echo ''; if ($row->COL_FREQ != null) { - echo $CI->frequency->hz_to_mhz($row->COL_FREQ); + echo $CI->frequency->qrg_conversion($row->COL_FREQ); } else { echo strtolower($row->COL_BAND); } diff --git a/application/views/visitor/layout/footer.php b/application/views/visitor/layout/footer.php index 12638ee7f..badbb5e4d 100644 --- a/application/views/visitor/layout/footer.php +++ b/application/views/visitor/layout/footer.php @@ -18,6 +18,7 @@ var base_url = ""; // Base URL var site_url = ""; // Site URL var icon_dot_url = "assets/images/dot.png"; + var option_map_tile_server_copyright = 'optionslib->get_option('option_map_tile_server_copyright');?>'; @@ -93,7 +94,7 @@ if ($lang_code != 'en' && !file_exists(FCPATH . "assets/json/datatables_language + +
+ + + @@ -56,9 +60,11 @@ - + + + diff --git a/install/index.php b/install/index.php index 785e87ba0..bf3baf43f 100644 --- a/install/index.php +++ b/install/index.php @@ -476,158 +476,14 @@ if (!file_exists('.lock')) {
-
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
- @@ -1033,6 +889,149 @@ if (!file_exists('.lock')) {
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
', + }, + enableFiltering: true, + filterPlaceholder: "", + enableFullValueFiltering: false, + enableCaseInsensitiveFiltering: true, + widthSynchronizationMode: 'always', + numberDisplayed: 1, + inheritClass: true, + buttonWidth: '100%', + maxHeight: 300, + dropUp: false + }); + $('#dxcc_id').hide(); + $('.multiselect-container .multiselect-filter', $('#dxcc_id').parent()).css({ + 'position': 'sticky', + 'margin-top': '3px', + 'top': '0px', + 'z-index': 1, + 'background-color': 'inherit', + 'width': '100%', + 'height': '39px', + 'padding-left': '1px' + }); + + $('#dxcc_id').on('change', function() { + DXCC_Warning(); + }); + DXCC_Warning(); }); function check_for_empty_fields() { @@ -1661,15 +1696,25 @@ if (!file_exists('.lock')) { } + function DXCC_Warning() { + if ($("#dxcc_id option:selected").text().includes("")) { + $('#dxcc_button').addClass('has-warning'); + show_userformwarnings("warning", ""); + } else { + $('#dxcc_button').removeClass('has-warning'); + hide_userformwarnings(); + } + } + function show_userformwarnings(status, message) { - userFormWarnings.css('display', 'block'); + userFormWarnings.show(); userFormWarnings.removeClass('alert-warning alert-danger'); userFormWarnings.addClass('alert-' + status); userFormWarnings.html(message); } function hide_userformwarnings() { - userFormWarnings.css('display', 'none'); + userFormWarnings.hide(); userFormWarnings.removeClass('alert-warning alert-danger'); } @@ -1867,7 +1912,7 @@ if (!file_exists('.lock')) { } if (checklist_firstuser) { - if (passwordField.hasClass('has-warning')) { + if (passwordField.hasClass('has-warning') || $('#dxcc_button').hasClass('has-warning')) { checklistFirstUser.removeClass('fa-times-circle'); checklistFirstUser.removeClass('fa-check-circle'); checklistFirstUser.addClass('fa-exclamation-triangle').css('color', '#ffc107'); @@ -1897,7 +1942,7 @@ if (!file_exists('.lock')) {

danger_triangle -

".implode(',', installer_required_modules()).""; ?>

+

" . implode(',', installer_required_modules()) . ""; ?>

@@ -1910,7 +1955,6 @@ if (!file_exists('.lock')) { - + \ No newline at end of file diff --git a/install/po_gen_installer.sh b/install/po_gen_installer.sh index 5d32206ba..75e3a99fd 100644 --- a/install/po_gen_installer.sh +++ b/install/po_gen_installer.sh @@ -43,9 +43,12 @@ echo " " # Find all PHP files and create a list in a temporary file find $FOLDERS -name "*.php" > PHPFILESLIST +# Generate a new POT file to a temporary file +TEMP_POT_FILE=$(mktemp) + # Run the xgettext command with various options. Do not change these options to keep the POT/PO files consistent in Wavelog xgettext -F \ - -o $POT_FILE \ + -o $TEMP_POT_FILE \ --from-code=UTF-8 \ --keyword=__ \ --keyword=_ngettext:1,2 \ @@ -57,19 +60,30 @@ xgettext -F \ # After the xgettext command, we don't need the temporary file anymore rm PHPFILESLIST -# Let's edit the header of the POT file -sed -i "1s/.*/# $POT_TITLE_TEXT/" "$POT_FILE" -sed -i "2s/.*/# $POT_COPYRIGHT_TEXT/" $POT_FILE -sed -i "3s/.*/# $POT_LICENCE_TEXT/" $POT_FILE -sed -i '4d' $POT_FILE -sed -i '8d' $POT_FILE +# Let's edit the header of the TEMP_POT_FILE +sed -i "1s/.*/# $POT_TITLE_TEXT/" "$TEMP_POT_FILE" +sed -i "2s/.*/# $POT_COPYRIGHT_TEXT/" "$TEMP_POT_FILE" +sed -i "3s/.*/# $POT_LICENCE_TEXT/" "$TEMP_POT_FILE" +sed -i '4d' "$TEMP_POT_FILE" +sed -i '8d' "$TEMP_POT_FILE" + +# Compare the new POT file with the existing one (excluding the POT Creation Date) +if ! diff -I 'POT-Creation-Date' "$TEMP_POT_FILE" "$POT_FILE" >/dev/null; then + echo "Updating POT file with new translations." + echo " " + mv "$TEMP_POT_FILE" "$POT_FILE" +else + echo "No changes detected in translations. POT file remains unchanged." + echo " " + rm "$TEMP_POT_FILE" +fi # Extract the first three lines of the POT file to a temporary file head -n 3 "$POT_FILE" > POT_HEADER # Now we can merge the POT file (PO template) into each found PO file for po in $(find $FOLDERS -name "*.po"); do - msgmerge --update -vv --backup=none --no-fuzzy-matching "$po" $POT_FILE; + msgmerge --update -vv --backup=none --no-fuzzy-matching "$po" "$POT_FILE"; # Replace the first three lines of the PO file with the POT file header sed -i '1,3d' "$po" cat POT_HEADER "$po" > temp.po && mv temp.po "$po" diff --git a/po_gen.sh b/po_gen.sh index af4b758d1..d540390c4 100644 --- a/po_gen.sh +++ b/po_gen.sh @@ -43,9 +43,12 @@ echo " " # Find all PHP files and create a list in a temporary file find $FOLDERS -name "*.php" > PHPFILESLIST +# Generate a new POT file to a temporary file +TEMP_POT_FILE=$(mktemp) + # Run the xgettext command with various options. Do not change these options to keep the POT/PO files consistent in Wavelog xgettext -F \ - -o $POT_FILE \ + -o $TEMP_POT_FILE \ --from-code=UTF-8 \ --keyword=__ \ --keyword=_ngettext:1,2 \ @@ -57,19 +60,30 @@ xgettext -F \ # After the xgettext command, we don't need the temporary file anymore rm PHPFILESLIST -# Let's edit the header of the POT file -sed -i "1s/.*/# $POT_TITLE_TEXT/" "$POT_FILE" -sed -i "2s/.*/# $POT_COPYRIGHT_TEXT/" $POT_FILE -sed -i "3s/.*/# $POT_LICENCE_TEXT/" $POT_FILE -sed -i '4d' $POT_FILE -sed -i '8d' $POT_FILE +# Let's edit the header of the TEMP_POT_FILE file +sed -i "1s/.*/# $POT_TITLE_TEXT/" "$TEMP_POT_FILE" +sed -i "2s/.*/# $POT_COPYRIGHT_TEXT/" "$TEMP_POT_FILE" +sed -i "3s/.*/# $POT_LICENCE_TEXT/" "$TEMP_POT_FILE" +sed -i '4d' "$TEMP_POT_FILE" +sed -i '8d' "$TEMP_POT_FILE" + +# Compare the new POT file with the existing one (excluding the POT Creation Date) +if ! diff -I 'POT-Creation-Date' "$TEMP_POT_FILE" "$POT_FILE" >/dev/null; then + echo "Updating POT file with new translations." + echo " " + mv "$TEMP_POT_FILE" "$POT_FILE" +else + echo "No changes detected in translations. POT file remains unchanged." + echo " " + rm "$TEMP_POT_FILE" +fi # Extract the first three lines of the POT file to a temporary file head -n 3 "$POT_FILE" > POT_HEADER # Now we can merge the POT file (PO template) into each found PO file for po in $(find $FOLDERS -name "*.po"); do - msgmerge --update -vv --backup=none --no-fuzzy-matching "$po" $POT_FILE; + msgmerge --update -vv --backup=none --no-fuzzy-matching "$po" "$POT_FILE"; # Replace the first three lines of the PO file with the POT file header sed -i '1,3d' "$po" cat POT_HEADER "$po" > temp.po && mv temp.po "$po" diff --git a/src/predict/Predict.php b/src/predict/Predict.php new file mode 100644 index 000000000..1c8713984 --- /dev/null +++ b/src/predict/Predict.php @@ -0,0 +1,877 @@ + + John A. Magliacane, KD2BD. + + Comments, questions and bugreports should be submitted via + http://sourceforge.net/projects/gpredict/ + More details can be found at the project home page: + + http://gpredict.oz9aec.net/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, visit http://www.fsf.org/ +*/ + +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 + * the prediction logic. + */ +class Predict +{ + const de2ra = 1.74532925E-2; /* Degrees to Radians */ + const pi = 3.1415926535898; /* Pi */ + const pio2 = 1.5707963267949; /* Pi/2 */ + const x3pio2 = 4.71238898; /* 3*Pi/2 */ + const twopi = 6.2831853071796; /* 2*Pi */ + const e6a = 1.0E-6; + const tothrd = 6.6666667E-1; /* 2/3 */ + const xj2 = 1.0826158E-3; /* J2 Harmonic */ + const xj3 = -2.53881E-6; /* J3 Harmonic */ + const xj4 = -1.65597E-6; /* J4 Harmonic */ + const xke = 7.43669161E-2; + const xkmper = 6.378135E3; /* Earth radius km */ + const xmnpda = 1.44E3; /* Minutes per day */ + const km2mi = 0.621371; /* Kilometers per Mile */ + const ae = 1.0; + const ck2 = 5.413079E-4; + const ck4 = 6.209887E-7; + const __f = 3.352779E-3; + const ge = 3.986008E5; + const __s__ = 1.012229; + const qoms2t = 1.880279E-09; + const secday = 8.6400E4; /* Seconds per day */ + const omega_E = 1.0027379; + const omega_ER = 6.3003879; + const zns = 1.19459E-5; + const c1ss = 2.9864797E-6; + const zes = 1.675E-2; + const znl = 1.5835218E-4; + const c1l = 4.7968065E-7; + const zel = 5.490E-2; + const zcosis = 9.1744867E-1; + const zsinis = 3.9785416E-1; + const zsings = -9.8088458E-1; + const zcosgs = 1.945905E-1; + const zcoshs = 1; + const zsinhs = 0; + const q22 = 1.7891679E-6; + const q31 = 2.1460748E-6; + const q33 = 2.2123015E-7; + const g22 = 5.7686396; + const g32 = 9.5240898E-1; + const g44 = 1.8014998; + const g52 = 1.0508330; + const g54 = 4.4108898; + const root22 = 1.7891679E-6; + const root32 = 3.7393792E-7; + const root44 = 7.3636953E-9; + const root52 = 1.1428639E-7; + const root54 = 2.1765803E-9; + const thdt = 4.3752691E-3; + const rho = 1.5696615E-1; + const mfactor = 7.292115E-5; + const __sr__ = 6.96000E5; /*Solar radius - kilometers (IAU 76)*/ + const AU = 1.49597870E8; /*Astronomical unit - kilometers (IAU 76)*/ + + /* visibility constants */ + const SAT_VIS_NONE = 0; + const SAT_VIS_VISIBLE = 1; + const SAT_VIS_DAYLIGHT = 2; + const SAT_VIS_ECLIPSED = 3; + + /* preferences */ + public $minEle = 10; // Minimum elevation + public $timeRes = 10; // Pass details: time resolution + public $numEntries = 20; // Pass details: number of entries + public $threshold = -6; // Twilight threshold + + /** + * Predict the next pass. + * + * This function simply wraps the get_pass function using the current time + * as parameter. + * + * Note: the data in sat will be corrupt (future) and must be refreshed + * by the caller, if the caller will need it later on (eg. if the caller + * is GtkSatList). + * + * @param Predict_Sat $sat The satellite data. + * @param Predict_QTH $qth The observer data. + * @param int $maxdt The maximum number of days to look ahead. + * + * @return Predict_Pass Pointer instance or NULL if no pass can be + * found. + */ + public function get_next_pass(Predict_Sat $sat, Predict_QTH $qth, $maxdt) + { + /* get the current time and call the get_pass function */ + $now = Predict_Time::get_current_daynum(); + + return $this->get_pass($sat, $qth, $now, $maxdt); + } + + /** Predict first pass after a certain time. + * + * @param Predict_Sat $sat The satellite data. + * @param Predict_QTH $qth The observer's location data. + * @param float $start Starting time. + * @param int $maxdt The maximum number of days to look ahead (0 for no limit). + * + * @return Predict_Pass or NULL if there was an error. + * + * This function will find the first upcoming pass with AOS no earlier than + * t = start and no later than t = (start+maxdt). + * + * note For no time limit use maxdt = 0.0 + * + * note the data in sat will be corrupt (future) and must be refreshed + * by the caller, if the caller will need it later on + */ + public function get_pass(Predict_Sat $sat_in, Predict_QTH $qth, $start, $maxdt) + { + + $aos = 0.0; /* time of AOS */ + $tca = 0.0; /* time of TCA */ + $los = 0.0; /* time of LOS */ + $dt = 0.0; /* time diff */ + $step = 0.0; /* time step */ + $t0 = $start; + $tres = 0.0; /* required time resolution */ + $max_el = 0.0; /* maximum elevation */ + $pass = null; + $detail = null; + $done = false; + $iter = 0; /* number of iterations */ + /* FIXME: watchdog */ + + /*copy sat_in to a working structure*/ + $sat = clone $sat_in; + $sat_working = clone $sat_in; + + /* get time resolution; sat-cfg stores it in seconds */ + $tres = $this->timeRes / 86400.0; + + /* loop until we find a pass with elevation > SAT_CFG_INT_PRED_MIN_EL + or we run out of time + FIXME: we should have a safety break + */ + while (!$done) { + /* Find los of next pass or of current pass */ + $los = $this->find_los($sat, $qth, $t0, $maxdt); // See if a pass is ongoing + $aos = $this->find_aos($sat, $qth, $t0, $maxdt); + /* sat_log_log(SAT_LOG_LEVEL_MSG, "%s:%s:%d: found aos %f and los %f for t0=%f", */ + /* __FILE__, */ + /* __FUNCTION__, */ + /* __LINE__, */ + /* aos, */ + /* los, */ + /* t0); */ + if ($aos > $los) { + // los is from an currently happening pass, find previous aos + $aos = $this->find_prev_aos($sat, $qth, $t0); + } + + /* aos = 0.0 means no aos */ + if ($aos == 0.0) { + $done = true; + } else if (($maxdt > 0.0) && ($aos > ($start + $maxdt)) ) { + /* check whether we are within time limits; + maxdt = 0 mean no time limit. + */ + $done = true; + } else { + //los = find_los (sat, qth, aos + 0.001, maxdt); // +1.5 min later + $dt = $los - $aos; + + /* get time step, which will give us the max number of entries */ + $step = $dt / $this->numEntries; + + /* but if this is smaller than the required resolution + we go with the resolution + */ + if ($step < $tres) { + $step = $tres; + } + + /* create a pass_t entry; FIXME: g_try_new in 2.8 */ + $pass = new Predict_Pass(); + + $pass->aos = $aos; + $pass->los = $los; + $pass->max_el = 0.0; + $pass->aos_az = 0.0; + $pass->los_az = 0.0; + $pass->maxel_az = 0.0; + $pass->vis = '---'; + $pass->satname = $sat->nickname; + $pass->details = array(); + + /* iterate over each time step */ + for ($t = $pass->aos; $t <= $pass->los; $t += $step) { + + /* calculate satellite data */ + $this->predict_calc($sat, $qth, $t); + + /* in the first iter we want to store + pass->aos_az + */ + if ($t == $pass->aos) { + $pass->aos_az = $sat->az; + $pass->orbit = $sat->orbit; + } + + /* append details to sat->details */ + $detail = new Predict_PassDetail(); + $detail->time = $t; + $detail->pos->x = $sat->pos->x; + $detail->pos->y = $sat->pos->y; + $detail->pos->z = $sat->pos->z; + $detail->pos->w = $sat->pos->w; + $detail->vel->x = $sat->vel->x; + $detail->vel->y = $sat->vel->y; + $detail->vel->z = $sat->vel->z; + $detail->vel->w = $sat->vel->w; + $detail->velo = $sat->velo; + $detail->az = $sat->az; + $detail->el = $sat->el; + $detail->range = $sat->range; + $detail->range_rate = $sat->range_rate; + $detail->lat = $sat->ssplat; + $detail->lon = $sat->ssplon; + $detail->alt = $sat->alt; + $detail->ma = $sat->ma; + $detail->phase = $sat->phase; + $detail->footprint = $sat->footprint; + $detail->orbit = $sat->orbit; + $detail->vis = $this->get_sat_vis($sat, $qth, $t); + + /* also store visibility "bit" */ + switch ($detail->vis) { + case self::SAT_VIS_VISIBLE: + $pass->vis[0] = 'V'; + break; + case self::SAT_VIS_DAYLIGHT: + $pass->vis[1] = 'D'; + break; + case self::SAT_VIS_ECLIPSED: + $pass->vis[2] = 'E'; + break; + default: + break; + } + + // Using an array, no need to prepend and reverse the list + // as gpredict does + $pass->details[] = $detail; + + // Look up apparent magnitude if this is a visible pass + if ($detail->vis === self::SAT_VIS_VISIBLE) { + $apmag = $sat->calculateApparentMagnitude($t, $qth); + if ($pass->max_apparent_magnitude === null || $apmag < $pass->max_apparent_magnitude) { + $pass->max_apparent_magnitude = $apmag; + } + } + + /* store elevation if greater than the + previously stored one + */ + if ($sat->el > $max_el) { + $max_el = $sat->el; + $tca = $t; + $pass->maxel_az = $sat->az; + } + + /* g_print ("TIME: %f\tAZ: %f\tEL: %f (MAX: %f)\n", */ + /* t, sat->az, sat->el, max_el); */ + } + + /* calculate satellite data */ + $this->predict_calc($sat, $qth, $pass->los); + /* store los_az, max_el and tca */ + $pass->los_az = $sat->az; + $pass->max_el = $max_el; + $pass->tca = $tca; + + /* check whether this pass is good */ + if ($max_el >= $this->minEle) { + $done = true; + } else { + $done = false; + $t0 = $los + 0.014; // +20 min + $pass = null; + } + + $iter++; + } + } + + return $pass; + } + + /** + * Calculate satellite visibility. + * + * @param Predict_Sat $sat The satellite structure. + * @param Predict_QTH $qth The QTH + * @param float $jul_utc The time at which the visibility should be calculated. + * + * @return int The visiblity constant, 0, 1, 2, or 3 (see above) + */ + public function get_sat_vis(Predict_Sat $sat, Predict_QTH $qth, $jul_utc) + { + /* gboolean sat_sun_status; + gdouble sun_el; + gdouble threshold; + gdouble eclipse_depth; + sat_vis_t vis = SAT_VIS_NONE; */ + + $eclipse_depth = 0.0; + $zero_vector = new Predict_Vector(); + $obs_geodetic = new Predict_Geodetic(); + + /* Solar ECI position vector */ + $solar_vector = new Predict_Vector(); + + /* Solar observed az and el vector */ + $solar_set = new Predict_ObsSet(); + + /* FIXME: could be passed as parameter */ + $obs_geodetic->lon = $qth->lon * self::de2ra; + $obs_geodetic->lat = $qth->lat * self::de2ra; + $obs_geodetic->alt = $qth->alt / 1000.0; + $obs_geodetic->theta = 0; + + Predict_Solar::Calculate_Solar_Position($jul_utc, $solar_vector); + Predict_SGPObs::Calculate_Obs($jul_utc, $solar_vector, $zero_vector, $obs_geodetic, $solar_set); + + if (Predict_Solar::Sat_Eclipsed($sat->pos, $solar_vector, $eclipse_depth)) { + /* satellite is eclipsed */ + $sat_sun_status = false; + } else { + /* satellite in sunlight => may be visible */ + $sat_sun_status = true; + } + + if ($sat_sun_status) { + $sun_el = Predict_Math::Degrees($solar_set->el); + + if ($sat->el >= 0.0) { + $vis = self::SAT_VIS_VISIBLE; + } else { + $vis = self::SAT_VIS_DAYLIGHT; + } + } else { + $vis = self::SAT_VIS_ECLIPSED; + } + + return $vis; + } + + /** Find the AOS time of the next pass. + * @author Alexandru Csete, OZ9AEC + * @author John A. Magliacane, KD2BD + * @param Predict_Sat $sat The satellite data. + * @param Predict_QTH $qth The observer's location (QTH) data. + * @param float $start The julian date where calculation should start. + * @param int $maxdt The upper time limit in days (0.0 = no limit) + * @return The julain date of the next AOS or 0.0 if the satellite has no AOS. + * + * This function finds the time of AOS for the first coming pass taking place + * no earlier that start. + * If the satellite is currently within range, the function first calls + * find_los to get the next LOS time. Then the calculations are done using + * the new start time. + * + */ + public function find_aos(Predict_Sat $sat, Predict_QTH $qth, $start, $maxdt) + { + $t = $start; + $aostime = 0.0; + + + /* make sure current sat values are + in sync with the time + */ + $this->predict_calc($sat, $qth, $start); + + /* check whether satellite has aos */ + if (($sat->otype == Predict_SGPSDP::ORBIT_TYPE_GEO) || + ($sat->otype == Predict_SGPSDP::ORBIT_TYPE_DECAYED) || + !$this->has_aos($sat, $qth)) { + + return 0.0; + } + + if ($sat->el > 0.0) { + $t = $this->find_los($sat, $qth, $start, $maxdt) + 0.014; // +20 min + } + + /* invalid time (potentially returned by find_los) */ + if ($t < 0.1) { + return 0.0; + } + + /* update satellite data */ + $this->predict_calc($sat, $qth, $t); + + /* use upper time limit */ + if ($maxdt > 0.0) { + + /* coarse time steps */ + while (($sat->el < -1.0) && ($t <= ($start + $maxdt))) { + $t -= 0.00035 * ($sat->el * (($sat->alt / 8400.0) + 0.46) - 2.0); + $this->predict_calc($sat, $qth, $t); + } + + /* fine steps */ + while (($aostime == 0.0) && ($t <= ($start + $maxdt))) { + + if (abs($sat->el) < 0.005) { + $aostime = $t; + } else { + $t -= $sat->el * sqrt($sat->alt) / 530000.0; + $this->predict_calc($sat, $qth, $t); + } + } + } else { + /* don't use upper time limit */ + + /* coarse time steps */ + while ($sat->el < -1.0) { + + $t -= 0.00035 * ($sat->el * (($sat->alt / 8400.0) + 0.46) - 2.0); + $this->predict_calc($sat, $qth, $t); + } + + /* fine steps */ + while ($aostime == 0.0) { + + if (abs($sat->el) < 0.005) { + $aostime = $t; + } else { + $t -= $sat->el * sqrt($sat->alt) / 530000.0; + $this->predict_calc($sat, $qth, $t); + } + + } + } + + return $aostime; + } + + /** SGP4SDP4 driver for doing AOS/LOS calculations. + * @param Predict_Sat $sat The satellite data. + * @param Predict_QTH $qth The QTH observer location data. + * @param float $t The time for calculation (Julian Date) + * + */ + public function predict_calc(Predict_Sat $sat, Predict_QTH $qth, $t) + { + $obs_set = new Predict_ObsSet(); + $sat_geodetic = new Predict_Geodetic(); + $obs_geodetic = new Predict_Geodetic(); + + $obs_geodetic->lon = $qth->lon * self::de2ra; + $obs_geodetic->lat = $qth->lat * self::de2ra; + $obs_geodetic->alt = $qth->alt / 1000.0; + $obs_geodetic->theta = 0; + + $sat->jul_utc = $t; + $sat->tsince = ($sat->jul_utc - $sat->jul_epoch) * self::xmnpda; + + /* call the norad routines according to the deep-space flag */ + $sgpsdp = Predict_SGPSDP::getInstance($sat); + if ($sat->flags & Predict_SGPSDP::DEEP_SPACE_EPHEM_FLAG) { + $sgpsdp->SDP4($sat, $sat->tsince); + } else { + $sgpsdp->SGP4($sat, $sat->tsince); + } + + Predict_Math::Convert_Sat_State($sat->pos, $sat->vel); + + /* get the velocity of the satellite */ + $sat->vel->w = sqrt($sat->vel->x * $sat->vel->x + $sat->vel->y * $sat->vel->y + $sat->vel->z * $sat->vel->z); + $sat->velo = $sat->vel->w; + Predict_SGPObs::Calculate_Obs($sat->jul_utc, $sat->pos, $sat->vel, $obs_geodetic, $obs_set); + Predict_SGPObs::Calculate_LatLonAlt($sat->jul_utc, $sat->pos, $sat_geodetic); + + while ($sat_geodetic->lon < -self::pi) { + $sat_geodetic->lon += self::twopi; + } + + while ($sat_geodetic->lon > (self::pi)) { + $sat_geodetic->lon -= self::twopi; + } + + $sat->az = Predict_Math::Degrees($obs_set->az); + $sat->el = Predict_Math::Degrees($obs_set->el); + $sat->range = $obs_set->range; + $sat->range_rate = $obs_set->range_rate; + $sat->ssplat = Predict_Math::Degrees($sat_geodetic->lat); + $sat->ssplon = Predict_Math::Degrees($sat_geodetic->lon); + $sat->alt = $sat_geodetic->alt; + $sat->ma = Predict_Math::Degrees($sat->phase); + $sat->ma *= 256.0 / 360.0; + $sat->phase = Predict_Math::Degrees($sat->phase); + + /* same formulas, but the one from predict is nicer */ + //sat->footprint = 2.0 * xkmper * acos (xkmper/sat->pos.w); + $sat->footprint = 12756.33 * acos(self::xkmper / (self::xkmper + $sat->alt)); + $age = $sat->jul_utc - $sat->jul_epoch; + $sat->orbit = floor(($sat->tle->xno * self::xmnpda / self::twopi + + $age * $sat->tle->bstar * self::ae) * $age + + $sat->tle->xmo / self::twopi) + $sat->tle->revnum - 1; + } + + /** Find the LOS time of the next pass. + * @author Alexandru Csete, OZ9AEC + * @author John A. Magliacane, KD2BD + * @param Predict_Sat $sat The satellite data. + * @param Predict_QTH $qth The QTH observer location data. + * @param float $start The time where calculation should start. (Julian Date) + * @param int $maxdt The upper time limit in days (0.0 = no limit) + * @return The time (julian date) of the next LOS or 0.0 if the satellite has no LOS. + * + * This function finds the time of LOS for the first coming pass taking place + * no earlier that start. + * If the satellite is currently out of range, the function first calls + * find_aos to get the next AOS time. Then the calculations are done using + * the new start time. + * The function has a built-in watchdog to ensure that we don't end up in + * lengthy loops. + * + */ + public function find_los(Predict_Sat $sat, Predict_QTH $qth, $start, $maxdt) + { + $t = $start; + $lostime = 0.0; + + + $this->predict_calc($sat, $qth, $start); + + /* check whether satellite has aos */ + if (($sat->otype == Predict_SGPSDP::ORBIT_TYPE_GEO) || + ($sat->otype == Predict_SGPSDP::ORBIT_TYPE_DECAYED) || + !$this->has_aos ($sat, $qth)) { + + return 0.0; + } + + if ($sat->el < 0.0) { + $t = $this->find_aos($sat, $qth, $start, $maxdt) + 0.001; // +1.5 min + } + + /* invalid time (potentially returned by find_aos) */ + if ($t < 0.01) { + return 0.0; + } + + /* update satellite data */ + $this->predict_calc($sat, $qth, $t); + + /* use upper time limit */ + if ($maxdt > 0.0) { + + /* coarse steps */ + while (($sat->el >= 1.0) && ($t <= ($start + $maxdt))) { + $t += cos(($sat->el - 1.0) * self::de2ra) * sqrt($sat->alt) / 25000.0; + $this->predict_calc($sat, $qth, $t); + } + + /* fine steps */ + while (($lostime == 0.0) && ($t <= ($start + $maxdt))) { + + $t += $sat->el * sqrt($sat->alt) / 502500.0; + $this->predict_calc($sat, $qth, $t); + + if (abs($sat->el) < 0.005) { + $lostime = $t; + } + } + } else { + /* don't use upper limit */ + + /* coarse steps */ + while ($sat->el >= 1.0) { + $t += cos(($sat->el - 1.0) * self::de2ra) * sqrt($sat->alt) / 25000.0; + $this->predict_calc($sat, $qth, $t); + } + + /* fine steps */ + while ($lostime == 0.0) { + + $t += $sat->el * sqrt($sat->alt) / 502500.0; + $this->predict_calc($sat, $qth, $t); + + if (abs($sat->el) < 0.005) + $lostime = $t; + } + } + + return $lostime; + } + + /** Find AOS time of current pass. + * @param Predict_Sat $sat The satellite to find AOS for. + * @param Predict_QTH $qth The ground station. + * @param float $start Start time, prefereably now. + * @return The time of the previous AOS or 0.0 if the satellite has no AOS. + * + * This function can be used to find the AOS time in the past of the + * current pass. + */ + public function find_prev_aos(Predict_Sat $sat, Predict_QTH $qth, $start) + { + $aostime = $start; + + /* make sure current sat values are + in sync with the time + */ + $this->predict_calc($sat, $qth, $start); + + /* check whether satellite has aos */ + if (($sat->otype == Predict_SGPSDP::ORBIT_TYPE_GEO) || + ($sat->otype == Predict_SGPSDP::ORBIT_TYPE_DECAYED) || + !$this->has_aos($sat, $qth)) { + + return 0.0; + } + + while ($sat->el >= 0.0) { + $aostime -= 0.0005; // 0.75 min + $this->predict_calc($sat, $qth, $aostime); + } + + return $aostime; + } + + /** Determine whether satellite ever reaches AOS. + * @author John A. Magliacane, KD2BD + * @author Alexandru Csete, OZ9AEC + * @param Predict_Sat $sat The satellite data. + * @param Predict_QTH $qth The observer's location data + * @return bool true if the satellite will reach AOS, false otherwise. + * + */ + public function has_aos(Predict_Sat $sat, Predict_QTH $qth) + { + $retcode = false; + + /* FIXME */ + if ($sat->meanmo == 0.0) { + $retcode = false; + } else { + + /* xincl is already in RAD by select_ephemeris */ + $lin = $sat->tle->xincl; + if ($lin >= self::pio2) { + $lin = self::pi - $lin; + } + + $sma = 331.25 * exp(log(1440.0 / $sat->meanmo) * (2.0 / 3.0)); + $apogee = $sma * (1.0 + $sat->tle->eo) - self::xkmper; + + if ((acos(self::xkmper / ($apogee + self::xkmper)) + ($lin)) > abs($qth->lat * self::de2ra)) { + $retcode = true; + } else { + $retcode = false; + } + } + + return $retcode; + } + + /** Predict passes after a certain time. + * + * + * This function calculates num upcoming passes with AOS no earlier + * than t = start and not later that t = (start+maxdt). The function will + * repeatedly call get_pass until + * the number of predicted passes is equal to num, the time has reached + * limit or the get_pass function returns NULL. + * + * note For no time limit use maxdt = 0.0 + * + * note the data in sat will be corrupt (future) and must be refreshed + * by the caller, if the caller will need it later on (eg. if the caller + * is GtkSatList). + * + * note Prepending to a singly linked list is much faster than appending. + * Therefore, the elements are prepended whereafter the GSList is + * reversed + * + * + * @param Predict_Sat $sat The satellite data + * @param Predict_QTH $qth The observer's location data + * @param float $start The start julian date + * @param int $maxdt The max # of days to look + * @param int $num The max # of passes to get + * @return array of Predict_Pass instances if found, empty array otherwise + */ + public function get_passes(Predict_Sat $sat, Predict_QTH $qth, $start, $maxdt, $num = 0) + { + $passes = array(); + + /* if no number has been specified + set it to something big */ + if ($num == 0) { + $num = 100; + } + + $t = $start; + + for ($i = 0; $i < $num; $i++) { + $pass = $this->get_pass($sat, $qth, $t, $maxdt); + + if ($pass != null) { + $passes[] = $pass; + $t = $pass->los + 0.014; // +20 min + + /* if maxdt > 0.0 check whether we have reached t = start+maxdt + if yes finish predictions + */ + if (($maxdt > 0.0) && ($t >= ($start + $maxdt))) { + $i = $num; + } + } else { + /* we can't get any more passes */ + $i = $num; + } + } + + return $passes; + } + + /** + * Filters out visible passes and adds the visible aos, tca, los, and + * corresponding az and ele for each. + * + * @param array $passes The passes returned from get_passes() + * + * @author Bill Shupp + * @return array + */ + public function filterVisiblePasses(array $passes) + { + $filtered = array(); + + foreach ($passes as $result) { + // Dummy check + if ($result->vis[0] != 'V') { + continue; + } + + $aos = false; + $aos_az = false; + $aos = false; + $tca = false; + $los_az = false; + $aos_el = 0; + $max_el = 0; + + foreach ($result->details as $detail) { + if ($detail->vis != Predict::SAT_VIS_VISIBLE) { + continue; + } + if ($detail->el < $this->minEle) { + continue; + } + + if ($aos == false) { + $aos = $detail->time; + $aos_az = $detail->az; + $aos_el = $detail->el; + $tca = $detail->time; + $los = $detail->time; + $los_az = $detail->az; + $los_el = $detail->el; + $max_el = $detail->el; + $max_el_az = $detail->el; + continue; + } + $los = $detail->time; + $los_az = $detail->az; + $los_el = $detail->el; + + if ($detail->el > $max_el) { + $tca = $detail->time; + $max_el = $detail->el; + $max_el_az = $detail->az; + } + } + + if ($aos === false) { + // Does not reach minimum elevation, skip + continue; + } + + $result->visible_aos = $aos; + $result->visible_aos_az = $aos_az; + $result->visible_aos_el = $aos_el; + $result->visible_tca = $tca; + $result->visible_max_el = $max_el; + $result->visible_max_el_az = $max_el_az; + $result->visible_los = $los; + $result->visible_los_az = $los_az; + $result->visible_los_el = $los_el; + + $filtered[] = $result; + } + + return $filtered; + } + + /** + * Translates aziumuth degrees to compass direction: + * + * N (0°), NNE (22.5°), NE (45°), ENE (67.5°), E (90°), ESE (112.5°), + * SE (135°), SSE (157.5°), S (180°), SSW (202.5°), SW (225°), + * WSW (247.5°), W (270°), WNW (292.5°), NW (315°), NNW (337.5°) + * + * @param int $az The azimuth in degrees, defaults to 0 + * + * @return string + */ + public function azDegreesToDirection($az = 0) + { + $i = floor($az / 22.5); + $m = (22.5 * (2 * $i + 1)) / 2; + $i = ($az >= $m) ? $i + 1 : $i; + + return trim(substr('N NNENE ENEE ESESE SSES SSWSW WSWW WNWNW NNWN ', $i * 3, 3)); + } +} diff --git a/src/predict/Predict/DeepArg.php b/src/predict/Predict/DeepArg.php new file mode 100644 index 000000000..f29178fca --- /dev/null +++ b/src/predict/Predict/DeepArg.php @@ -0,0 +1,35 @@ + 0 ) { + return 1; + } else if ($arg < 0 ) { + return -1; + } else { + return 0; + } + } + + /* Returns the arcsine of the argument */ + public static function ArcSin($arg) + { + if (abs($arg) >= 1 ) { + return (self::Sign($arg) * Predict::pio2); + } else { + return(atan($arg / sqrt(1 - $arg * $arg))); + } + } + + /* Returns arccosine of rgument */ + public static function ArcCos($arg) + { + return Predict::pio2 - self::ArcSin($arg); + } + + /* Adds vectors v1 and v2 together to produce v3 */ + public static function Vec_Add(Predict_Vector $v1, Predict_Vector $v2, Predict_Vector $v3) + { + $v3->x = $v1->x + $v2->x; + $v3->y = $v1->y + $v2->y; + $v3->z = $v1->z + $v2->z; + + $v3->w = sqrt($v3->x * $v3->x + $v3->y * $v3->y + $v3->z * $v3->z); + } + + /* Subtracts vector v2 from v1 to produce v3 */ + public static function Vec_Sub(Predict_Vector $v1, Predict_Vector $v2, Predict_Vector $v3) + { + $v3->x = $v1->x - $v2->x; + $v3->y = $v1->y - $v2->y; + $v3->z = $v1->z - $v2->z; + + $v3->w = sqrt($v3->x * $v3->x + $v3->y * $v3->y + $v3->z * $v3->z); + } + + /* Multiplies the vector v1 by the scalar k to produce the vector v2 */ + public static function Scalar_Multiply($k, Predict_Vector $v1, Predict_Vector $v2) + { + $v2->x = $k * $v1->x; + $v2->y = $k * $v1->y; + $v2->z = $k * $v1->z; + $v2->w = abs($k) * $v1->w; + } + + /* Multiplies the vector v1 by the scalar k */ + public static function Scale_Vector($k, Predict_Vector $v) + { + $v->x *= $k; + $v->y *= $k; + $v->z *= $k; + + $v->w = sqrt($v->x * $v->x + $v->y * $v->y + $v->z * $v->z); + } + + /* Returns the dot product of two vectors */ + public static function Dot(Predict_Vector $v1, Predict_Vector $v2) + { + return ($v1->x * $v2->x + $v1->y * $v2->y + $v1->z * $v2->z); + } + + /* Calculates the angle between vectors v1 and v2 */ + public static function Angle(Predict_Vector $v1, Predict_Vector $v2) + { + $v1->w = sqrt($v1->x * $v1->x + $v1->y * $v1->y + $v1->z * $v1->z); + $v2->w = sqrt($v2->x * $v2->x + $v2->y * $v2->y + $v2->z * $v2->z); + return (self::ArcCos(self::Dot($v1, $v2) / ($v1->w * $v2->w))); + } + + /* Produces cross product of v1 and v2, and returns in v3 */ + public static function Cross(Predict_Vector $v1, Predict_Vector $v2 ,Predict_Vector $v3) + { + $v3->x = $v1->y * $v2->z - $v1->z * $v2->y; + $v3->y = $v1->z * $v2->x - $v1->x * $v2->z; + $v3->z = $v1->x * $v2->y - $v1->y * $v2->x; + + $v3->w = sqrt($v3->x * $v3->x + $v3->y * $v3->y + $v3->z * $v3->z); + } + + /* Normalizes a vector */ + public static function Normalize(Predict_Vector $v ) + { + $v->x /= $v->w; + $v->y /= $v->w; + $v->z /= $v->w; + } + + /* Four-quadrant arctan function */ + public static function AcTan($sinx, $cosx) + { + if ($cosx == 0) { + if ($sinx > 0) { + return Predict::pio2; + } else { + return Predict::x3pio2; + } + } else { + if ($cosx > 0) { + if ($sinx > 0) { + return atan($sinx / $cosx); + } else { + return Predict::twopi + atan($sinx / $cosx); + } + } else { + return Predict::pi + atan($sinx / $cosx); + } + } + } + + /* Returns mod 2pi of argument */ + public static function FMod2p($x) + { + $ret_val = $x; + $i = (int) ($ret_val / Predict::twopi); + $ret_val -= $i * Predict::twopi; + + if ($ret_val < 0) { + $ret_val += Predict::twopi; + } + + return $ret_val; + } + + /* Returns arg1 mod arg2 */ + public static function Modulus($arg1, $arg2) + { + $ret_val = $arg1; + $i = (int) ($ret_val / $arg2); + $ret_val -= $i * $arg2; + + if ($ret_val < 0) { + $ret_val += $arg2; + } + + return $ret_val; + } + + /* Returns fractional part of double argument */ + public static function Frac($arg) + { + return $arg - floor($arg); + } + + /* Converts the satellite's position and velocity */ + /* vectors from normalised values to km and km/sec */ + public static function Convert_Sat_State(Predict_Vector $pos, Predict_Vector $vel) + { + self::Scale_Vector(Predict::xkmper, $pos); + self::Scale_Vector(Predict::xkmper * Predict::xmnpda / Predict::secday, $vel); + } + + /* Returns angle in radians from arg in degrees */ + public static function Radians($arg) + { + return $arg * Predict::de2ra; + } + + /* Returns angle in degrees from arg in rads */ + public static function Degrees($arg) + { + return $arg / Predict::de2ra; + } +} diff --git a/src/predict/Predict/ObsSet.php b/src/predict/Predict/ObsSet.php new file mode 100644 index 000000000..9470b93d4 --- /dev/null +++ b/src/predict/Predict/ObsSet.php @@ -0,0 +1,12 @@ +pos = new Predict_Vector(); + $this->vel = new Predict_Vector(); + } +} diff --git a/src/predict/Predict/QTH.php b/src/predict/Predict/QTH.php new file mode 100644 index 000000000..5ccd5d365 --- /dev/null +++ b/src/predict/Predict/QTH.php @@ -0,0 +1,20 @@ +lat); /* Only run sin($geodetic->lat) once */ + + $geodetic->theta = Predict_Math::FMod2p(Predict_Time::ThetaG_JD($_time) + $geodetic->lon);/*LMST*/ + $c = 1 / sqrt(1 + Predict::__f * (Predict::__f - 2) * $sinGeodeticLat * $sinGeodeticLat); + $sq = (1 - Predict::__f) * (1 - Predict::__f) * $c; + $achcp = (Predict::xkmper * $c + $geodetic->alt) * cos($geodetic->lat); + $obs_pos->x = $achcp * cos($geodetic->theta); /*kilometers*/ + $obs_pos->y = $achcp * sin($geodetic->theta); + $obs_pos->z = (Predict::xkmper * $sq + $geodetic->alt) * $sinGeodeticLat; + $obs_vel->x = -Predict::mfactor * $obs_pos->y; /*kilometers/second*/ + $obs_vel->y = Predict::mfactor * $obs_pos->x; + $obs_vel->z = 0; + $obs_pos->w = sqrt($obs_pos->x * $obs_pos->x + $obs_pos->y * $obs_pos->y + $obs_pos->z * $obs_pos->z); + $obs_vel->w = sqrt($obs_vel->x * $obs_vel->x + $obs_vel->y * $obs_vel->y + $obs_vel->z * $obs_vel->z); + } + + /* Procedure Calculate_LatLonAlt will calculate the geodetic */ + /* position of an object given its ECI position pos and time. */ + /* It is intended to be used to determine the ground track of */ + /* a satellite. The calculations assume the earth to be an */ + /* oblate spheroid as defined in WGS '72. */ + public static function Calculate_LatLonAlt($_time, Predict_Vector $pos, Predict_Geodetic $geodetic) + { + /* Reference: The 1992 Astronomical Almanac, page K12. */ + + /* double r,e2,phi,c; */ + + $geodetic->theta = Predict_Math::AcTan($pos->y, $pos->x); /*radians*/ + $geodetic->lon = Predict_Math::FMod2p($geodetic->theta - Predict_Time::ThetaG_JD($_time)); /*radians*/ + $r = sqrt(($pos->x * $pos->x) + ($pos->y * $pos->y)); + $e2 = Predict::__f * (2 - Predict::__f); + $geodetic->lat = Predict_Math::AcTan($pos->z, $r); /*radians*/ + + do { + $phi = $geodetic->lat; + $sinPhi = sin($phi); + $c = 1 / sqrt(1 - $e2 * ($sinPhi * $sinPhi)); + $geodetic->lat = Predict_Math::AcTan($pos->z + Predict::xkmper * $c * $e2 * $sinPhi, $r); + } while (abs($geodetic->lat - $phi) >= 1E-10); + + $geodetic->alt = $r / cos($geodetic->lat) - Predict::xkmper * $c;/*kilometers*/ + + if ($geodetic->lat > Predict::pio2) { + $geodetic->lat -= Predict::twopi; + } + } + + /* The procedures Calculate_Obs and Calculate_RADec calculate */ + /* the *topocentric* coordinates of the object with ECI position, */ + /* {pos}, and velocity, {vel}, from location {geodetic} at {time}. */ + /* The {obs_set} returned for Calculate_Obs consists of azimuth, */ + /* elevation, range, and range rate (in that order) with units of */ + /* radians, radians, kilometers, and kilometers/second, respectively. */ + /* The WGS '72 geoid is used and the effect of atmospheric refraction */ + /* (under standard temperature and pressure) is incorporated into the */ + /* elevation calculation; the effect of atmospheric refraction on */ + /* range and range rate has not yet been quantified. */ + + /* The {obs_set} for Calculate_RADec consists of right ascension and */ + /* declination (in that order) in radians. Again, calculations are */ + /* based on *topocentric* position using the WGS '72 geoid and */ + /* incorporating atmospheric refraction. */ + public static function Calculate_Obs($_time, Predict_Vector $pos, Predict_Vector $vel, Predict_Geodetic $geodetic, Predict_ObsSet $obs_set) + { + $obs_pos = new Predict_Vector(); + $obs_vel = new Predict_Vector(); + $range = new Predict_Vector(); + $rgvel = new Predict_Vector(); + + self::Calculate_User_PosVel($_time, $geodetic, $obs_pos, $obs_vel); + + $range->x = $pos->x - $obs_pos->x; + $range->y = $pos->y - $obs_pos->y; + $range->z = $pos->z - $obs_pos->z; + + $rgvel->x = $vel->x - $obs_vel->x; + $rgvel->y = $vel->y - $obs_vel->y; + $rgvel->z = $vel->z - $obs_vel->z; + + $range->w = sqrt($range->x * $range->x + $range->y * $range->y + $range->z * $range->z); + + $sin_lat = sin($geodetic->lat); + $cos_lat = cos($geodetic->lat); + $sin_theta = sin($geodetic->theta); + $cos_theta = cos($geodetic->theta); + $top_s = $sin_lat * $cos_theta * $range->x + + $sin_lat * $sin_theta * $range->y + - $cos_lat * $range->z; + $top_e = -$sin_theta * $range->x + + $cos_theta * $range->y; + $top_z = $cos_lat * $cos_theta * $range->x + + $cos_lat * $sin_theta * $range->y + + $sin_lat * $range->z; + $azim = atan(-$top_e / $top_s); /*Azimuth*/ + if ($top_s > 0) { + $azim = $azim + Predict::pi; + } + if ($azim < 0 ) { + $azim = $azim + Predict::twopi; + } + $el = Predict_Math::ArcSin($top_z / $range->w); + $obs_set->az = $azim; /* Azimuth (radians) */ + $obs_set->el = $el; /* Elevation (radians)*/ + $obs_set->range = $range->w; /* Range (kilometers) */ + + /* Range Rate (kilometers/second)*/ + $obs_set->range_rate = Predict_Math::Dot($range, $rgvel) / $range->w; + + /* Corrections for atmospheric refraction */ + /* Reference: Astronomical Algorithms by Jean Meeus, pp. 101-104 */ + /* Correction is meaningless when apparent elevation is below horizon */ + // obs_set->el = obs_set->el + Radians((1.02/tan(Radians(Degrees(el)+ + // 10.3/(Degrees(el)+5.11))))/60); + if ($obs_set->el < 0) { + $obs_set->el = $el; /*Reset to true elevation*/ + } + } +} diff --git a/src/predict/Predict/SGPSDP.php b/src/predict/Predict/SGPSDP.php new file mode 100644 index 000000000..48ecbb142 --- /dev/null +++ b/src/predict/Predict/SGPSDP.php @@ -0,0 +1,1061 @@ +flags & self::SGP4_INITIALIZED_FLAG) { + $sat->flags |= self::SGP4_INITIALIZED_FLAG; + + /* Recover original mean motion (xnodp) and */ + /* semimajor axis (aodp) from input elements. */ + $a1 = pow(Predict::xke / $sat->tle->xno, Predict::tothrd); + $sat->sgps->cosio = cos($sat->tle->xincl); + $theta2 = $sat->sgps->cosio * $sat->sgps->cosio; + $sat->sgps->x3thm1 = 3 * $theta2 - 1.0; + $eosq = $sat->tle->eo * $sat->tle->eo; + $betao2 = 1 - $eosq; + $betao = sqrt($betao2); + $del1 = 1.5 * Predict::ck2 * $sat->sgps->x3thm1 / ($a1 * $a1 * $betao * $betao2); + $ao = $a1 * (1 - $del1 * (0.5 * Predict::tothrd + $del1 * (1 + 134.0 / 81.0 * $del1))); + $delo = 1.5 * Predict::ck2 * $sat->sgps->x3thm1 / ($ao * $ao * $betao * $betao2); + $sat->sgps->xnodp = $sat->tle->xno / (1.0 + $delo); + $sat->sgps->aodp = $ao / (1.0 - $delo); + + /* For perigee less than 220 kilometers, the "simple" flag is set */ + /* and the equations are truncated to linear variation in sqrt a */ + /* and quadratic variation in mean anomaly. Also, the c3 term, */ + /* the delta omega term, and the delta m term are dropped. */ + if (($sat->sgps->aodp * (1.0 - $sat->tle->eo) / Predict::ae) < (220.0 / Predict::xkmper + Predict::ae)) { + $sat->flags |= self::SIMPLE_FLAG; + } else { + $sat->flags &= ~self::SIMPLE_FLAG; + } + + /* For perigee below 156 km, the */ + /* values of s and qoms2t are altered. */ + $s4 = Predict::__s__; + $qoms24 = Predict::qoms2t; + $perige = ($sat->sgps->aodp * (1 - $sat->tle->eo) - Predict::ae) * Predict::xkmper; + if ($perige < 156.0) { + if ($perige <= 98.0) { + $s4 = 20.0; + } else { + $s4 = $perige - 78.0; + } + $qoms24 = pow((120.0 - $s4) * Predict::ae / Predict::xkmper, 4); + $s4 = $s4 / Predict::xkmper + Predict::ae; + }; /* FIXME FIXME: End of if(perige <= 98) NO WAY!!!! */ + + $pinvsq = 1.0 / ($sat->sgps->aodp * $sat->sgps->aodp * $betao2 * $betao2); + $tsi = 1.0 / ($sat->sgps->aodp - $s4); + $sat->sgps->eta = $sat->sgps->aodp * $sat->tle->eo * $tsi; + $etasq = $sat->sgps->eta * $sat->sgps->eta; + $eeta = $sat->tle->eo * $sat->sgps->eta; + $psisq = abs(1.0 - $etasq); + $coef = $qoms24 * pow($tsi, 4); + $coef1 = $coef / pow($psisq, 3.5); + $c2 = $coef1 * $sat->sgps->xnodp * ($sat->sgps->aodp * + (1.0 + 1.5 * $etasq + $eeta * (4.0 + $etasq)) + + 0.75 * Predict::ck2 * $tsi / $psisq * $sat->sgps->x3thm1 * + (8.0 + 3.0 * $etasq * (8 + $etasq))); + $sat->sgps->c1 = $c2 * $sat->tle->bstar; + $sat->sgps->sinio = sin($sat->tle->xincl); + $a3ovk2 = -Predict::xj3 / Predict::ck2 * pow(Predict::ae, 3); + $c3 = $coef * $tsi * $a3ovk2 * $sat->sgps->xnodp * Predict::ae * $sat->sgps->sinio / $sat->tle->eo; + $sat->sgps->x1mth2 = 1.0 - $theta2; + $sat->sgps->c4 = 2.0 * $sat->sgps->xnodp * $coef1 * $sat->sgps->aodp * $betao2 * + ($sat->sgps->eta * (2.0 + 0.5 * $etasq) + + $sat->tle->eo * (0.5 + 2.0 * $etasq) - + 2.0 * Predict::ck2 * $tsi / ($sat->sgps->aodp * $psisq) * + (-3.0 * $sat->sgps->x3thm1 * (1.0 - 2.0 * $eeta + $etasq * (1.5 - 0.5 * $eeta)) + + 0.75 * $sat->sgps->x1mth2 * (2.0 * $etasq - $eeta * (1.0 + $etasq)) * + cos(2.0 * $sat->tle->omegao))); + $sat->sgps->c5 = 2.0 * $coef1 * $sat->sgps->aodp * $betao2 * + (1.0 + 2.75 * ($etasq + $eeta) + $eeta * $etasq); + $theta4 = $theta2 * $theta2; + $temp1 = 3.0 * Predict::ck2 * $pinvsq * $sat->sgps->xnodp; + $temp2 = $temp1 * Predict::ck2 * $pinvsq; + $temp3 = 1.25 * Predict::ck4 * $pinvsq * $pinvsq * $sat->sgps->xnodp; + $sat->sgps->xmdot = $sat->sgps->xnodp + 0.5 * $temp1 * $betao * $sat->sgps->x3thm1 + + 0.0625 * $temp2 * $betao * (13.0 - 78.0 * $theta2 + 137.0 * $theta4); + $x1m5th = 1.0 - 5.0 * $theta2; + $sat->sgps->omgdot = -0.5 * $temp1 * $x1m5th + + 0.0625 * $temp2 * (7.0 - 114.0 * $theta2 + 395.0 * $theta4) + + $temp3 * (3.0 - 36.0 * $theta2 + 49.0 * $theta4); + $xhdot1 = -$temp1 * $sat->sgps->cosio; + $sat->sgps->xnodot = $xhdot1 + (0.5 * $temp2 * (4.0 - 19.0 * $theta2) + + 2.0 * $temp3 * (3.0 - 7.0 * $theta2)) * $sat->sgps->cosio; + $sat->sgps->omgcof = $sat->tle->bstar * $c3 * cos($sat->tle->omegao); + $sat->sgps->xmcof = -Predict::tothrd * $coef * $sat->tle->bstar * Predict::ae / $eeta; + $sat->sgps->xnodcf = 3.5 * $betao2 * $xhdot1 * $sat->sgps->c1; + $sat->sgps->t2cof = 1.5 * $sat->sgps->c1; + $sat->sgps->xlcof = 0.125 * $a3ovk2 * $sat->sgps->sinio * + (3.0 + 5.0 * $sat->sgps->cosio) / (1.0 + $sat->sgps->cosio); + $sat->sgps->aycof = 0.25 * $a3ovk2 * $sat->sgps->sinio; + $sat->sgps->delmo = pow(1.0 + $sat->sgps->eta * cos($sat->tle->xmo), 3); + $sat->sgps->sinmo = sin($sat->tle->xmo); + $sat->sgps->x7thm1 = 7.0 * $theta2 - 1.0; + if (~$sat->flags & self::SIMPLE_FLAG) { + $c1sq = $sat->sgps->c1 * $sat->sgps->c1; + $sat->sgps->d2 = 4.0 * $sat->sgps->aodp * $tsi * $c1sq; + $temp = $sat->sgps->d2 * $tsi * $sat->sgps->c1 / 3.0; + $sat->sgps->d3 = (17.0 * $sat->sgps->aodp + $s4) * $temp; + $sat->sgps->d4 = 0.5 * $temp * $sat->sgps->aodp * $tsi * + (221.0 * $sat->sgps->aodp + 31.0 * $s4) * $sat->sgps->c1; + $sat->sgps->t3cof = $sat->sgps->d2 + 2.0 * $c1sq; + $sat->sgps->t4cof = 0.25 * (3.0 * $sat->sgps->d3 + $sat->sgps->c1 * + (12.0 * $sat->sgps->d2 + 10.0 * $c1sq)); + $sat->sgps->t5cof = 0.2 * (3.0 * $sat->sgps->d4 + + 12.0 * $sat->sgps->c1 * $sat->sgps->d3 + + 6.0 * $sat->sgps->d2 * $sat->sgps->d2 + + 15.0 * $c1sq * (2.0 * $sat->sgps->d2 + $c1sq)); + }; /* End of if (isFlagClear(SIMPLE_FLAG)) */ + }; /* End of SGP4() initialization */ + + /* Update for secular gravity and atmospheric drag. */ + $xmdf = $sat->tle->xmo + $sat->sgps->xmdot * $tsince; + $omgadf = $sat->tle->omegao + $sat->sgps->omgdot * $tsince; + $xnoddf = $sat->tle->xnodeo + $sat->sgps->xnodot * $tsince; + $omega = $omgadf; + $xmp = $xmdf; + $tsq = $tsince * $tsince; + $xnode = $xnoddf + $sat->sgps->xnodcf * $tsq; + $tempa = 1.0 - $sat->sgps->c1 * $tsince; + $tempe = $sat->tle->bstar * $sat->sgps->c4 * $tsince; + $templ = $sat->sgps->t2cof * $tsq; + if (~$sat->flags & self::SIMPLE_FLAG) { + $delomg = $sat->sgps->omgcof * $tsince; + $delm = $sat->sgps->xmcof * (pow(1 + $sat->sgps->eta * cos($xmdf), 3) - $sat->sgps->delmo); + $temp = $delomg + $delm; + $xmp = $xmdf + $temp; + $omega = $omgadf - $temp; + $tcube = $tsq * $tsince; + $tfour = $tsince * $tcube; + $tempa = $tempa - $sat->sgps->d2 * $tsq - $sat->sgps->d3 * $tcube - $sat->sgps->d4 * $tfour; + $tempe = $tempe + $sat->tle->bstar * $sat->sgps->c5 * (sin($xmp) - $sat->sgps->sinmo); + $templ = $templ + $sat->sgps->t3cof * $tcube + $tfour * + ($sat->sgps->t4cof + $tsince * $sat->sgps->t5cof); + }; /* End of if (isFlagClear(SIMPLE_FLAG)) */ + + $a = $sat->sgps->aodp * pow($tempa, 2); + $e = $sat->tle->eo - $tempe; + $xl = $xmp + $omega + $xnode + $sat->sgps->xnodp * $templ; + $beta = sqrt(1.0 - ($e * $e)); + $xn = Predict::xke / pow($a, 1.5); + + /* Long period periodics */ + $axn = $e * cos($omega); + $temp = 1.0 / ($a * $beta * $beta); + $xll = $temp * $sat->sgps->xlcof * $axn; + $aynl = $temp * $sat->sgps->aycof; + $xlt = $xl + $xll; + $ayn = $e * sin($omega) + $aynl; + + /* Solve Kepler's' Equation */ + $capu = Predict_Math::FMod2p($xlt - $xnode); + $temp2 = $capu; + + $i = 0; + do { + $sinepw = sin($temp2); + $cosepw = cos($temp2); + $temp3 = $axn * $sinepw; + $temp4 = $ayn * $cosepw; + $temp5 = $axn * $cosepw; + $temp6 = $ayn * $sinepw; + $epw = ($capu - $temp4 + $temp3 - $temp2) / (1.0 - $temp5 - $temp6) + $temp2; + if (abs($epw - $temp2) <= Predict::e6a) { + break; + } + $temp2 = $epw; + } while ($i++ < 10); + + /* Short period preliminary quantities */ + $ecose = $temp5 + $temp6; + $esine = $temp3 - $temp4; + $elsq = $axn * $axn + $ayn * $ayn; + $temp = 1.0 - $elsq; + $pl = $a * $temp; + $r = $a * (1.0 - $ecose); + $temp1 = 1.0 / $r; + $rdot = Predict::xke * sqrt($a) * $esine * $temp1; + $rfdot = Predict::xke * sqrt($pl) * $temp1; + $temp2 = $a * $temp1; + $betal = sqrt($temp); + $temp3 = 1.0 / (1.0 + $betal); + $cosu = $temp2 * ($cosepw - $axn + $ayn * $esine * $temp3); + $sinu = $temp2 * ($sinepw - $ayn - $axn * $esine * $temp3); + $u = Predict_Math::AcTan($sinu, $cosu); + $sin2u = 2.0 * $sinu * $cosu; + $cos2u = 2.0 * $cosu * $cosu - 1.0; + $temp = 1.0 / $pl; + $temp1 = Predict::ck2 * $temp; + $temp2 = $temp1 * $temp; + + /* Update for short periodics */ + $rk = $r * (1.0 - 1.5 * $temp2 * $betal * $sat->sgps->x3thm1) + + 0.5 * $temp1 * $sat->sgps->x1mth2 * $cos2u; + $uk = $u - 0.25 * $temp2 * $sat->sgps->x7thm1 * $sin2u; + $xnodek = $xnode + 1.5 * $temp2 * $sat->sgps->cosio * $sin2u; + $xinck = $sat->tle->xincl + 1.5 * $temp2 * $sat->sgps->cosio * $sat->sgps->sinio * $cos2u; + $rdotk = $rdot - $xn * $temp1 * $sat->sgps->x1mth2 * $sin2u; + $rfdotk = $rfdot + $xn * $temp1 * ($sat->sgps->x1mth2 * $cos2u + 1.5 * $sat->sgps->x3thm1); + + + /* Orientation vectors */ + $sinuk = sin($uk); + $cosuk = cos($uk); + $sinik = sin($xinck); + $cosik = cos($xinck); + $sinnok = sin($xnodek); + $cosnok = cos($xnodek); + $xmx = -$sinnok * $cosik; + $xmy = $cosnok * $cosik; + $ux = $xmx * $sinuk + $cosnok * $cosuk; + $uy = $xmy * $sinuk + $sinnok * $cosuk; + $uz = $sinik * $sinuk; + $vx = $xmx * $cosuk - $cosnok * $sinuk; + $vy = $xmy * $cosuk - $sinnok * $sinuk; + $vz = $sinik * $cosuk; + + /* Position and velocity */ + $sat->pos->x = $rk * $ux; + $sat->pos->y = $rk * $uy; + $sat->pos->z = $rk * $uz; + $sat->vel->x = $rdotk * $ux + $rfdotk * $vx; + $sat->vel->y = $rdotk * $uy + $rfdotk * $vy; + $sat->vel->z = $rdotk * $uz + $rfdotk * $vz; + + $sat->phase = $xlt - $xnode - $omgadf + Predict::twopi; + if ($sat->phase < 0) { + $sat->phase += Predict::twopi; + } + $sat->phase = Predict_Math::FMod2p($sat->phase); + + $sat->tle->omegao1 = $omega; + $sat->tle->xincl1 = $xinck; + $sat->tle->xnodeo1 = $xnodek; + + } /*SGP4*/ + + /* SDP4 */ + /* This function is used to calculate the position and velocity */ + /* of deep-space (period > 225 minutes) satellites. tsince is */ + /* time since epoch in minutes, tle is a pointer to a tle_t */ + /* structure with Keplerian orbital elements and pos and vel */ + /* are vector_t structures returning ECI satellite position and */ + /* velocity. Use Convert_Sat_State() to convert to km and km/s. */ + public function SDP4(Predict_Sat $sat, $tsince) + { + /* Initialization */ + if (~$sat->flags & self::SDP4_INITIALIZED_FLAG) { + + $sat->flags |= self::SDP4_INITIALIZED_FLAG; + + /* Recover original mean motion (xnodp) and */ + /* semimajor axis (aodp) from input elements. */ + $a1 = pow(Predict::xke / $sat->tle->xno, Predict::tothrd); + $sat->deep_arg->cosio = cos($sat->tle->xincl); + $sat->deep_arg->theta2 = $sat->deep_arg->cosio * $sat->deep_arg->cosio; + $sat->sgps->x3thm1 = 3.0 * $sat->deep_arg->theta2 - 1.0; + $sat->deep_arg->eosq = $sat->tle->eo * $sat->tle->eo; + $sat->deep_arg->betao2 = 1.0 - $sat->deep_arg->eosq; + $sat->deep_arg->betao = sqrt($sat->deep_arg->betao2); + $del1 = 1.5 * Predict::ck2 * $sat->sgps->x3thm1 / + ($a1 * $a1 * $sat->deep_arg->betao * $sat->deep_arg->betao2); + $ao = $a1 * (1.0 - $del1 * (0.5 * Predict::tothrd + $del1 * (1.0 + 134.0 / 81.0 * $del1))); + $delo = 1.5 * Predict::ck2 * $sat->sgps->x3thm1 / + ($ao * $ao * $sat->deep_arg->betao * $sat->deep_arg->betao2); + $sat->deep_arg->xnodp = $sat->tle->xno / (1.0 + $delo); + $sat->deep_arg->aodp = $ao / (1.0 - $delo); + + /* For perigee below 156 km, the values */ + /* of s and qoms2t are altered. */ + $s4 = Predict::__s__; + $qoms24 = Predict::qoms2t; + $perige = ($sat->deep_arg->aodp * (1.0 - $sat->tle->eo) - Predict::ae) * Predict::xkmper; + if ($perige < 156.0) { + if ($perige <= 98.0) { + $s4 = 20.0; + } else { + $s4 = $perige - 78.0; + } + $qoms24 = pow((120.0 - $s4) * Predict::ae / Predict::xkmper, 4); + $s4 = $s4 / Predict::xkmper + Predict::ae; + } + $pinvsq = 1.0 / ($sat->deep_arg->aodp * $sat->deep_arg->aodp * + $sat->deep_arg->betao2 * $sat->deep_arg->betao2); + $sat->deep_arg->sing = sin($sat->tle->omegao); + $sat->deep_arg->cosg = cos($sat->tle->omegao); + $tsi = 1.0 / ($sat->deep_arg->aodp - $s4); + $eta = $sat->deep_arg->aodp * $sat->tle->eo * $tsi; + $etasq = $eta * $eta; + $eeta = $sat->tle->eo * $eta; + $psisq = abs(1.0 - $etasq); + $coef = $qoms24 * pow($tsi, 4); + $coef1 = $coef / pow($psisq, 3.5); + $c2 = $coef1 * $sat->deep_arg->xnodp * ($sat->deep_arg->aodp * + (1.0 + 1.5 * $etasq + $eeta * + (4.0 + $etasq)) + 0.75 * Predict::ck2 * $tsi / $psisq * + $sat->sgps->x3thm1 * (8.0 + 3.0 * $etasq * + (8.0 + $etasq))); + $sat->sgps->c1 = $sat->tle->bstar * $c2; + $sat->deep_arg->sinio = sin($sat->tle->xincl); + $a3ovk2 = -Predict::xj3 / Predict::ck2 * pow(Predict::ae, 3); + $sat->sgps->x1mth2 = 1.0 - $sat->deep_arg->theta2; + $sat->sgps->c4 = 2.0 * $sat->deep_arg->xnodp * $coef1 * + $sat->deep_arg->aodp * $sat->deep_arg->betao2 * + ($eta * (2.0 + 0.5 * $etasq) + $sat->tle->eo * + (0.5 + 2.0 * $etasq) - 2.0 * Predict::ck2 * $tsi / + ($sat->deep_arg->aodp * $psisq) * (-3.0 * $sat->sgps->x3thm1 * + (1.0 - 2.0 * $eeta + $etasq * + (1.5 - 0.5 * $eeta)) + + 0.75 * $sat->sgps->x1mth2 * + (2.0 * $etasq - $eeta * (1.0 + $etasq)) * + cos(2.0 * $sat->tle->omegao))); + $theta4 = $sat->deep_arg->theta2 * $sat->deep_arg->theta2; + $temp1 = 3.0 * Predict::ck2 * $pinvsq * $sat->deep_arg->xnodp; + $temp2 = $temp1 * Predict::ck2 * $pinvsq; + $temp3 = 1.25 * Predict::ck4 * $pinvsq * $pinvsq * $sat->deep_arg->xnodp; + $sat->deep_arg->xmdot = $sat->deep_arg->xnodp + 0.5 * $temp1 * $sat->deep_arg->betao * + $sat->sgps->x3thm1 + 0.0625 * $temp2 * $sat->deep_arg->betao * + (13.0 - 78.0 * $sat->deep_arg->theta2 + 137.0 * $theta4); + $x1m5th = 1.0 - 5.0 * $sat->deep_arg->theta2; + $sat->deep_arg->omgdot = -0.5 * $temp1 * $x1m5th + 0.0625 * $temp2 * + (7.0 - 114.0 * $sat->deep_arg->theta2 + 395.0 * $theta4) + + $temp3 * (3.0 - 36.0 * $sat->deep_arg->theta2 + 49.0 * $theta4); + $xhdot1 = -$temp1 * $sat->deep_arg->cosio; + $sat->deep_arg->xnodot = $xhdot1 + (0.5 * $temp2 * (4.0 - 19.0 * $sat->deep_arg->theta2) + + 2.0 * $temp3 * (3.0 - 7.0 * $sat->deep_arg->theta2)) * + $sat->deep_arg->cosio; + $sat->sgps->xnodcf = 3.5 * $sat->deep_arg->betao2 * $xhdot1 * $sat->sgps->c1; + $sat->sgps->t2cof = 1.5 * $sat->sgps->c1; + $sat->sgps->xlcof = 0.125 * $a3ovk2 * $sat->deep_arg->sinio * + (3.0 + 5.0 * $sat->deep_arg->cosio) / (1.0 + $sat->deep_arg->cosio); + $sat->sgps->aycof = 0.25 * $a3ovk2 * $sat->deep_arg->sinio; + $sat->sgps->x7thm1 = 7.0 * $sat->deep_arg->theta2 - 1.0; + + /* initialize Deep() */ + $this->Deep(self::dpinit, $sat); + }; /*End of SDP4() initialization */ + + /* Update for secular gravity and atmospheric drag */ + $xmdf = $sat->tle->xmo + $sat->deep_arg->xmdot * $tsince; + $sat->deep_arg->omgadf = $sat->tle->omegao + $sat->deep_arg->omgdot * $tsince; + $xnoddf = $sat->tle->xnodeo + $sat->deep_arg->xnodot * $tsince; + $tsq = $tsince * $tsince; + $sat->deep_arg->xnode = $xnoddf + $sat->sgps->xnodcf * $tsq; + $tempa = 1.0 - $sat->sgps->c1 * $tsince; + $tempe = $sat->tle->bstar * $sat->sgps->c4 * $tsince; + $templ = $sat->sgps->t2cof * $tsq; + $sat->deep_arg->xn = $sat->deep_arg->xnodp; + + /* Update for deep-space secular effects */ + $sat->deep_arg->xll = $xmdf; + $sat->deep_arg->t = $tsince; + + $this->Deep(self::dpsec, $sat); + + $xmdf = $sat->deep_arg->xll; + $a = pow(Predict::xke / $sat->deep_arg->xn, Predict::tothrd) * $tempa * $tempa; + $sat->deep_arg->em = $sat->deep_arg->em - $tempe; + $xmam = $xmdf + $sat->deep_arg->xnodp * $templ; + + /* Update for deep-space periodic effects */ + $sat->deep_arg->xll = $xmam; + + $this->Deep(self::dpper, $sat); + + $xmam = $sat->deep_arg->xll; + $xl = $xmam + $sat->deep_arg->omgadf + $sat->deep_arg->xnode; + $beta = sqrt(1.0 - $sat->deep_arg->em * $sat->deep_arg->em); + $sat->deep_arg->xn = Predict::xke / pow($a, 1.5); + + /* Long period periodics */ + $axn = $sat->deep_arg->em * cos($sat->deep_arg->omgadf); + $temp = 1.0 / ($a * $beta * $beta); + $xll = $temp * $sat->sgps->xlcof * $axn; + $aynl = $temp * $sat->sgps->aycof; + $xlt = $xl + $xll; + $ayn = $sat->deep_arg->em * sin($sat->deep_arg->omgadf) + $aynl; + + /* Solve Kepler's Equation */ + $capu = Predict_Math::FMod2p ($xlt - $sat->deep_arg->xnode); + $temp2 = $capu; + + $i = 0; + do { + $sinepw = sin($temp2); + $cosepw = cos($temp2); + $temp3 = $axn * $sinepw; + $temp4 = $ayn * $cosepw; + $temp5 = $axn * $cosepw; + $temp6 = $ayn * $sinepw; + $epw = ($capu - $temp4 + $temp3 - $temp2) / (1.0 - $temp5 - $temp6) + $temp2; + if (abs($epw - $temp2) <= Predict::e6a) { + break; + } + $temp2 = $epw; + } while ($i++ < 10); + + /* Short period preliminary quantities */ + $ecose = $temp5 + $temp6; + $esine = $temp3 - $temp4; + $elsq = $axn * $axn + $ayn * $ayn; + $temp = 1.0 - $elsq; + $pl = $a * $temp; + $r = $a * (1.0 - $ecose); + $temp1 = 1.0 / $r; + $rdot = Predict::xke * sqrt($a) * $esine * $temp1; + $rfdot = Predict::xke * sqrt($pl) * $temp1; + $temp2 = $a * $temp1; + $betal = sqrt($temp); + $temp3 = 1.0 / (1.0 + $betal); + $cosu = $temp2 * ($cosepw - $axn + $ayn * $esine * $temp3); + $sinu = $temp2 * ($sinepw - $ayn - $axn * $esine * $temp3); + $u = Predict_Math::AcTan($sinu, $cosu); + $sin2u = 2.0 * $sinu * $cosu; + $cos2u = 2.0 * $cosu * $cosu - 1.0; + $temp = 1.0 / $pl; + $temp1 = Predict::ck2 * $temp; + $temp2 = $temp1 * $temp; + + /* Update for short periodics */ + $rk = $r * (1.0 - 1.5 * $temp2 * $betal * $sat->sgps->x3thm1) + + 0.5 * $temp1 * $sat->sgps->x1mth2 * $cos2u; + $uk = $u - 0.25 * $temp2 * $sat->sgps->x7thm1 * $sin2u; + $xnodek = $sat->deep_arg->xnode + 1.5 * $temp2 * $sat->deep_arg->cosio * $sin2u; + $xinck = $sat->deep_arg->xinc + 1.5 * $temp2 * + $sat->deep_arg->cosio * $sat->deep_arg->sinio * $cos2u; + $rdotk = $rdot - $sat->deep_arg->xn * $temp1 * $sat->sgps->x1mth2 * $sin2u; + $rfdotk = $rfdot + $sat->deep_arg->xn * $temp1 * + ($sat->sgps->x1mth2 * $cos2u + 1.5 * $sat->sgps->x3thm1); + + /* Orientation vectors */ + $sinuk = sin($uk); + $cosuk = cos($uk); + $sinik = sin($xinck); + $cosik = cos($xinck); + $sinnok = sin($xnodek); + $cosnok = cos($xnodek); + $xmx = -$sinnok * $cosik; + $xmy = $cosnok * $cosik; + $ux = $xmx * $sinuk + $cosnok * $cosuk; + $uy = $xmy * $sinuk + $sinnok * $cosuk; + $uz = $sinik * $sinuk; + $vx = $xmx * $cosuk - $cosnok * $sinuk; + $vy = $xmy * $cosuk - $sinnok * $sinuk; + $vz = $sinik * $cosuk; + + /* Position and velocity */ + $sat->pos->x = $rk * $ux; + $sat->pos->y = $rk * $uy; + $sat->pos->z = $rk * $uz; + $sat->vel->x = $rdotk * $ux + $rfdotk * $vx; + $sat->vel->y = $rdotk * $uy + $rfdotk * $vy; + $sat->vel->z = $rdotk * $uz + $rfdotk * $vz; + + /* Phase in rads */ + $sat->phase = $xlt - $sat->deep_arg->xnode - $sat->deep_arg->omgadf + Predict::twopi; + if ($sat->phase < 0.0) { + $sat->phase += Predict::twopi; + } + $sat->phase = Predict_Math::FMod2p ($sat->phase); + + $sat->tle->omegao1 = $sat->deep_arg->omgadf; + $sat->tle->xincl1 = $sat->deep_arg->xinc; + $sat->tle->xnodeo1 = $sat->deep_arg->xnode; + } /* SDP4 */ + + + /* DEEP */ + /* This function is used by SDP4 to add lunar and solar */ + /* perturbation effects to deep-space orbit objects. */ + public function Deep($ientry, Predict_Sat $sat) + { + switch ($ientry) { + case self::dpinit : /* Entrance for deep space initialization */ + $sat->dps->thgr = Predict_Time::ThetaG($sat->tle->epoch, $sat->deep_arg); + $eq = $sat->tle->eo; + $sat->dps->xnq = $sat->deep_arg->xnodp; + $aqnv = 1.0 / $sat->deep_arg->aodp; + $sat->dps->xqncl = $sat->tle->xincl; + $xmao = $sat->tle->xmo; + $xpidot = $sat->deep_arg->omgdot + $sat->deep_arg->xnodot; + $sinq = sin($sat->tle->xnodeo); + $cosq = cos($sat->tle->xnodeo); + $sat->dps->omegaq = $sat->tle->omegao; + $sat->dps->preep = 0; + + /* Initialize lunar solar terms */ + $day = $sat->deep_arg->ds50 + 18261.5; /* Days since 1900 Jan 0.5 */ + if ($day != $sat->dps->preep) { + $sat->dps->preep = $day; + $xnodce = 4.5236020 - 9.2422029E-4 * $day; + $stem = sin($xnodce); + $ctem = cos($xnodce); + $sat->dps->zcosil = 0.91375164 - 0.03568096 * $ctem; + $sat->dps->zsinil = sqrt(1.0 - $sat->dps->zcosil * $sat->dps->zcosil); + $sat->dps->zsinhl = 0.089683511 * $stem / $sat->dps->zsinil; + $sat->dps->zcoshl = sqrt(1.0 - $sat->dps->zsinhl * $sat->dps->zsinhl); + $c = 4.7199672 + 0.22997150 * $day; + $gam = 5.8351514 + 0.0019443680 * $day; + $sat->dps->zmol = Predict_Math::FMod2p($c - $gam); + $zx = 0.39785416 * $stem / $sat->dps->zsinil; + $zy = $sat->dps->zcoshl * $ctem + 0.91744867 * $sat->dps->zsinhl * $stem; + $zx = Predict_Math::AcTan($zx, $zy); + $zx = $gam + $zx - $xnodce; + $sat->dps->zcosgl = cos($zx); + $sat->dps->zsingl = sin($zx); + $sat->dps->zmos = 6.2565837 + 0.017201977 * $day; + $sat->dps->zmos = Predict_Math::FMod2p($sat->dps->zmos); + } /* End if(day != preep) */ + + /* Do solar terms */ + $sat->dps->savtsn = 1E20; + $zcosg = Predict::zcosgs; + $zsing = Predict::zsings; + $zcosi = Predict::zcosis; + $zsini = Predict::zsinis; + $zcosh = $cosq; + $zsinh = $sinq; + $cc = Predict::c1ss; + $zn = Predict::zns; + $ze = Predict::zes; + $zmo = $sat->dps->zmos; + $xnoi = 1.0 / $sat->dps->xnq; + + /* Loop breaks when Solar terms are done a second */ + /* time, after Lunar terms are initialized */ + for(;;) { + /* Solar terms done again after Lunar terms are done */ + $a1 = $zcosg * $zcosh + $zsing * $zcosi * $zsinh; + $a3 = -$zsing * $zcosh + $zcosg * $zcosi * $zsinh; + $a7 = -$zcosg * $zsinh + $zsing * $zcosi * $zcosh; + $a8 = $zsing * $zsini; + $a9 = $zsing * $zsinh + $zcosg * $zcosi * $zcosh; + $a10 = $zcosg * $zsini; + $a2 = $sat->deep_arg->cosio * $a7 + $sat->deep_arg->sinio * $a8; + $a4 = $sat->deep_arg->cosio * $a9 + $sat->deep_arg->sinio * $a10; + $a5 = -$sat->deep_arg->sinio * $a7 + $sat->deep_arg->cosio * $a8; + $a6 = -$sat->deep_arg->sinio * $a9 + $sat->deep_arg->cosio * $a10; + $x1 = $a1 * $sat->deep_arg->cosg + $a2 * $sat->deep_arg->sing; + $x2 = $a3 * $sat->deep_arg->cosg + $a4 * $sat->deep_arg->sing; + $x3 = -$a1 * $sat->deep_arg->sing + $a2 * $sat->deep_arg->cosg; + $x4 = -$a3 * $sat->deep_arg->sing + $a4 * $sat->deep_arg->cosg; + $x5 = $a5 * $sat->deep_arg->sing; + $x6 = $a6 * $sat->deep_arg->sing; + $x7 = $a5 * $sat->deep_arg->cosg; + $x8 = $a6 * $sat->deep_arg->cosg; + $z31 = 12 * $x1 * $x1 - 3 * $x3 * $x3; + $z32 = 24 * $x1 * $x2 - 6 * $x3 * $x4; + $z33 = 12 * $x2 * $x2 - 3 * $x4 * $x4; + $z1 = 3 * ($a1 * $a1 + $a2 * $a2) + $z31 * $sat->deep_arg->eosq; + $z2 = 6 * ($a1 * $a3 + $a2 * $a4) + $z32 * $sat->deep_arg->eosq; + $z3 = 3 * ($a3 * $a3 + $a4 * $a4) + $z33 * $sat->deep_arg->eosq; + $z11 = -6 * $a1 * $a5 + $sat->deep_arg->eosq * (-24 * $x1 * $x7 - 6 * $x3 * $x5); + $z12 = -6 * ($a1 * $a6 + $a3 * $a5) + $sat->deep_arg->eosq * + (-24 * ($x2 * $x7 + $x1 * $x8) - 6 * ($x3 * $x6 + $x4 * $x5)); + $z13 = -6 * $a3 * $a6 + $sat->deep_arg->eosq * (-24 * $x2 * $x8 - 6 * $x4 * $x6); + $z21 = 6 * $a2 * $a5 + $sat->deep_arg->eosq * (24 * $x1 * $x5 - 6 * $x3 * $x7); + $z22 = 6 * ($a4 * $a5 + $a2 * $a6) + $sat->deep_arg->eosq * + (24 * ($x2 * $x5 + $x1 * $x6) - 6 * ($x4 * $x7 + $x3 * $x8)); + $z23 = 6 * $a4 * $a6 + $sat->deep_arg->eosq * (24 * $x2 * $x6 - 6 * $x4 * $x8); + $z1 = $z1 + $z1 + $sat->deep_arg->betao2 * $z31; + $z2 = $z2 + $z2 + $sat->deep_arg->betao2 * $z32; + $z3 = $z3 + $z3 + $sat->deep_arg->betao2 * $z33; + $s3 = $cc * $xnoi; + $s2 = -0.5 * $s3 / $sat->deep_arg->betao; + $s4 = $s3 * $sat->deep_arg->betao; + $s1 = -15 * $eq * $s4; + $s5 = $x1 * $x3 + $x2 * $x4; + $s6 = $x2 * $x3 + $x1 * $x4; + $s7 = $x2 * $x4 - $x1 * $x3; + $se = $s1 * $zn * $s5; + $si = $s2 * $zn * ($z11 + $z13); + $sl = -$zn * $s3 * ($z1 + $z3 - 14 - 6 * $sat->deep_arg->eosq); + $sgh = $s4 * $zn * ($z31 + $z33 - 6); + $sh = -$zn * $s2 * ($z21 + $z23); + if ($sat->dps->xqncl < 5.2359877E-2) { + $sh = 0; + } + $sat->dps->ee2 = 2 * $s1 * $s6; + $sat->dps->e3 = 2 * $s1 * $s7; + $sat->dps->xi2 = 2 * $s2 * $z12; + $sat->dps->xi3 = 2 * $s2 * ($z13 - $z11); + $sat->dps->xl2 = -2 * $s3 * $z2; + $sat->dps->xl3 = -2 * $s3 * ($z3 - $z1); + $sat->dps->xl4 = -2 * $s3 * (-21 - 9 * $sat->deep_arg->eosq) * $ze; + $sat->dps->xgh2 = 2 * $s4 * $z32; + $sat->dps->xgh3 = 2 * $s4 * ($z33 - $z31); + $sat->dps->xgh4 = -18 * $s4 * $ze; + $sat->dps->xh2 = -2 * $s2 * $z22; + $sat->dps->xh3 = -2 * $s2 * ($z23 - $z21); + + if ($sat->flags & self::LUNAR_TERMS_DONE_FLAG) { + break; + } + + /* Do lunar terms */ + $sat->dps->sse = $se; + $sat->dps->ssi = $si; + $sat->dps->ssl = $sl; + $sat->dps->ssh = $sh / $sat->deep_arg->sinio; + $sat->dps->ssg = $sgh - $sat->deep_arg->cosio * $sat->dps->ssh; + $sat->dps->se2 = $sat->dps->ee2; + $sat->dps->si2 = $sat->dps->xi2; + $sat->dps->sl2 = $sat->dps->xl2; + $sat->dps->sgh2 = $sat->dps->xgh2; + $sat->dps->sh2 = $sat->dps->xh2; + $sat->dps->se3 = $sat->dps->e3; + $sat->dps->si3 = $sat->dps->xi3; + $sat->dps->sl3 = $sat->dps->xl3; + $sat->dps->sgh3 = $sat->dps->xgh3; + $sat->dps->sh3 = $sat->dps->xh3; + $sat->dps->sl4 = $sat->dps->xl4; + $sat->dps->sgh4 = $sat->dps->xgh4; + $zcosg = $sat->dps->zcosgl; + $zsing = $sat->dps->zsingl; + $zcosi = $sat->dps->zcosil; + $zsini = $sat->dps->zsinil; + $zcosh = $sat->dps->zcoshl * $cosq + $sat->dps->zsinhl * $sinq; + $zsinh = $sinq * $sat->dps->zcoshl - $cosq * $sat->dps->zsinhl; + $zn = Predict::znl; + $cc = Predict::c1l; + $ze = Predict::zel; + $zmo = $sat->dps->zmol; + $sat->flags |= self::LUNAR_TERMS_DONE_FLAG; + } /* End of for(;;) */ + + $sat->dps->sse = $sat->dps->sse + $se; + $sat->dps->ssi = $sat->dps->ssi + $si; + $sat->dps->ssl = $sat->dps->ssl + $sl; + $sat->dps->ssg = $sat->dps->ssg + $sgh - $sat->deep_arg->cosio / $sat->deep_arg->sinio * $sh; + $sat->dps->ssh = $sat->dps->ssh + $sh / $sat->deep_arg->sinio; + + /* Geopotential resonance initialization for 12 hour orbits */ + $sat->flags &= ~self::RESONANCE_FLAG; + $sat->flags &= ~self::SYNCHRONOUS_FLAG; + + if (!(($sat->dps->xnq < 0.0052359877) && ($sat->dps->xnq > 0.0034906585))) { + if( ($sat->dps->xnq < 0.00826) || ($sat->dps->xnq > 0.00924) ) { + return; + } + if ($eq < 0.5) { + return; + } + $sat->flags |= self::RESONANCE_FLAG; + $eoc = $eq * $sat->deep_arg->eosq; + $g201 = -0.306 - ($eq - 0.64) * 0.440; + if ($eq <= 0.65) { + $g211 = 3.616 - 13.247 * $eq + 16.290 * $sat->deep_arg->eosq; + $g310 = -19.302 + 117.390 * $eq - 228.419 * + $sat->deep_arg->eosq + 156.591 * $eoc; + $g322 = -18.9068 + 109.7927 * $eq - 214.6334 * + $sat->deep_arg->eosq + 146.5816 * $eoc; + $g410 = -41.122 + 242.694 * $eq - 471.094 * + $sat->deep_arg->eosq + 313.953 * $eoc; + $g422 = -146.407 + 841.880 * $eq - 1629.014 * + $sat->deep_arg->eosq + 1083.435 * $eoc; + $g520 = -532.114 + 3017.977 * $eq - 5740 * + $sat->deep_arg->eosq + 3708.276 * $eoc; + } else { + $g211 = -72.099 + 331.819 * $eq - 508.738 * + $sat->deep_arg->eosq + 266.724 * $eoc; + $g310 = -346.844 + 1582.851 * $eq - 2415.925 * + $sat->deep_arg->eosq + 1246.113 * $eoc; + $g322 = -342.585 + 1554.908 * $eq - 2366.899 * + $sat->deep_arg->eosq + 1215.972 * $eoc; + $g410 = -1052.797 + 4758.686 * $eq - 7193.992 * + $sat->deep_arg->eosq + 3651.957 * $eoc; + $g422 = -3581.69 + 16178.11 * $eq - 24462.77 * + $sat->deep_arg->eosq+ 12422.52 * $eoc; + if ($eq <= 0.715) { + $g520 = 1464.74 - 4664.75 * $eq + 3763.64 * $sat->deep_arg->eosq; + } else { + $g520 = -5149.66 + 29936.92 * $eq - 54087.36 * + $sat->deep_arg->eosq + 31324.56 * $eoc; + } + } /* End if (eq <= 0.65) */ + + if ($eq < 0.7) { + $g533 = -919.2277 + 4988.61 * $eq - 9064.77 * + $sat->deep_arg->eosq + 5542.21 * $eoc; + $g521 = -822.71072 + 4568.6173 * $eq - 8491.4146 * + $sat->deep_arg->eosq + 5337.524 * $eoc; + $g532 = -853.666 + 4690.25 * $eq - 8624.77 * + $sat->deep_arg->eosq + 5341.4 * $eoc; + } + else { + $g533 = -37995.78 + 161616.52 * $eq - 229838.2* + $sat->deep_arg->eosq + 109377.94 * $eoc; + $g521 = -51752.104 + 218913.95 * $eq - 309468.16* + $sat->deep_arg->eosq + 146349.42 * $eoc; + $g532 = -40023.88 + 170470.89 * $eq - 242699.48* + $sat->deep_arg->eosq + 115605.82 * $eoc; + } /* End if (eq <= 0.7) */ + + $sini2 = $sat->deep_arg->sinio * $sat->deep_arg->sinio; + $f220 = 0.75 * (1 + 2 * $sat->deep_arg->cosio + $sat->deep_arg->theta2); + $f221 = 1.5 * $sini2; + $f321 = 1.875 * $sat->deep_arg->sinio * (1 - 2 * + $sat->deep_arg->cosio - 3 * $sat->deep_arg->theta2); + $f322 = -1.875 * $sat->deep_arg->sinio * (1 + 2* + $sat->deep_arg->cosio - 3 * $sat->deep_arg->theta2); + $f441 = 35 * $sini2 * $f220; + $f442 = 39.3750 * $sini2 * $sini2; + $f522 = 9.84375 * $sat->deep_arg->sinio * ($sini2 * (1 - 2 * $sat->deep_arg->cosio - 5 * + $sat->deep_arg->theta2) + 0.33333333 * (-2 + 4 * $sat->deep_arg->cosio + + 6 * $sat->deep_arg->theta2)); + $f523 = $sat->deep_arg->sinio * (4.92187512 * $sini2 * (-2 - 4 * + $sat->deep_arg->cosio + 10 * $sat->deep_arg->theta2) + 6.56250012 + * (1 + 2 * $sat->deep_arg->cosio - 3 * $sat->deep_arg->theta2)); + $f542 = 29.53125 * $sat->deep_arg->sinio * (2 - 8 * + $sat->deep_arg->cosio + $sat->deep_arg->theta2 * + (-12 + 8 * $sat->deep_arg->cosio + 10 * $sat->deep_arg->theta2)); + $f543 = 29.53125 * $sat->deep_arg->sinio * (-2 - 8 * $sat->deep_arg->cosio + + $sat->deep_arg->theta2 * (12 + 8 * $sat->deep_arg->cosio - 10 * + $sat->deep_arg->theta2)); + $xno2 = $sat->dps->xnq * $sat->dps->xnq; + $ainv2 = $aqnv * $aqnv; + $temp1 = 3 * $xno2 * $ainv2; + $temp = $temp1 * Predict::root22; + $sat->dps->d2201 = $temp * $f220 * $g201; + $sat->dps->d2211 = $temp * $f221 * $g211; + $temp1 = $temp1 * $aqnv; + $temp = $temp1 * Predict::root32; + $sat->dps->d3210 = $temp * $f321 * $g310; + $sat->dps->d3222 = $temp * $f322 * $g322; + $temp1 = $temp1 * $aqnv; + $temp = 2 * $temp1 * Predict::root44; + $sat->dps->d4410 = $temp * $f441 * $g410; + $sat->dps->d4422 = $temp * $f442 * $g422; + $temp1 = $temp1 * $aqnv; + $temp = $temp1 * Predict::root52; + $sat->dps->d5220 = $temp * $f522 * $g520; + $sat->dps->d5232 = $temp * $f523 * $g532; + $temp = 2 * $temp1 * Predict::root54; + $sat->dps->d5421 = $temp * $f542 * $g521; + $sat->dps->d5433 = $temp * $f543 * $g533; + $sat->dps->xlamo = $xmao + $sat->tle->xnodeo + $sat->tle->xnodeo - $sat->dps->thgr - $sat->dps->thgr; + $bfact = $sat->deep_arg->xmdot + $sat->deep_arg->xnodot + + $sat->deep_arg->xnodot - Predict::thdt - Predict::thdt; + $bfact = $bfact + $sat->dps->ssl + $sat->dps->ssh + $sat->dps->ssh; + } else { + $sat->flags |= self::RESONANCE_FLAG; + $sat->flags |= self::SYNCHRONOUS_FLAG; + /* Synchronous resonance terms initialization */ + $g200 = 1 + $sat->deep_arg->eosq * (-2.5 + 0.8125 * $sat->deep_arg->eosq); + $g310 = 1 + 2 * $sat->deep_arg->eosq; + $g300 = 1 + $sat->deep_arg->eosq * (-6 + 6.60937 * $sat->deep_arg->eosq); + $f220 = 0.75 * (1 + $sat->deep_arg->cosio) * (1 + $sat->deep_arg->cosio); + $f311 = 0.9375 * $sat->deep_arg->sinio * $sat->deep_arg->sinio * + (1 + 3 * $sat->deep_arg->cosio) - 0.75 * (1 + $sat->deep_arg->cosio); + $f330 = 1 + $sat->deep_arg->cosio; + $f330 = 1.875 * $f330 * $f330 * $f330; + $sat->dps->del1 = 3 * $sat->dps->xnq * $sat->dps->xnq * $aqnv * $aqnv; + $sat->dps->del2 = 2 * $sat->dps->del1 * $f220 * $g200 * Predict::q22; + $sat->dps->del3 = 3 * $sat->dps->del1 * $f330 * $g300 * Predict::q33 * $aqnv; + $sat->dps->del1 = $sat->dps->del1 * $f311 * $g310 * Predict::q31 * $aqnv; + $sat->dps->fasx2 = 0.13130908; + $sat->dps->fasx4 = 2.8843198; + $sat->dps->fasx6 = 0.37448087; + $sat->dps->xlamo = $xmao + $sat->tle->xnodeo + $sat->tle->omegao - $sat->dps->thgr; + $bfact = $sat->deep_arg->xmdot + $xpidot - Predict::thdt; + $bfact = $bfact + $sat->dps->ssl + $sat->dps->ssg + $sat->dps->ssh; + } /* End if( !(xnq < 0.0052359877) && (xnq > 0.0034906585) ) */ + + $sat->dps->xfact = $bfact - $sat->dps->xnq; + + /* Initialize integrator */ + $sat->dps->xli = $sat->dps->xlamo; + $sat->dps->xni = $sat->dps->xnq; + $sat->dps->atime = 0; + $sat->dps->stepp = 720; + $sat->dps->stepn = -720; + $sat->dps->step2 = 259200; + /* End case self::dpinit: */ + return; + + case self::dpsec: /* Entrance for deep space secular effects */ + $sat->deep_arg->xll = $sat->deep_arg->xll + $sat->dps->ssl * $sat->deep_arg->t; + $sat->deep_arg->omgadf = $sat->deep_arg->omgadf + $sat->dps->ssg * $sat->deep_arg->t; + $sat->deep_arg->xnode = $sat->deep_arg->xnode + $sat->dps->ssh * $sat->deep_arg->t; + $sat->deep_arg->em = $sat->tle->eo + $sat->dps->sse * $sat->deep_arg->t; + $sat->deep_arg->xinc = $sat->tle->xincl + $sat->dps->ssi * $sat->deep_arg->t; + if ($sat->deep_arg->xinc < 0) { + $sat->deep_arg->xinc = -$sat->deep_arg->xinc; + $sat->deep_arg->xnode = $sat->deep_arg->xnode + Predict::pi; + $sat->deep_arg->omgadf = $sat->deep_arg->omgadf - Predict::pi; + } + if(~$sat->flags & self::RESONANCE_FLAG ) { + return; + } + + do { + if ( ($sat->dps->atime == 0) || + (($sat->deep_arg->t >= 0) && ($sat->dps->atime < 0)) || + (($sat->deep_arg->t < 0) && ($sat->dps->atime >= 0)) ) { + /* Epoch restart */ + if ($sat->deep_arg->t >= 0) { + $delt = $sat->dps->stepp; + } else { + $delt = $sat->dps->stepn; + } + + $sat->dps->atime = 0; + $sat->dps->xni = $sat->dps->xnq; + $sat->dps->xli = $sat->dps->xlamo; + } else { + if (abs($sat->deep_arg->t) >= abs($sat->dps->atime)) { + if ($sat->deep_arg->t > 0) { + $delt = $sat->dps->stepp; + } else { + $delt = $sat->dps->stepn; + } + } + } + + do { + if (abs($sat->deep_arg->t - $sat->dps->atime) >= $sat->dps->stepp) { + $sat->flags |= self::DO_LOOP_FLAG; + $sat->flags &= ~self::EPOCH_RESTART_FLAG; + } + else { + $ft = $sat->deep_arg->t - $sat->dps->atime; + $sat->flags &= ~self::DO_LOOP_FLAG; + } + + if (abs($sat->deep_arg->t) < abs($sat->dps->atime)) { + if ($sat->deep_arg->t >= 0) { + $delt = $sat->dps->stepn; + } else { + $delt = $sat->dps->stepp; + } + $sat->flags |= (self::DO_LOOP_FLAG | self::EPOCH_RESTART_FLAG); + } + + /* Dot terms calculated */ + if ($sat->flags & self::SYNCHRONOUS_FLAG) { + $xndot = $sat->dps->del1 * sin($sat->dps->xli - $sat->dps->fasx2) + $sat->dps->del2 * sin(2 * ($sat->dps->xli - $sat->dps->fasx4)) + + $sat->dps->del3 * sin(3 * ($sat->dps->xli - $sat->dps->fasx6)); + $xnddt = $sat->dps->del1 * cos($sat->dps->xli - $sat->dps->fasx2) + 2 * $sat->dps->del2 * cos(2 * ($sat->dps->xli - $sat->dps->fasx4)) + + 3 * $sat->dps->del3 * cos(3 * ($sat->dps->xli - $sat->dps->fasx6)); + } else { + $xomi = $sat->dps->omegaq + $sat->deep_arg->omgdot * $sat->dps->atime; + $x2omi = $xomi + $xomi; + $x2li = $sat->dps->xli + $sat->dps->xli; + $xndot = $sat->dps->d2201 * sin($x2omi + $sat->dps->xli - Predict::g22) + + $sat->dps->d2211 * sin($sat->dps->xli - Predict::g22) + + $sat->dps->d3210 * sin($xomi + $sat->dps->xli - Predict::g32) + + $sat->dps->d3222 * sin(-$xomi + $sat->dps->xli - Predict::g32) + + $sat->dps->d4410 * sin($x2omi + $x2li- Predict::g44) + + $sat->dps->d4422 * sin($x2li- Predict::g44) + + $sat->dps->d5220 * sin($xomi + $sat->dps->xli- Predict::g52) + + $sat->dps->d5232 * sin(-$xomi + $sat->dps->xli- Predict::g52) + + $sat->dps->d5421 * sin($xomi + $x2li - Predict::g54) + + $sat->dps->d5433 * sin(-$xomi + $x2li - Predict::g54); + $xnddt = $sat->dps->d2201 * cos($x2omi + $sat->dps->xli- Predict::g22) + + $sat->dps->d2211 * cos($sat->dps->xli - Predict::g22) + + $sat->dps->d3210 * cos($xomi + $sat->dps->xli - Predict::g32) + + $sat->dps->d3222 * cos(-$xomi + $sat->dps->xli - Predict::g32) + + $sat->dps->d5220 * cos($xomi + $sat->dps->xli - Predict::g52) + + $sat->dps->d5232 * cos(-$xomi + $sat->dps->xli - Predict::g52) + + 2 * ($sat->dps->d4410 * cos($x2omi + $x2li - Predict::g44) + + $sat->dps->d4422 * cos($x2li - Predict::g44) + + $sat->dps->d5421 * cos($xomi + $x2li - Predict::g54) + + $sat->dps->d5433 * cos(-$xomi + $x2li - Predict::g54)); + } /* End of if (isFlagSet(SYNCHRONOUS_FLAG)) */ + + $xldot = $sat->dps->xni + $sat->dps->xfact; + $xnddt = $xnddt * $xldot; + + if ($sat->flags & self::DO_LOOP_FLAG) { + $sat->dps->xli = $sat->dps->xli + $xldot * $delt + $xndot * $sat->dps->step2; + $sat->dps->xni = $sat->dps->xni + $xndot * $delt + $xnddt * $sat->dps->step2; + $sat->dps->atime = $sat->dps->atime + $delt; + } + } while (($sat->flags & self::DO_LOOP_FLAG) && + (~$sat->flags & self::EPOCH_RESTART_FLAG)); + } + while (($sat->flags & self::DO_LOOP_FLAG) && ($sat->flags & self::EPOCH_RESTART_FLAG)); + + $sat->deep_arg->xn = $sat->dps->xni + $xndot * $ft + $xnddt * $ft * $ft * 0.5; + $xl = $sat->dps->xli + $xldot * $ft + $xndot * $ft * $ft * 0.5; + $temp = -$sat->deep_arg->xnode + $sat->dps->thgr + $sat->deep_arg->t * Predict::thdt; + + if (~$sat->flags & self::SYNCHRONOUS_FLAG) { + $sat->deep_arg->xll = $xl + $temp + $temp; + } else { + $sat->deep_arg->xll = $xl - $sat->deep_arg->omgadf + $temp; + } + + return; + /* End case dpsec: */ + + case self::dpper: /* Entrance for lunar-solar periodics */ + $sinis = sin($sat->deep_arg->xinc); + $cosis = cos($sat->deep_arg->xinc); + if (abs($sat->dps->savtsn - $sat->deep_arg->t) >= 30) { + $sat->dps->savtsn = $sat->deep_arg->t; + $zm = $sat->dps->zmos + Predict::zns * $sat->deep_arg->t; + $zf = $zm + 2 * Predict::zes * sin($zm); + $sinzf = sin($zf); + $f2 = 0.5 * $sinzf * $sinzf - 0.25; + $f3 = -0.5 * $sinzf * cos($zf); + $ses = $sat->dps->se2 * $f2 + $sat->dps->se3 * $f3; + $sis = $sat->dps->si2 * $f2 + $sat->dps->si3 * $f3; + $sls = $sat->dps->sl2 * $f2 + $sat->dps->sl3 * $f3 + $sat->dps->sl4 * $sinzf; + $sat->dps->sghs = $sat->dps->sgh2 * $f2 + $sat->dps->sgh3 * $f3 + $sat->dps->sgh4 * $sinzf; + $sat->dps->shs = $sat->dps->sh2 * $f2 + $sat->dps->sh3 * $f3; + $zm = $sat->dps->zmol + Predict::znl * $sat->deep_arg->t; + $zf = $zm + 2 * Predict::zel * sin($zm); + $sinzf = sin($zf); + $f2 = 0.5 * $sinzf * $sinzf - 0.25; + $f3 = -0.5 * $sinzf * cos($zf); + $sel = $sat->dps->ee2 * $f2 + $sat->dps->e3 * $f3; + $sil = $sat->dps->xi2 * $f2 + $sat->dps->xi3 * $f3; + $sll = $sat->dps->xl2 * $f2 + $sat->dps->xl3 * $f3 + $sat->dps->xl4 * $sinzf; + $sat->dps->sghl = $sat->dps->xgh2 * $f2 + $sat->dps->xgh3 * $f3 + $sat->dps->xgh4 * $sinzf; + $sat->dps->sh1 = $sat->dps->xh2 * $f2 + $sat->dps->xh3 * $f3; + $sat->dps->pe = $ses + $sel; + $sat->dps->pinc = $sis + $sil; + $sat->dps->pl = $sls + $sll; + } + + $pgh = $sat->dps->sghs + $sat->dps->sghl; + $ph = $sat->dps->shs + $sat->dps->sh1; + $sat->deep_arg->xinc = $sat->deep_arg->xinc + $sat->dps->pinc; + $sat->deep_arg->em = $sat->deep_arg->em + $sat->dps->pe; + + if ($sat->dps->xqncl >= 0.2) { + /* Apply periodics directly */ + $ph = $ph / $sat->deep_arg->sinio; + $pgh = $pgh - $sat->deep_arg->cosio * $ph; + $sat->deep_arg->omgadf = $sat->deep_arg->omgadf + $pgh; + $sat->deep_arg->xnode = $sat->deep_arg->xnode + $ph; + $sat->deep_arg->xll = $sat->deep_arg->xll + $sat->dps->pl; + } else { + /* Apply periodics with Lyddane modification */ + $sinok = sin($sat->deep_arg->xnode); + $cosok = cos($sat->deep_arg->xnode); + $alfdp = $sinis * $sinok; + $betdp = $sinis * $cosok; + $dalf = $ph * $cosok + $sat->dps->pinc * $cosis * $sinok; + $dbet = -$ph * $sinok + $sat->dps->pinc * $cosis * $cosok; + $alfdp = $alfdp + $dalf; + $betdp = $betdp + $dbet; + $sat->deep_arg->xnode = Predict_Math::FMod2p($sat->deep_arg->xnode); + $xls = $sat->deep_arg->xll + $sat->deep_arg->omgadf + $cosis * $sat->deep_arg->xnode; + $dls = $sat->dps->pl + $pgh - $sat->dps->pinc * $sat->deep_arg->xnode * $sinis; + $xls = $xls + $dls; + $xnoh = $sat->deep_arg->xnode; + $sat->deep_arg->xnode = Predict_Math::AcTan($alfdp, $betdp); + + /* This is a patch to Lyddane modification */ + /* suggested by Rob Matson. */ + if(abs($xnoh - $sat->deep_arg->xnode) > Predict::pi) { + if ($sat->deep_arg->xnode < $xnoh) { + $sat->deep_arg->xnode += Predict::twopi; + } else { + $sat->deep_arg->xnode -= Predict::twopi; + } + } + + $sat->deep_arg->xll = $sat->deep_arg->xll + $sat->dps->pl; + $sat->deep_arg->omgadf = $xls - $sat->deep_arg->xll - cos($sat->deep_arg->xinc) * + $sat->deep_arg->xnode; + } /* End case dpper: */ + return; + + } /* End switch(ientry) */ + + } /* End of Deep() */ + + /** + * Singleton + * + * @param Predict_Sat $sat The current satellite data instance + * + * @return Predict_SGPSDP + */ + public static function getInstance(Predict_Sat $sat) + { + static $instances = array(); + $catnr = $sat->tle->catnr; + if (!isset($instances[$catnr])) { + $instances[$catnr] = new self(); + } + return $instances[$catnr]; + } +} +?> diff --git a/src/predict/Predict/SGSDPStatic.php b/src/predict/Predict/SGSDPStatic.php new file mode 100644 index 000000000..12a43a4cd --- /dev/null +++ b/src/predict/Predict/SGSDPStatic.php @@ -0,0 +1,39 @@ +header); + $this->name = $headerParts[0]; + $this->nickname = $this->name; + $this->tle = $tle; + $this->pos = new Predict_Vector(); + $this->vel = new Predict_Vector(); + $this->sgps = new Predict_SGSDPStatic(); + $this->deep_arg = new Predict_DeepArg(); + $this->dps = new Predict_DeepStatic(); + + $this->select_ephemeris(); + $this->sat_data_init_sat($this); + } + + /* Selects the apropriate ephemeris type to be used */ + /* for predictions according to the data in the TLE */ + /* It also processes values in the tle set so that */ + /* they are apropriate for the sgp4/sdp4 routines */ + public function select_ephemeris() + { + /* Preprocess tle set */ + $this->tle->xnodeo *= Predict::de2ra; + $this->tle->omegao *= Predict::de2ra; + $this->tle->xmo *= Predict::de2ra; + $this->tle->xincl *= Predict::de2ra; + $temp = Predict::twopi / Predict::xmnpda / Predict::xmnpda; + + /* store mean motion before conversion */ + $this->meanmo = $this->tle->xno; + $this->tle->xno = $this->tle->xno * $temp * Predict::xmnpda; + $this->tle->xndt2o *= $temp; + $this->tle->xndd6o = $this->tle->xndd6o * $temp / Predict::xmnpda; + $this->tle->bstar /= Predict::ae; + + /* Period > 225 minutes is deep space */ + $dd1 = Predict::xke / $this->tle->xno; + $dd2 = Predict::tothrd; + $a1 = pow($dd1, $dd2); + $r1 = cos($this->tle->xincl); + $dd1 = 1.0 - $this->tle->eo * $this->tle->eo; + $temp = Predict::ck2 * 1.5 * ($r1 * $r1 * 3.0 - 1.0) / pow($dd1, 1.5); + $del1 = $temp / ($a1 * $a1); + $ao = $a1 * (1.0 - $del1 * (Predict::tothrd * 0.5 + $del1 * + ($del1 * 1.654320987654321 + 1.0))); + $delo = $temp / ($ao * $ao); + $xnodp = $this->tle->xno / ($delo + 1.0); + + /* Select a deep-space/near-earth ephemeris */ + if (Predict::twopi / $xnodp / Predict::xmnpda >= .15625) { + $this->flags |= Predict_SGPSDP::DEEP_SPACE_EPHEM_FLAG; + } else { + $this->flags &= ~Predict_SGPSDP::DEEP_SPACE_EPHEM_FLAG; + } + } + + /** Initialise satellite data. + * @param sat The satellite to initialise. + * @param qth Optional QTH info, use (0,0) if NULL. + * + * This function calculates the satellite data at t = 0, ie. epoch time + * The function is called automatically by gtk_sat_data_read_sat. + */ + public function sat_data_init_sat(Predict_Sat $sat, Predict_QTH $qth = null) + { + $obs_geodetic = new Predict_Geodetic(); + $obs_set = new Predict_ObsSet(); + $sat_geodetic = new Predict_Geodetic(); + /* double jul_utc, age; */ + + $jul_utc = Predict_Time::Julian_Date_of_Epoch($sat->tle->epoch); // => tsince = 0.0 + $sat->jul_epoch = $jul_utc; + + /* initialise observer location */ + if ($qth != null) { + $obs_geodetic->lon = $qth->lon * Predict::de2ra; + $obs_geodetic->lat = $qth->lat * Predict::de2ra; + $obs_geodetic->alt = $qth->alt / 1000.0; + $obs_geodetic->theta = 0; + } + else { + $obs_geodetic->lon = 0.0; + $obs_geodetic->lat = 0.0; + $obs_geodetic->alt = 0.0; + $obs_geodetic->theta = 0; + } + + /* execute computations */ + $sdpsgp = Predict_SGPSDP::getInstance($sat); + if ($sat->flags & Predict_SGPSDP::DEEP_SPACE_EPHEM_FLAG) { + $sdpsgp->SDP4($sat, 0.0); + } else { + $sdpsgp->SGP4($sat, 0.0); + } + + /* scale position and velocity to km and km/sec */ + Predict_Math::Convert_Sat_State($sat->pos, $sat->vel); + + /* get the velocity of the satellite */ + $sat->vel->w = sqrt($sat->vel->x * $sat->vel->x + $sat->vel->y * $sat->vel->y + $sat->vel->z * $sat->vel->z); + $sat->velo = $sat->vel->w; + Predict_SGPObs::Calculate_Obs($jul_utc, $sat->pos, $sat->vel, $obs_geodetic, $obs_set); + Predict_SGPObs::Calculate_LatLonAlt($jul_utc, $sat->pos, $sat_geodetic); + + while ($sat_geodetic->lon < -Predict::pi) { + $sat_geodetic->lon += Predict::twopi; + } + + while ($sat_geodetic->lon > Predict::pi) { + $sat_geodetic->lon -= Predict::twopi; + } + + $sat->az = Predict_Math::Degrees($obs_set->az); + $sat->el = Predict_Math::Degrees($obs_set->el); + $sat->range = $obs_set->range; + $sat->range_rate = $obs_set->range_rate; + $sat->ssplat = Predict_Math::Degrees($sat_geodetic->lat); + $sat->ssplon = Predict_Math::Degrees($sat_geodetic->lon); + $sat->alt = $sat_geodetic->alt; + $sat->ma = Predict_Math::Degrees($sat->phase); + $sat->ma *= 256.0 / 360.0; + $sat->footprint = 2.0 * Predict::xkmper * acos (Predict::xkmper/$sat->pos->w); + $age = 0.0; + $sat->orbit = floor(($sat->tle->xno * Predict::xmnpda / Predict::twopi + + $age * $sat->tle->bstar * Predict::ae) * $age + + $sat->tle->xmo / Predict::twopi) + $sat->tle->revnum - 1; + + /* orbit type */ + $sat->otype = $sat->get_orbit_type($sat); + } + + public function get_orbit_type(Predict_Sat $sat) + { + $orbit = Predict_SGPSDP::ORBIT_TYPE_UNKNOWN; + + if ($this->geostationary($sat)) { + $orbit = Predict_SGPSDP::ORBIT_TYPE_GEO; + } else if ($this->decayed($sat)) { + $orbit = Predict_SGPSDP::ORBIT_TYPE_DECAYED; + } else { + $orbit = Predict_SGPSDP::ORBIT_TYPE_UNKNOWN; + } + + return $orbit; + } + + + /** Determinte whether satellite is in geostationary orbit. + * @author John A. Magliacane, KD2BD + * @param sat Pointer to satellite data. + * @return TRUE if the satellite appears to be in geostationary orbit, + * FALSE otherwise. + * + * A satellite is in geostationary orbit if + * + * fabs (sat.meanmotion - 1.0027) < 0.0002 + * + * Note: Appearantly, the mean motion can deviate much more from 1.0027 than 0.0002 + */ + public function geostationary(Predict_Sat $sat) + { + if (abs($sat->meanmo - 1.0027) < 0.0002) { + return true; + } else { + return false; + } + } + + + /** Determine whether satellite has decayed. + * @author John A. Magliacane, KD2BD + * @author Alexandru Csete, OZ9AEC + * @param sat Pointer to satellite data. + * @return TRUE if the satellite appears to have decayed, FALSE otherwise. + * @bug Modified version of the predict code but it is not tested. + * + * A satellite is decayed if + * + * satepoch + ((16.666666 - sat.meanmo) / (10.0*fabs(sat.drag))) < "now" + * + */ + public function decayed(Predict_Sat $sat) + { + /* tle.xndt2o/(twopi/xmnpda/xmnpda) is the value before converted the + value matches up with the value in predict 2.2.3 */ + /*** FIXME decayed is treated as a static quantity. + It is time dependent. Also sat->jul_utc is often zero + when this function is called + ***/ + if ($sat->jul_epoch + ((16.666666 - $sat->meanmo) / + (10.0 * abs($sat->tle->xndt2o / (Predict::twopi / Predict::xmnpda / Predict::xmnpda)))) < $sat->jul_utc) { + return true; + } else { + return false; + } + } + + /** + * Experimental attempt at calculating apparent magnitude. Known intrinsic + * magnitudes are listed inside the function for now. + * + * @param float $time The daynum the satellite is calculated for + * @param Predict_QTH $qth The observer location + * + * @return null on failure, float otherwise + */ + public function calculateApparentMagnitude($time, Predict_QTH $qth) + { + // Recorded intrinsic magnitudes and their respective + // illumination and distance from heavens-above.com + static $intrinsicMagnitudes = array( + '25544' => array( + 'mag' => -1.3, + 'illum' => .5, + 'distance' => 1000, + ) + ); + + // Return null if we don't have a record of the intrinsic mag + if (!isset($intrinsicMagnitudes[$this->tle->catnr])) { + return null; + } + $imag = $intrinsicMagnitudes[$this->tle->catnr]; + + // Convert the observer's geodetic info to radians and km so + // we can compare vectors + $observerGeo = new Predict_Geodetic(); + $observerGeo->lat = Predict_Math::Radians($qth->lat); + $observerGeo->lon = Predict_Math::Radians($qth->lon); + $observerGeo->alt = $qth->alt * 1000; + + // Now determine the sun and observer positions + $observerPos = new Predict_Vector(); + $observerVel = new Predict_Vector(); + $solarVector = new Predict_Vector(); + Predict_Solar::Calculate_Solar_Position($time, $solarVector); + Predict_SGPObs::Calculate_User_PosVel($time, $observerGeo, $observerPos, $observerVel); + + // Determine the solar phase and and thus the percent illumination + $observerSatPos = new Predict_Vector(); + Predict_Math::Vec_Sub($this->pos, $observerPos, $observerSatPos); + $phaseAngle = Predict_Math::Degrees(Predict_Math::Angle($solarVector, $observerSatPos)); + $illum = $phaseAngle / 180; + + $illuminationChange = $illum / $imag['illum']; + $inverseSquareOfDistanceChange = pow(($imag['distance'] / $this->range), 2); + $changeInMagnitude = log( + $illuminationChange * $inverseSquareOfDistanceChange, + self::POGSONS_RATIO + ); + + return $imag['mag'] - $changeInMagnitude; + } +} diff --git a/src/predict/Predict/Solar.php b/src/predict/Predict/Solar.php new file mode 100644 index 000000000..880f035ed --- /dev/null +++ b/src/predict/Predict/Solar.php @@ -0,0 +1,115 @@ +x = $R * cos($Lsa); + $solar_vector->y = $R * sin($Lsa) * cos($eps); + $solar_vector->z = $R * sin($Lsa) * sin($eps); + $solar_vector->w = $R; + } + + /* Calculates stellite's eclipse status and depth */ + public static function Sat_Eclipsed(Predict_Vector $pos, Predict_Vector $sol, &$depth) + { + $Rho = new Predict_Vector(); + $earth = new Predict_Vector(); + + /* Determine partial eclipse */ + $sd_earth = Predict_Math::ArcSin(Predict::xkmper / $pos->w); + Predict_Math::Vec_Sub($sol, $pos, $Rho); + $sd_sun = Predict_Math::ArcSin(Predict::__sr__ / $Rho->w); + Predict_Math::Scalar_Multiply(-1, $pos, $earth); + $delta = Predict_Math::Angle($sol, $earth); + $depth = $sd_earth - $sd_sun - $delta; + + if ($sd_earth < $sd_sun) { + return 0; + } else if ($depth >= 0) { + return 1; + } else { + return 0; + } + } + + /** + * Finds the current location of the sun based on the observer location + * + * @param Predict_QTH $qth The observer location + * @param int $daynum The daynum or null to use the current daynum + * + * @return Predict_ObsSet + */ + public static function FindSun(Predict_QTH $qth, $daynum = null) + { + if ($daynum === null) { + $daynum = Predict_Time::get_current_daynum(); + } + + $obs_geodetic = new Predict_Geodetic(); + $obs_geodetic->lon = $qth->lon * Predict::de2ra; + $obs_geodetic->lat = $qth->lat * Predict::de2ra; + $obs_geodetic->alt = $qth->alt / 1000.0; + $obs_geodetic->theta = 0; + + $solar_vector = new Predict_Vector(); + $zero_vector = new Predict_Vector(); + $solar_set = new Predict_ObsSet(); + + self::Calculate_Solar_Position($daynum, $solar_vector); + Predict_SGPObs::Calculate_Obs( + $daynum, + $solar_vector, + $zero_vector, + $obs_geodetic, + $solar_set + ); + + $solar_set->az = Predict_Math::Degrees($solar_set->az); + $solar_set->el = Predict_Math::Degrees($solar_set->el); + + return $solar_set; + } +} diff --git a/src/predict/Predict/TLE.php b/src/predict/Predict/TLE.php new file mode 100644 index 000000000..e78e4345c --- /dev/null +++ b/src/predict/Predict/TLE.php @@ -0,0 +1,232 @@ +Good_Elements($line1, $line2)) { + throw new Predict_Exception('Invalid TLE contents'); + } + + $this->header = $header; + $this->line1 = $line1; + $this->line2 = $line2; + + /** Decode Card 1 **/ + /* Satellite's catalogue number */ + $this->catnr = (int) substr($line1, 2, 5); + + /* International Designator for satellite */ + $this->idesg = substr($line1, 9, 8); + + /* Epoch time; this is the complete, unconverted epoch. */ + /* Replace spaces with 0 before casting, as leading spaces are allowed */ + $this->epoch = (float) str_replace(' ', '0', substr($line1, 18, 14)); + + /* Now, convert the epoch time into year, day + and fraction of day, according to: + + YYDDD.FFFFFFFF + */ + + // Adjust for 2 digit year through 2056 + $this->epoch_year = (int) substr($line1, 18, 2); + if ($this->epoch_year > 56) { + $this->epoch_year = $this->epoch_year + 1900; + } else { + $this->epoch_year = $this->epoch_year + 2000; + } + + /* Epoch day */ + $this->epoch_day = (int) substr($line1, 20, 3); + + /* Epoch fraction of day */ + $this->epoch_fod = (float) substr($line1, 23, 9); + + + /* Satellite's First Time Derivative */ + $this->xndt2o = (float) substr($line1, 33, 10); + + /* Satellite's Second Time Derivative */ + $this->xndd6o = (float) (substr($line1, 44, 1) . '.' . substr($line1, 45, 5) . 'E' . substr($line1, 50, 2)); + + /* Satellite's bstar drag term + FIXME: How about buff[0] ???? + */ + $this->bstar = (float) (substr($line1, 53, 1) . '.' . substr($line1, 54, 5) . 'E' . substr($line1, 59, 2)); + + /* Element Number */ + $this->elset = (int) substr($line1, 64, 4); + + /** Decode Card 2 **/ + /* Satellite's Orbital Inclination (degrees) */ + $this->xincl = (float) substr($line2, 8, 8); + + /* Satellite's RAAN (degrees) */ + $this->xnodeo = (float) substr($line2, 17, 8); + + /* Satellite's Orbital Eccentricity */ + $this->eo = (float) ('.' . substr($line2, 26, 7)); + + /* Satellite's Argument of Perigee (degrees) */ + $this->omegao = (float) substr($line2, 34, 8); + + /* Satellite's Mean Anomaly of Orbit (degrees) */ + $this->xmo = (float) substr($line2, 43, 8); + + /* Satellite's Mean Motion (rev/day) */ + $this->xno = (float) substr($line2, 52, 11); + + /* Satellite's Revolution number at epoch */ + $this->revnum = (float) substr($line2, 63, 5); + } + + /* Calculates the checksum mod 10 of a line from a TLE set and */ + /* returns true if it compares with checksum in column 68, else false.*/ + /* tle_set is a character string holding the two lines read */ + /* from a text file containing NASA format Keplerian elements. */ + /* NOTE!!! The stuff about two lines is not quite true. + The function assumes that tle_set[0] is the begining + of the line and that there are 68 elements - see the consumer + */ + public function Checksum_Good($tle_set) + { + if (strlen($tle_set) < 69) { + return false; + } + + $checksum = 0; + + for ($i = 0; $i < 68; $i++) { + if (($tle_set[$i] >= '0') && ($tle_set[$i] <= '9')) { + $value = $tle_set[$i] - '0'; + } else if ($tle_set[$i] == '-' ) { + $value = 1; + } else { + $value = 0; + } + + $checksum += $value; + } + + $checksum %= 10; + $check_digit = $tle_set[68] - '0'; + + return $checksum == $check_digit; + } + + /* Carries out various checks on a TLE set to verify its validity */ + /* $line1 is the first line of the TLE, $line2 is the second line */ + /* from a text file containing NASA format Keplerian elements. */ + public function Good_Elements($line1, $line2) + { + /* Verify checksum of both lines of a TLE set */ + if (!$this->Checksum_Good($line1) || !$this->Checksum_Good($line2)) { + return false; + } + + /* Check the line number of each line */ + if (($line1[0] != '1') || ($line2[0] != '2')) { + return false; + } + + /* Verify that Satellite Number is same in both lines */ + if (strncmp($line1[2], $line2[2], 5) != 0) { + return false; + } + + /* Check that various elements are in the right place */ + if (($line1[23] != '.') || + ($line1[34] != '.') || + ($line2[11] != '.') || + ($line2[20] != '.') || + ($line2[37] != '.') || + ($line2[46] != '.') || + ($line2[54] != '.') || + (strncmp(substr($line1, 61), ' 0 ', 3) != 0)) { + + return false; + } + + return true; + } + + /** + * A function to allow checksum creation of a line. This is driven by + * the fact that some TLEs from SpaceTrack are missing checksum numbers. + * You can use this to create a checksum for a line, but you should + * probably have confidence that the TLE data itself is good. YMMV. + * + * @throws Predict_Exception if the line is not exactly 68 chars + * @return string + */ + static public function createChecksum($line) + { + if (strlen($line) != 68) { + throw Predict_Exception('Invalid line, needs to e 68 chars'); + } + + $checksum = 0; + + for ($i = 0; $i < 68; $i++) { + if (($line[$i] >= '0') && ($line[$i] <= '9')) { + $value = (int) $line[$i]; + } else if ($line[$i] == '-' ) { + $value = 1; + } else { + $value = 0; + } + + $checksum += $value; + } + + $checksum %= 10; + + return $checksum; + } +} diff --git a/src/predict/Predict/Time.php b/src/predict/Predict/Time.php new file mode 100644 index 000000000..bfb515850 --- /dev/null +++ b/src/predict/Predict/Time.php @@ -0,0 +1,222 @@ +ds50 = $jd - 2433281.5 + $UT; + + return Predict_Math::FMod2p(6.3003880987 * $deep_arg->ds50 + 1.72944494); + } + + /* See the ThetaG doc block above */ + public static function ThetaG_JD($jd) + { + /* Reference: The 1992 Astronomical Almanac, page B6. */ + $UT = Predict_Math::Frac($jd + 0.5); + $jd = $jd - $UT; + $TU = ($jd - 2451545.0) / 36525; + $GMST = 24110.54841 + $TU * (8640184.812866 + $TU * (0.093104 - $TU * 6.2E-6)); + $GMST = Predict_Math::Modulus($GMST + Predict::secday * Predict::omega_E * $UT, Predict::secday); + + return Predict::twopi * $GMST / Predict::secday; + } + + /** + * Read the system clock and return the current Julian day. From phpPredict + * + * @return float + */ + public static function get_current_daynum() { + // Gets the current decimal day number from microtime + + list($usec, $sec) = explode(' ', microtime()); + return self::unix2daynum($sec, $usec); + } + + /** + * Converts a standard unix timestamp and optional + * milliseconds to a daynum + * + * @param int $sec Seconds from the unix epoch + * @param int $usec Optional milliseconds + * + * @return float + */ + public static function unix2daynum($sec, $usec = 0) + { + $time = ((($sec + $usec) / 86400.0) - 3651.0); + return $time + 2444238.5; + } + + /* The function Delta_ET has been added to allow calculations on */ + /* the position of the sun. It provides the difference between UT */ + /* (approximately the same as UTC) and ET (now referred to as TDT).*/ + /* This function is based on a least squares fit of data from 1950 */ + /* to 1991 and will need to be updated periodically. */ + public static function Delta_ET($year) + { + /* Values determined using data from 1950-1991 in the 1990 + Astronomical Almanac. See DELTA_ET.WQ1 for details. */ + + $delta_et = 26.465 + 0.747622 * ($year - 1950) + + 1.886913 * sin(Predict::twopi * ($year - 1975) / 33); + + return $delta_et; + } + + /** + * Converts a daynum to a unix timestamp. From phpPredict. + * + * @param float $dn Julian Daynum + * + * @return float + */ + public static function daynum2unix($dn) { + // Converts a daynum to a UNIX timestamp + + return (86400.0 * ($dn - 2444238.5 + 3651.0)); + } + + /** + * Converts a daynum to a readable time format. + * + * @param float $dn The julian date + * @param string $zone The zone string, defaults to America/Los_Angeles + * @param string $format The date() function's format string. Defaults to m-d-Y H:i:s + * + * @return string + */ + public static function daynum2readable($dn, $zone = 'America/Los_Angeles', $format = 'm-d-Y H:i:s') + { + $unix = self::daynum2unix($dn); + $date = new DateTime("@" . round($unix)); + $dateTimezone = new DateTimezone($zone); + $date->setTimezone($dateTimezone); + return $date->format($format); + } + + /** + * Returns the unix timestamp of a TLE's epoch + * + * @param Predict_TLE $tle The TLE object + * + * @return int + */ + public static function getEpochTimeStamp(Predict_TLE $tle) + { + $year = $tle->epoch_year; + $day = $tle->epoch_day; + $sec = round(86400 * $tle->epoch_fod); + + $zone = new DateTimeZone('GMT'); + $date = new DateTime(); + $date->setTimezone($zone); + $date->setDate($year, 1, 1); + $date->setTime(0, 0, 0); + + return $date->format('U') + (86400 * $day) + $sec - 86400; + } +} diff --git a/src/predict/Predict/Vector.php b/src/predict/Predict/Vector.php new file mode 100644 index 000000000..84749058b --- /dev/null +++ b/src/predict/Predict/Vector.php @@ -0,0 +1,13 @@ +_migration_path = rtrim($this->_migration_path, '/').'/'; + // If not set, set it + $this->_migration_lockfile !== '' OR $this->_migration_lockfile = '/tmp/.migration_running'; + + // selockfile maxage if not set in config file. Fallback is 480 seconds. + $this->_migration_lf_maxage !== '' OR $this->_migration_lf_maxage = 480; + // Load migration language $this->lang->load('migration'); @@ -341,7 +356,27 @@ class CI_Migration { } } else { - log_message('debug', 'Migration process is currently locked. Second migration attempt ignored.'); + + log_message('debug', 'There is a lockfile for migrations. Checking the age...'); + + // Get the file creation date + $lockfile_ctime = filemtime($this->_migration_lockfile); + + //compare to the current time + $tdiff = time() - $lockfile_ctime; + log_message('debug', 'Migration lockfile lifetime in seconds: '.$tdiff.'/'.$this->_migration_lf_maxage); + + // if the file is older then the configured limit, delete it + if ($tdiff > $this->_migration_lf_maxage) { + + unlink($this->_migration_lockfile); + log_message('debug', 'Deleted migration lockfile because it was older then maxage.'); + + } else { + + log_message('debug', 'Migration process is currently locked. Second migration attempt ignored.'); + + } } return $current_version; diff --git a/update_wavelog.sh b/update_wavelog.sh old mode 100755 new mode 100644