diff --git a/application/config/autoload.php b/application/config/autoload.php index 2e2239114e..7eb077e1c1 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -82,41 +82,6 @@ $autoload['config'] = array('wavelog', 'bands', 'lotw', 'gettext'); - -/* -| ------------------------------------------------------------------- -| Auto-load Language files -| ------------------------------------------------------------------- -| Prototype: -| -| $autoload['language'] = array('lang1', 'lang2'); -| -| NOTE: Do not include the "_lang" part of your file. For example -| "codeigniter_lang.php" would be referenced as array('codeigniter'); -| -*/ - -$autoload['language'] = array( - 'account', - 'adif', - 'admin', - 'awards', - 'contesting', - 'eqsl', - 'export', - 'filter', - 'general_words', - 'gridsquares', - 'lotw', - 'menu', - 'notes', - 'options', - 'qslcard', - 'qso', - 'station', - 'statistics' - ); - /* | ------------------------------------------------------------------- | Auto-load Models diff --git a/application/config/config.sample.php b/application/config/config.sample.php index 4bd68ba1c2..d96dbccce9 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -143,7 +143,7 @@ /* |-------------------------------------------------------------------------- -| Default Language +| Default Language DEPRECATED! NOT IN USE ANYMORE! |-------------------------------------------------------------------------- | | This determines which set of language files should be used. Make sure @@ -151,61 +151,61 @@ | than english. | */ -$lang = 'english'; // this language will be used per default - -if (isset($_COOKIE["language"])) { - $tmp_value = $_COOKIE["language"]; - if (!empty($tmp_value)) { $lang = $tmp_value; } -} -switch ($lang) { // do this for security-reasons! parse only langs, which are known to us -case 'dutch': - $config['language'] = $lang; - break; -case 'chinese_simplified': - $config['language'] = $lang; - break; -case 'spanish': - $config['language'] = $lang; - break; -case 'czech': - $config['language'] = $lang; - break; -case 'bulgarian': - $config['language'] = $lang; - break; -case 'turkish': - $config['language'] = $lang; - break; -case 'swedish': - $config['language'] = $lang; - break; -case 'polish': - $config['language'] = $lang; - break; -case 'italian': - $config['language'] = $lang; - break; -case 'greek': - $config['language'] = $lang; - break; -case 'french': - $config['language'] = $lang; - break; -case 'finnish': - $config['language'] = $lang; - break; -case 'russian': - $config['language'] = $lang; - break; -case 'english': - $config['language'] = $lang; - break; -case 'german': - $config['language'] = $lang; - break; -} - -$config['cl_multilanguage']=true; +// $lang = 'english'; // this language will be used per default + +// if (isset($_COOKIE["language"])) { +// $tmp_value = $_COOKIE["language"]; +// if (!empty($tmp_value)) { $lang = $tmp_value; } +// } +// switch ($lang) { // do this for security-reasons! parse only langs, which are known to us +// case 'dutch': +// $config['language'] = $lang; +// break; +// case 'chinese_simplified': +// $config['language'] = $lang; +// break; +// case 'spanish': +// $config['language'] = $lang; +// break; +// case 'czech': +// $config['language'] = $lang; +// break; +// case 'bulgarian': +// $config['language'] = $lang; +// break; +// case 'turkish': +// $config['language'] = $lang; +// break; +// case 'swedish': +// $config['language'] = $lang; +// break; +// case 'polish': +// $config['language'] = $lang; +// break; +// case 'italian': +// $config['language'] = $lang; +// break; +// case 'greek': +// $config['language'] = $lang; +// break; +// case 'french': +// $config['language'] = $lang; +// break; +// case 'finnish': +// $config['language'] = $lang; +// break; +// case 'russian': +// $config['language'] = $lang; +// break; +// case 'english': +// $config['language'] = $lang; +// break; +// case 'german': +// $config['language'] = $lang; +// break; +// } + +// $config['cl_multilanguage']=true; /* |-------------------------------------------------------------------------- diff --git a/application/config/gettext.php b/application/config/gettext.php index ca73963084..db164d1818 100644 --- a/application/config/gettext.php +++ b/application/config/gettext.php @@ -52,6 +52,9 @@ | ------------------------------------------------------------------- | A list of enabled languages. These are the language that will be | used on the site. +| +| IMPORTANT: If you add new languages also add this at the end of application/views/debug/index.php +| */ $config['languages'] = array( diff --git a/application/controllers/Accumulated.php b/application/controllers/Accumulated.php index df442d8707..3f024d14b7 100644 --- a/application/controllers/Accumulated.php +++ b/application/controllers/Accumulated.php @@ -18,7 +18,7 @@ function __construct() public function index() { // Render Page - $data['page_title'] = $this->lang->line('menu_accumulated_statistics'); + $data['page_title'] = __("Accumulated Statistics"); $this->load->model('bands'); diff --git a/application/controllers/Activated_gridmap.php b/application/controllers/Activated_gridmap.php index 34945a7306..f3d93c5bc0 100644 --- a/application/controllers/Activated_gridmap.php +++ b/application/controllers/Activated_gridmap.php @@ -7,7 +7,7 @@ function __construct() { } public function index() { - $data['page_title'] = "Activated Gridsquare Map"; + $data['page_title'] = __("Activated Gridsquare Map"); $this->load->model('bands'); $this->load->model('activated_gridmap_model'); @@ -28,10 +28,10 @@ public function index() { $data['attribution'] = $this->optionslib->get_option('option_map_tile_server_copyright'); - $data['gridsquares_gridsquares'] = lang('gridsquares_gridsquares'); - $data['gridsquares_gridsquares_confirmed'] = lang('gridsquares_gridsquares_confirmed'); - $data['gridsquares_gridsquares_not_confirmed'] = lang('gridsquares_gridsquares_not_confirmed'); - $data['gridsquares_gridsquares_total_activated'] = lang('gridsquares_gridsquares_total_activated'); + $data['gridsquares_gridsquares'] = __("Gridsquares"); + $data['gridsquares_gridsquares_confirmed'] = __("Gridsquares confirmed"); + $data['gridsquares_gridsquares_not_confirmed'] = __("Gridsquares not confirmed"); + $data['gridsquares_gridsquares_total_activated'] = __("Total gridsquares activated"); $footerData = []; $footerData['scripts'] = [ diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 47fe74f17e..b97049ba4f 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -892,10 +892,10 @@ public function gridmaster($dxcc) { $data['attribution']= $this->optionslib->get_option('option_map_tile_server_copyright'); - $data['gridsquares_gridsquares']= lang('gridsquares_gridsquares'); - $data['gridsquares_gridsquares_worked']= lang('gridsquares_gridsquares_worked'); - $data['gridsquares_gridsquares_lotw']= lang('gridsquares_gridsquares_lotw'); - $data['gridsquares_gridsquares_paper']= lang('gridsquares_gridsquares_paper'); + $data['gridsquares_gridsquares']= __("Gridsquares"); + $data['gridsquares_gridsquares_worked']= __("Gridsquares worked"); + $data['gridsquares_gridsquares_lotw']= __("Gridsquares confirmed on LoTW"); + $data['gridsquares_gridsquares_paper']= __("Gridsquares confirmed by paper QSL"); $indexData['dxcc'] = $dxcc; @@ -924,10 +924,10 @@ public function ffma() { $data['attribution']= $this->optionslib->get_option('option_map_tile_server_copyright'); - $data['gridsquares_gridsquares']= lang('gridsquares_gridsquares'); - $data['gridsquares_gridsquares_worked']= lang('gridsquares_gridsquares_worked'); - $data['gridsquares_gridsquares_lotw']= lang('gridsquares_gridsquares_lotw'); - $data['gridsquares_gridsquares_paper']= lang('gridsquares_gridsquares_paper'); + $data['gridsquares_gridsquares']= __("Gridsquares"); + $data['gridsquares_gridsquares_worked']= __("Gridsquares worked"); + $data['gridsquares_gridsquares_lotw']= __("Gridsquares confirmed on LoTW"); + $data['gridsquares_gridsquares_paper']= __("Gridsquares confirmed by paper QSL"); $data['grid_count'] = $this->ffma_model->get_grid_count(); $data['grids'] = $this->ffma_model->get_grids(); diff --git a/application/controllers/Contesting.php b/application/controllers/Contesting.php index 0118363414..f8197a4fc5 100644 --- a/application/controllers/Contesting.php +++ b/application/controllers/Contesting.php @@ -96,7 +96,7 @@ public function add() { $data['contests'] = $this->Contesting_model->getAllContests(); // Render Page - $data['page_title'] = "Contests"; + $data['page_title'] = __("Contests"); $this->load->view('interface_assets/header', $data); $this->load->view('contesting/add'); $this->load->view('interface_assets/footer'); @@ -110,7 +110,7 @@ public function edit($id) { $data['contest'] = $this->Contesting_model->contest($item_id_clean); - $data['page_title'] = lang('admin_contest_edit_update_contest'); + $data['page_title'] = __("Update Contest"); $this->form_validation->set_rules('name', 'Contest Name', 'required'); $this->form_validation->set_rules('adifname', 'Adif Contest Name', 'required'); diff --git a/application/controllers/Dayswithqso.php b/application/controllers/Dayswithqso.php index a2906cc506..9e1bb08624 100644 --- a/application/controllers/Dayswithqso.php +++ b/application/controllers/Dayswithqso.php @@ -15,7 +15,7 @@ public function index() { $this->load->model('dayswithqso_model'); // Render Page - $data['page_title'] = lang('statistics_days_with_qso'); + $data['page_title'] = __("Number of days with QSOs each year"); $data['result'] = $this->dayswithqso_model->getDaysWithQso(); $data['streaks'] = $this->dayswithqso_model->getLongestStreak(); diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index 8857c7b4de..63843656ee 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -29,6 +29,7 @@ public function index() { $data['stations'] = $this->Stations->all(); $data['qso_total'] = $this->Debug_model->count_all_qso(); + $data['available_languages'] = $this->config->item('languages'); $data['qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id(); if ($data['qsos_with_no_station_id']) { diff --git a/application/controllers/Distances.php b/application/controllers/Distances.php index e04bef0b99..4f7bf66d3e 100644 --- a/application/controllers/Distances.php +++ b/application/controllers/Distances.php @@ -79,7 +79,7 @@ public function getDistanceQsos(){ // Render Page $data['page_title'] = "Log View - " . $distance; - $data['filter'] = lang('statistics_distances_qsos_with') . " " . $distance . " " . lang('statistics_distances_and_band'). " " . $band; + $data['filter'] = __("QSOs with") . " " . $distance . " " . __("and band"). " " . $band; $this->load->view('awards/details', $data); } } diff --git a/application/controllers/Gridmap.php b/application/controllers/Gridmap.php index 9d41c360ff..0bd18981be 100644 --- a/application/controllers/Gridmap.php +++ b/application/controllers/Gridmap.php @@ -7,7 +7,7 @@ function __construct() { } public function index() { - $data['page_title'] = lang('gridsquares_gridsquare_map'); + $data['page_title'] = __("Gridsquare Map"); $this->load->model('bands'); $this->load->model('gridmap_model'); @@ -28,10 +28,10 @@ public function index() { $data['attribution'] = $this->optionslib->get_option('option_map_tile_server_copyright'); - $data['gridsquares_gridsquares'] = lang('gridsquares_gridsquares'); - $data['gridsquares_gridsquares_confirmed'] = lang('gridsquares_gridsquares_confirmed'); - $data['gridsquares_gridsquares_not_confirmed'] = lang('gridsquares_gridsquares_not_confirmed'); - $data['gridsquares_gridsquares_total_worked'] = lang('gridsquares_gridsquares_total_worked'); + $data['gridsquares_gridsquares'] = __("Gridsquares"); + $data['gridsquares_gridsquares_confirmed'] = __("Gridsquares confirmed"); + $data['gridsquares_gridsquares_not_confirmed'] = __("Gridsquares not confirmed"); + $data['gridsquares_gridsquares_total_worked'] = __("Total gridsquares worked"); $footerData = []; $footerData['scripts'] = [ diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 149d207aff..006937caf0 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -34,7 +34,7 @@ function index() $data['user_map_custom'] = $this->optionslib->get_map_custom(); if(!$data['results']) { - $this->session->set_flashdata('notice', lang('error_no_logbook_found') . ' Station Logbooks'); + $this->session->set_flashdata('notice', __("No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:") . ' ' . __('Station Logbooks') . ''); } // Calculate Lat/Lng from Locator to use on Maps @@ -664,13 +664,13 @@ function partial($id, $band = null) { $html .= $this->part_table_header_col($this, $this->session->userdata('user_column4')==""?'Band':$this->session->userdata('user_column4')); switch($this->session->userdata('user_previous_qsl_type')) { case 0: - $html .= "".lang('gen_hamradio_qsl').""; + $html .= "".__("QSL").""; break; case 1: - $html .= "".lang('lotw_short').""; + $html .= "".__("LoTW").""; break; case 2: - $html .= "".lang('eqsl_short').""; + $html .= "".__("eQSL").""; break; case 4: $html .= "QRZ"; @@ -679,7 +679,7 @@ function partial($id, $band = null) { $html .= "Clublog"; break; default: - $html .= "".lang('gen_hamradio_qsl').""; + $html .= "".__("QSL").""; break; } $html .= ""; @@ -1272,20 +1272,20 @@ function get_qsos($num, $offset) { function part_table_header_col($ctx, $name) { $ret=''; switch($name) { - case 'Mode': $ret.= ''.$ctx->lang->line('gen_hamradio_mode').''; break; - case 'RSTS': $ret.= ''.$ctx->lang->line('gen_hamradio_rsts').''; break; - case 'RSTR': $ret.= ''.$ctx->lang->line('gen_hamradio_rstr').''; break; - case 'Country': $ret.= ''.$ctx->lang->line('general_word_country').''; break; - case 'IOTA': $ret.= ''.$ctx->lang->line('gen_hamradio_iota').''; break; - case 'SOTA': $ret.= ''.$ctx->lang->line('gen_hamradio_sota').''; break; - case 'WWFF': $ret.= ''.$ctx->lang->line('gen_hamradio_wwff').''; break; - case 'POTA': $ret.= ''.$ctx->lang->line('gen_hamradio_pota').''; break; - case 'State': $ret.= ''.$ctx->lang->line('gen_hamradio_state').''; break; - case 'Grid': $ret.= ''.$ctx->lang->line('gen_hamradio_gridsquare').''; break; - case 'Distance': $ret.= ''.$ctx->lang->line('gen_hamradio_distance').''; break; - case 'Band': $ret.= ''.$ctx->lang->line('gen_hamradio_band').''; break; - case 'Frequency': $ret.= ''.$ctx->lang->line('gen_hamradio_frequency').''; break; - case 'Operator': $ret.= ''.$ctx->lang->line('gen_hamradio_operator').''; break; + case 'Mode': $ret.= ''.__("Mode").''; break; + case 'RSTS': $ret.= ''.__("RST (S)").''; break; + case 'RSTR': $ret.= ''.__("RST (R)").''; break; + case 'Country': $ret.= ''.__("Country").''; break; + case 'IOTA': $ret.= ''.__("IOTA").''; break; + case 'SOTA': $ret.= ''.__("SOTA").''; break; + case 'WWFF': $ret.= ''.__("WWFF").''; break; + case 'POTA': $ret.= ''.__("POTA").''; break; + case 'State': $ret.= ''.__("State").''; break; + case 'Grid': $ret.= ''.__("Gridsquare").''; break; + case 'Distance': $ret.= ''.__("Distance").''; break; + case 'Band': $ret.= ''.__("Band").''; break; + case 'Frequency': $ret.= ''.__("Frequency").''; break; + case 'Operator': $ret.= ''.__("Operator").''; break; } return $ret; } @@ -1307,7 +1307,7 @@ function part_table_col($row, $name) { case 'Mode': $ret.= ''; $ret.= $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE . ''; break; case 'RSTS': $ret.= '' . $row->COL_RST_SENT; if ($row->COL_STX) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; $ret.=sprintf("%03d", $row->COL_STX); $ret.= '';} if ($row->COL_STX_STRING) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_STX_STRING . '';} $ret.= ''; break; case 'RSTR': $ret.= '' . $row->COL_RST_RCVD; if ($row->COL_SRX) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; $ret.=sprintf("%03d", $row->COL_SRX); $ret.= '';} if ($row->COL_SRX_STRING) { $ret.= ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_SRX_STRING . '';} $ret.= ''; break; - case 'Country': $ret.= '' . ucwords(strtolower(($row->COL_COUNTRY ?? ''))); if ($row->end ?? '' != '') $ret.= ' '.$ci->lang->line('gen_hamradio_deleted_dxcc').'' . ''; break; + case 'Country': $ret.= '' . ucwords(strtolower(($row->COL_COUNTRY ?? ''))); if ($row->end ?? '' != '') $ret.= ' '.__("Deleted DXCC").'' . ''; break; case 'IOTA': $ret.= '' . ($row->COL_IOTA) . ''; break; case 'SOTA': $ret.= '' . ($row->COL_SOTA_REF) . ''; break; case 'WWFF': $ret.= '' . ($row->COL_WWFF_REF) . ''; break; diff --git a/application/controllers/Options.php b/application/controllers/Options.php index 9884494461..9a3f5469a5 100644 --- a/application/controllers/Options.php +++ b/application/controllers/Options.php @@ -28,7 +28,7 @@ function index() { //echo $this->optionslib->get_option('theme'); - $data['page_title'] = $this->lang->line('options_wavelog_options'); + $data['page_title'] = __("Wavelog Options"); $this->load->view('interface_assets/header', $data); $this->load->view('options/index'); @@ -38,12 +38,8 @@ function index() { // function used to display the /appearance url function appearance() { - // Get Language Options - $directory = 'application/language'; - $data['language_options'] = array_diff(scandir($directory), array('..', '.')); - - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_appearance'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Appearance"); $this->load->model('Themes_model'); @@ -57,12 +53,8 @@ function appearance() { // Handles saving the appreance options to the options system. function appearance_save() { - // Get Language Options - $directory = 'application/language'; - $data['language_options'] = array_diff(scandir($directory), array('..', '.')); - - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_appearance'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Appearance"); $this->load->helper(array('form', 'url')); @@ -83,7 +75,7 @@ function appearance_save() { // If theme update is complete set a flashsession with a success note if($theme_update_status == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_saved')); + $this->session->set_flashdata('success', __("Options saved")); } // Update theme choice within the options system @@ -91,7 +83,7 @@ function appearance_save() { // If theme update is complete set a flashsession with a success note if($search_update_status == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_saved')); + $this->session->set_flashdata('success', __("Options saved")); } // Update dashboard banner within the options system @@ -99,7 +91,7 @@ function appearance_save() { // If dashboard banner update is complete set a flashsession with a success note if($dasboard_banner_update_status == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_saved')); + $this->session->set_flashdata('success', __("Options saved")); } // Update dashboard map within the options system @@ -107,7 +99,7 @@ function appearance_save() { // If dashboard map update is complete set a flashsession with a success note if($dashboard_map_update_status == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_saved')); + $this->session->set_flashdata('success', __("Options saved")); } // Update logbook map within the options system @@ -115,7 +107,7 @@ function appearance_save() { // If logbook map update is complete set a flashsession with a success note if($logbook_map_update_status == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_saved')); + $this->session->set_flashdata('success', __("Options saved")); } // Update public maps within the options system @@ -123,7 +115,7 @@ function appearance_save() { // If the option was saved successfully set a flashsession with success note if($public_maps_update_status == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_saved')); + $this->session->set_flashdata('success', __("Options saved")); } // Update public github button within the options system @@ -131,7 +123,7 @@ function appearance_save() { // If the option was saved successfully set a flashsession with success note if($public_github_button_update_status == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_saved')); + $this->session->set_flashdata('success', __("Options saved")); } // Redirect back to /appearance @@ -141,8 +133,8 @@ function appearance_save() { // function used to display the /dxcluster url function dxcluster() { - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_dxcluster_settings'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("DXCluster"); $this->load->view('interface_assets/header', $data); $this->load->view('options/dxcluster'); @@ -152,10 +144,8 @@ function dxcluster() { // Handles saving the DXCluster options to the options system. function dxcluster_save() { - // Get Language Options - - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_dxcluster_settings'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("DXCluster"); $this->load->helper(array('form', 'url')); @@ -172,17 +162,17 @@ function dxcluster_save() { } else { $dxcluster_decont_update = $this->optionslib->update('dxcluster_decont', $this->input->post('dxcluster_decont'), 'yes'); if($dxcluster_decont_update == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_dxcluster_decont_changed_to').$this->input->post('dxcluster_decont')); + $this->session->set_flashdata('success', __("de continent changed to ").$this->input->post('dxcluster_decont')); } $dxcluster_maxage_update = $this->optionslib->update('dxcluster_maxage', $this->input->post('dxcluster_maxage'), 'yes'); if($dxcluster_maxage_update == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_dxcluster_maxage_changed_to').$this->input->post('dxcluster_maxage')); + $this->session->set_flashdata('success', __("Maximum age of spots changed to ").$this->input->post('dxcluster_maxage')); } $dxcache_url_update = $this->optionslib->update('dxcache_url', $this->input->post('dxcache_url'), 'yes'); if($dxcache_url_update == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_dxcache_url_changed_to').$this->input->post('dxcache_url')); + $this->session->set_flashdata('success', __("DXCluster Cache URL changed to ").$this->input->post('dxcache_url')); } redirect('/options/dxcluster'); } @@ -191,8 +181,8 @@ function dxcluster_save() { // function used to display the /radio url function radio() { - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_radio_settings'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Radio Settings"); $this->load->view('interface_assets/header', $data); $this->load->view('options/radios'); @@ -202,10 +192,8 @@ function radio() { // Handles saving the radio options to the options system. function radio_save() { - // Get Language Options - - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_radio_settings'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Radio Settings"); $this->load->helper(array('form', 'url')); @@ -226,7 +214,7 @@ function radio_save() { // If theme update is complete set a flashsession with a success note if($radioTimeout_update == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_radio_timeout_warning_changed_to').$this->input->post('radioTimeout').' seconds'); + $this->session->set_flashdata('success', __("Radio Timeout Warning changed to ").$this->input->post('radioTimeout').' seconds'); } // Redirect back to /appearance @@ -237,8 +225,8 @@ function radio_save() { // function used to display the /appearance url function email() { - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_email'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Email"); $this->load->view('interface_assets/header', $data); $this->load->view('options/email'); @@ -248,10 +236,8 @@ function email() { // Handles saving the radio options to the options system. function email_save() { - // Get Language Options - - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_email'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Email"); $this->load->helper(array('form', 'url')); @@ -308,9 +294,9 @@ function email_save() { // Set flash session based on update success if ($updateSuccessful) { - $this->session->set_flashdata('success', $this->lang->line('options_mail_settings_saved')); + $this->session->set_flashdata('success', __("The settings were saved successfully.")); } else { - $this->session->set_flashdata('saveFailed', $this->lang->line('options_mail_settings_failed')); + $this->session->set_flashdata('saveFailed', __("Something went wrong with saving the settings. Try again.")); } // Redirect back to /email @@ -320,8 +306,8 @@ function email_save() { function oqrs() { - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_oqrs'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("OQRS Options"); $this->load->view('interface_assets/header', $data); $this->load->view('options/oqrs'); @@ -330,8 +316,8 @@ function oqrs() { function oqrs_save() { - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_oqrs'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("OQRS Options"); $this->load->helper(array('form', 'url')); @@ -344,7 +330,7 @@ function oqrs_save() { $global_oqrs_text = $this->optionslib->update('groupedSearchShowStationName', $this->input->post('groupedSearchShowStationName'), null); if($global_oqrs_text == TRUE) { - $this->session->set_flashdata('success', $this->lang->line('options_oqrs_options_have_been_saved')); + $this->session->set_flashdata('success', __("OQRS options have been saved.")); } redirect('/options/oqrs'); @@ -384,12 +370,12 @@ function sendTestMail() { $this->email->message($message); if (! $this->email->send()){ - $this->session->set_flashdata('testmailFailed', $this->lang->line('options_send_testmail_failed')); + $this->session->set_flashdata('testmailFailed', __("Testmail failed. Something went wrong.")); } else { - $this->session->set_flashdata('testmailSuccess', $this->lang->line('options_send_testmail_success')); + $this->session->set_flashdata('testmailSuccess', __("Testmail sent. Email settings seem to be correct.")); } } else { - $this->session->set_flashdata('testmailFailed', $this->lang->line('options_send_testmail_failed')); + $this->session->set_flashdata('testmailFailed', __("Testmail failed. Something went wrong.")); } redirect('/options/email'); @@ -398,8 +384,8 @@ function sendTestMail() { // function used to display the /version_dialog url function version_dialog() { - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_version_dialog_settings'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Version Info Settings"); $this->load->view('interface_assets/header', $data); $this->load->view('options/version_dialog'); @@ -408,25 +394,23 @@ function version_dialog() { function version_dialog_save() { - // Get Language Options - - $data['page_title'] = $this->lang->line('options_wavelog_options'); - $data['sub_heading'] = $this->lang->line('options_version_dialog_settings'); + $data['page_title'] = __("Wavelog Options"); + $data['sub_heading'] = __("Version Info Settings"); $this->load->helper(array('form', 'url')); $version_dialog_header_update = $this->optionslib->update('version_dialog_header', $this->input->post('version_dialog_header'), 'yes'); if($version_dialog_header_update == TRUE) { - $this->session->set_flashdata('success0', $this->lang->line('options_version_dialog_header_changed_to')." "."'".$this->input->post('version_dialog_header')."'"); + $this->session->set_flashdata('success0', __("Version Info Header changed to")." "."'".$this->input->post('version_dialog_header')."'"); } $version_dialog_mode_update = $this->optionslib->update('version_dialog', $this->input->post('version_dialog_mode'), 'yes'); if($version_dialog_mode_update == TRUE) { - $this->session->set_flashdata('success1', $this->lang->line('options_version_dialog_mode_changed_to')." "."'".$this->input->post('version_dialog_mode')."'"); + $this->session->set_flashdata('success1', __("Version Info Mode changed to")." "."'".$this->input->post('version_dialog_mode')."'"); } if ($this->input->post('version_dialog_mode') == "both" || $this->input->post('version_dialog_mode') == "custom_text" ) { $version_dialog_custom_text_update = $this->optionslib->update('version_dialog_text', $this->input->post('version_dialog_custom_text'), 'yes'); if($version_dialog_custom_text_update == TRUE) { - $this->session->set_flashdata('success2', $this->lang->line('options_version_dialog_custom_text_saved')); + $this->session->set_flashdata('success2', __("Version Info Custom Text saved!")); } } @@ -437,7 +421,7 @@ function version_dialog_save() { function version_dialog_show_to_all() { $update_vd_confirmation_to_false = $this->user_options_model->set_option_at_all_users('version_dialog', 'confirmed', array('boolean' => 'false')); if($update_vd_confirmation_to_false == TRUE) { - $this->session->set_flashdata('success_trigger', $this->lang->line('options_version_dialog_success_show_all')); + $this->session->set_flashdata('success_trigger', __("Version Info will be shown to all users again")); } redirect('/options/version_dialog'); } @@ -445,7 +429,7 @@ function version_dialog_show_to_all() { function version_dialog_show_to_none() { $update_vd_confirmation_to_true = $this->user_options_model->set_option_at_all_users('version_dialog', 'confirmed', array('boolean' => 'true')); if($update_vd_confirmation_to_true == TRUE) { - $this->session->set_flashdata('success_trigger', $this->lang->line('options_version_dialog_success_hide_all')); + $this->session->set_flashdata('success_trigger', __("Version Info will not be shown to any user")); } redirect('/options/version_dialog'); } diff --git a/application/controllers/Qslprint.php b/application/controllers/Qslprint.php index be69cf90ed..81392bef39 100644 --- a/application/controllers/Qslprint.php +++ b/application/controllers/Qslprint.php @@ -43,7 +43,7 @@ public function index($station_id = 'All') 'assets/js/sections/qslprint.js', ]; - $data['page_title'] = $this->lang->line('menu_print_requested_qsls'); + $data['page_title'] = __("Print Requested QSLs"); $this->load->view('interface_assets/header', $data); $this->load->view('qslprint/index'); diff --git a/application/controllers/Sattimers.php b/application/controllers/Sattimers.php index 7de010f915..00934b8664 100644 --- a/application/controllers/Sattimers.php +++ b/application/controllers/Sattimers.php @@ -38,10 +38,10 @@ public function index() { $data['gridsquare'] = strtoupper($this->stations->find_gridsquare()); if ($data['gridsquare'] == "0") { - $this->session->set_flashdata('message', lang('dashboard_locations_warning')); + $this->session->set_flashdata('message', sprintf(__("You have no station locations. Go %s to create it!"), '' . __("here") . '')); } - $data['page_title'] = "Satellite Timers"; + $data['page_title'] = __("Satellite Timers"); $CI =& get_instance(); if($CI->session->userdata('user_date_format')) { diff --git a/application/controllers/Station.php b/application/controllers/Station.php index ef5ffcc1eb..8cd51b4c7a 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -32,7 +32,7 @@ public function index() $data['is_there_qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id(); // Render Page - $data['page_title'] = lang('station_location'); + $data['page_title'] = __("Station Location"); $this->load->view('interface_assets/header', $data); $this->load->view('station_profile/index'); $this->load->view('interface_assets/footer'); @@ -52,7 +52,7 @@ public function create() $this->form_validation->set_rules('station_profile_name', 'Station Profile Name', 'required'); if ($this->form_validation->run() == FALSE) { - $data['page_title'] = lang('station_location_create_header'); + $data['page_title'] = __("Create Station Location"); $this->load->view('interface_assets/header', $data); $this->load->view('station_profile/create'); $this->load->view('interface_assets/footer'); @@ -67,7 +67,7 @@ public function edit($id) $this->load->model('stations'); if ($this->stations->check_station_is_accessible($id)) { $data = $this->load_station_for_editing($id); - $data['page_title'] = lang('station_location_edit') . $data['my_station_profile']->station_profile_name; + $data['page_title'] = __("Edit Station Location: ") . $data['my_station_profile']->station_profile_name; if ($this->form_validation->run() == FALSE) { $this->load->view('interface_assets/header', $data); @@ -75,7 +75,7 @@ public function edit($id) $this->load->view('interface_assets/footer'); } else { if ($this->stations->edit()) { - $data['notice'] = lang('station_location') . $this->security->xss_clean($this->input->post('station_profile_name', true)) . " Updated"; + $data['notice'] = __("Station Location") . $this->security->xss_clean($this->input->post('station_profile_name', true)) . " Updated"; } redirect('stationsetup'); } diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php index 33e0304145..ee3d76f76f 100644 --- a/application/controllers/Stationsetup.php +++ b/application/controllers/Stationsetup.php @@ -32,7 +32,7 @@ public function index() { ]; // Render Page - $data['page_title'] = "Station Setup"; + $data['page_title'] = __("Station Setup"); $this->load->view('interface_assets/header', $data); $this->load->view('stationsetup/stationsetup'); $this->load->view('interface_assets/footer', $footerData); @@ -47,7 +47,7 @@ public function DeleteStation_json() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Not allowed'; + $data['flashdata'] = __('Not allowed'); } } else { $data['success']=0; @@ -65,11 +65,11 @@ public function EmptyStation_json() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Not allowed'; + $data['flashdata'] = __('Not allowed'); } } else { $data['success']=0; - $data['flashdata']='Error'; + $data['flashdata'] = __('Error'); } echo json_encode($data); } @@ -83,7 +83,7 @@ public function setActiveStation_json() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Error'; + $data['flashdata'] = __('Error'); } echo json_encode($data); } @@ -102,7 +102,7 @@ public function setFavorite_json() { $data['success'] = 1; } else { $data['success'] = 0; - $data['flashdata'] ='Error'; + $data['flashdata'] = __('Error'); } echo json_encode($data); } @@ -115,7 +115,7 @@ public function setActiveLogbook_json() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Error'; + $data['flashdata'] = __('Error'); } echo json_encode($data); } @@ -128,7 +128,7 @@ public function deleteLogbook_json() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Error'; + $data['flashdata'] = __('Error'); } echo json_encode($data); } @@ -149,7 +149,7 @@ public function newLogbook_json() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Error'; + $data['flashdata'] = __('Error'); } echo json_encode($data); } @@ -187,7 +187,7 @@ public function editVisitorLink() { $station_logbook_details_query = $this->logbooks_model->logbook(xss_clean($this->input->post('id', true))); $data['station_logbook_details'] = $station_logbook_details_query->row(); $data['station_locations_list'] = $this->stations->all_of_user(); - $data['page_title'] = "Edit visitor site"; + $data['page_title'] = __("Edit visitor site"); $this->load->view('stationsetup/visitor', $data); } @@ -209,7 +209,7 @@ public function saveVisitorLink() { $data['success'] = 1; } else { $data['success'] = 0; - $data['flashdata'] = 'Error. Link is already in use!'; + $data['flashdata'] = __('Error. Link is already in use!'); } echo json_encode($data); @@ -223,7 +223,7 @@ public function newLocation() { $this->load->model('logbook_model'); $data['iota_list'] = $this->logbook_model->fetchIota(); - $data['page_title'] = lang('station_location_create_header'); + $data['page_title'] = __("Create Station Location"); $this->load->view('station_profile/create', $data); } @@ -250,7 +250,7 @@ private function lbname2html($id, $name) { } private function lbpublicsearch2html($publicsearch, $id) { - $htmret = ($publicsearch=='1' ? 'Enabled' : 'Disabled'); + $htmret = ($publicsearch=='1' ? 'Enabled' : '' . __('Disabled') . ''); $htmret .= '
'; return $htmret; @@ -258,16 +258,16 @@ private function lbpublicsearch2html($publicsearch, $id) { private function lbstate2html($id) { if($this->session->userdata('active_station_logbook') != $id) { - $htmret=''; + $htmret=''; } else { - $htmret="" . lang('station_logbooks_active_logbook') . ""; + $htmret="" . __("Active Logbook") . ""; } return $htmret; } private function lbdel2html($id, $logbook_name) { if($this->session->userdata('active_station_logbook') != $id) { - $htmret=''; + $htmret=''; } else { $htmret=''; } @@ -277,8 +277,8 @@ private function lbdel2html($id, $logbook_name) { private function lblnk2html($public_slug, $logbook_name, $id) { $htmret = ' '; if($public_slug != '') { - $htmret .= ''; - $htmret .= ' '; + $htmret .= ''; + $htmret .= ' '; $htmret .= ' '; } return $htmret; @@ -338,39 +338,39 @@ private function stationid2html($station_id) { private function stationbadge2html($station_active, $qso_total, $current_active, $station_profile_name, $id) { $returntext = ''; if($station_active != 1) { - $returntext .= '
'; + $returntext .= '
'; } else { - $returntext .= '' . lang('station_location_active') . '
'; + $returntext .= '' . __("Active Station") . '
'; } - $returntext .='' . $qso_total .' '. lang('gen_hamradio_qso') . ''; + $returntext .='' . $qso_total .' '. __("QSO") . ''; return $returntext; } private function stationedit2html($id) { - return ''; + return ''; } private function stationemptylog2html($id) { - return ''; + return ''; } private function stationcopy2html($id) { - return ''; + return ''; } private function stationdelete2html($id, $station_profile_name, $station_active) { if($station_active != 1) { - return ''; + return ''; } return ''; } private function stationcountry2html($station_country, $dxcc_end) { - $returntext = $station_country == '' ? '- NONE -' : $station_country; + $returntext = $station_country == '' ? '- ' . __('NONE') . ' -' : $station_country; if ($dxcc_end != NULL) { - $returntext .= ' '.lang('gen_hamradio_deleted_dxcc').''; + $returntext .= ' '.__("Deleted DXCC").''; } return $returntext; @@ -384,7 +384,7 @@ public function remove_publicslug() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Not allowed'; + $data['flashdata'] = __('Not allowed'); } echo json_encode($data); } @@ -398,7 +398,7 @@ public function togglePublicSearch() { $data['success']=1; } else { $data['success']=0; - $data['flashdata']='Not allowed'; + $data['flashdata'] = __('Not allowed'); } echo json_encode($data); } @@ -425,7 +425,7 @@ public function linkLocations() { $data['locationdata'] = $this->stationsetup_model->locationInfo($locationid)->result(); } else { $data['success']=0; - $data['flashdata']='Error'; + $data['flashdata'] = __('Error'); } echo json_encode($data); } @@ -451,7 +451,7 @@ public function editExportmapOptions() { $data['exportmapoptions'] = $exportmapoptions; - $data['page_title'] = "Edit Export Map options"; + $data['page_title'] = __("Edit Export Map options"); $this->load->view('stationsetup/exportmapoptions', $data); } diff --git a/application/controllers/Statistics.php b/application/controllers/Statistics.php index a2487f8a1d..05d370f2b0 100644 --- a/application/controllers/Statistics.php +++ b/application/controllers/Statistics.php @@ -24,7 +24,7 @@ public function index() // Render User Interface // Set Page Title - $data['page_title'] = $this->lang->line('statistics_statistics'); + $data['page_title'] = __("Statistics"); $data['sat_active'] = array_search("SAT", $this->bands->get_user_bands(), true); // Load Views diff --git a/application/controllers/User.php b/application/controllers/User.php index a763b1a3d9..59ea5ce56b 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -9,7 +9,7 @@ public function index() $data['results'] = $this->user_model->users(); - $data['page_title'] = $this->lang->line('admin_user_accounts'); + $data['page_title'] = __("User Accounts"); $this->load->view('interface_assets/header', $data); $this->load->view('user/main'); @@ -659,10 +659,10 @@ function edit() { } $this->user_options_model->set_option('header_menu', 'locations_quickswitch', array('boolean'=>xss_clean($this->input->post('user_locations_quickswitch', true)))); $this->user_options_model->set_option('header_menu', 'utc_headermenu', array('boolean'=>xss_clean($this->input->post('user_utc_headermenu', true)))); - $this->session->set_flashdata('success', lang('account_user').' '.$this->input->post('user_name', true).' '.lang('account_word_edited')); + $this->session->set_flashdata('success', __("User").' '.$this->input->post('user_name', true).' '.__("edited")); redirect('user/edit/'.$this->uri->segment(3)); } else { - $this->session->set_flashdata('success', lang('account_user').' '.$this->input->post('user_name', true).' '.lang('account_word_edited')); + $this->session->set_flashdata('success', __("User").' '.$this->input->post('user_name', true).' '.__("edited")); redirect('user'); } return; diff --git a/application/controllers/Visitor.php b/application/controllers/Visitor.php index 2f19ee3d80..a69543ad79 100644 --- a/application/controllers/Visitor.php +++ b/application/controllers/Visitor.php @@ -369,10 +369,10 @@ function js_array($array) $data['layer'] = $this->optionslib->get_option('option_map_tile_server'); $data['attribution'] = $this->optionslib->get_option('option_map_tile_server_copyright'); - $data['gridsquares_gridsquares'] = lang('gridsquares_gridsquares'); - $data['gridsquares_gridsquares_confirmed'] = lang('gridsquares_gridsquares_confirmed'); - $data['gridsquares_gridsquares_not_confirmed'] = lang('gridsquares_gridsquares_not_confirmed'); - $data['gridsquares_gridsquares_total_worked'] = lang('gridsquares_gridsquares_total_worked'); + $data['gridsquares_gridsquares'] = __("Gridsquares"); + $data['gridsquares_gridsquares_confirmed'] = __("Gridsquares confirmed"); + $data['gridsquares_gridsquares_not_confirmed'] = __("Gridsquares not confirmed"); + $data['gridsquares_gridsquares_total_worked'] = __("Total gridsquares worked"); $data['visitor'] = true; diff --git a/application/language/bulgarian/account_lang.php b/application/language/bulgarian/account_lang.php deleted file mode 100644 index a959251255..0000000000 --- a/application/language/bulgarian/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Default Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/bulgarian/adif_lang.php b/application/language/bulgarian/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/bulgarian/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/bulgarian/admin_lang.php b/application/language/bulgarian/admin_lang.php deleted file mode 100644 index 80a9235046..0000000000 --- a/application/language/bulgarian/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/bulgarian/contesting_lang.php b/application/language/bulgarian/contesting_lang.php deleted file mode 100644 index 7f29801fb9..0000000000 --- a/application/language/bulgarian/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/bulgarian/filter_lang.php b/application/language/bulgarian/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/bulgarian/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/bulgarian/general_words_lang.php b/application/language/bulgarian/general_words_lang.php deleted file mode 100644 index e8777dec4b..0000000000 --- a/application/language/bulgarian/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/bulgarian/gridsquares_lang.php b/application/language/bulgarian/gridsquares_lang.php deleted file mode 100644 index 5c6faed454..0000000000 --- a/application/language/bulgarian/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Забранено - - - -

Достъпът до директорията е забранен.

- - - \ No newline at end of file diff --git a/application/language/bulgarian/lotw_lang.php b/application/language/bulgarian/lotw_lang.php deleted file mode 100644 index b7fac293b8..0000000000 --- a/application/language/bulgarian/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report Area, to mark QSOs as confirmed on LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] = '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.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW импорт'; -$lang['lotw_btn_upload_certificate'] = 'Качване на сертификат'; -$lang['lotw_btn_delete'] = 'Изтрий'; -$lang['lotw_btn_manual_sync'] = 'Ръчно синхронизиране'; -$lang['lotw_btn_upload_file'] = 'Качи файлa'; -$lang['lotw_btn_import_matches'] = 'Import LoTW Matches'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Отворете TQSL & отидете на раздела Callsign Certificates'; -$lang['lotw_p12_export_step_two'] = 'Щракнете с десния бутон върху желания опознавателен знак'; -$lang['lotw_p12_export_step_three'] = 'Щракнете върху "Save Callsign Certificate File" и не добавяйте парола'; -$lang['lotw_p12_export_step_four'] = 'Качете файла по-долу.'; - -$lang['lotw_confirmed'] = 'Това QSO е потвърдено на LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!'; -$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/bulgarian/menu_lang.php b/application/language/bulgarian/menu_lang.php deleted file mode 100644 index 121f6f6f5b..0000000000 --- a/application/language/bulgarian/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/bulgarian/qslcard_lang.php b/application/language/bulgarian/qslcard_lang.php deleted file mode 100644 index 647cd935f8..0000000000 --- a/application/language/bulgarian/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/bulgarian/station_lang.php b/application/language/bulgarian/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/bulgarian/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/bulgarian/statistics_lang.php b/application/language/bulgarian/statistics_lang.php deleted file mode 100644 index d1d01e4818..0000000000 --- a/application/language/bulgarian/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/chinese_simplified/account_lang.php b/application/language/chinese_simplified/account_lang.php deleted file mode 100644 index b302c28178..0000000000 --- a/application/language/chinese_simplified/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = '默认波段和 QSL 确认方式设置'; -$lang['account_gridmap_default_band'] = '默认波段'; -$lang['account_qsl_settings'] = '默认 QSL 方式'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Wavelog 中对 Winkeyer 的支持是实验性的,请在使用前先阅读 https://github.com/wavelog/wavelog/wiki/Winkey"; -$lang['account_winkeyer_enabled'] = "启用 Winkeyer 功能"; - -$lang['account_map_params'] = "地图设置"; -$lang['account_map_qso_by_default'] = "QSO (默认)"; -$lang['account_map_qso_confirm'] = "QSO (已确认)"; -$lang['account_map_qso_confirm_same_qso'] = "(如果选择'不',则显示 ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "基本信息"; -$lang['account_qso_logging_options'] = "QSO录入选项"; -$lang['account_third_party_services'] = "第三方服务"; -$lang['account_default_values'] = "默认值"; -$lang['account_miscellaneous'] = "其他"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "在 https://hams.at/users/settings 查看个人信息。"; -$lang['account_hamsat_workable_only'] = "只显示可通联的过境"; -$lang['account_hamsat_workable_only_hint'] = "如果启用,仅显示基于在 hams.at 设置好的位置信息计算过境,需要设置好 Private Feed Key。"; - -$lang['account_references_show'] = "在 QSO 页面显示标识代号栏"; -$lang['account_show_references_on_1st_tab'] = "启用后在 QSO 页面显示(非通用页面)。"; diff --git a/application/language/chinese_simplified/adif_lang.php b/application/language/chinese_simplified/adif_lang.php deleted file mode 100644 index 0691a29f4d..0000000000 --- a/application/language/chinese_simplified/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "日志文件的后缀必须是.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "选择台站位置"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF 文件"; - -$lang['adif_hint_no_info_in_file'] = "如果导入的 ADIF 文件不包含此信息,选择此项"; - -$lang['adif_import_dup'] = "导入重复的 QSO"; -$lang['adif_mark_imported_lotw'] = "标记导入的 QSO 为已上传至 LoTW"; -$lang['adif_mark_imported_hrdlog'] = "标记导入的 QSO 为已上传至 HRDLog Logbook"; -$lang['adif_mark_imported_qrz'] = "标记导入的 QSO 为已上传至 QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "标记导入的 QSO 为已上传至 Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "使用 ADIF 文件中的 DXCC 信息"; -$lang['adif_dxcc_from_adif_hint'] = "如果不选择,Wavelog 将会自动判断 QSO 的 DXCC"; - -$lang['adif_always_use_login_call_as_op'] = "总是在导入时使用登录的呼号作为操作者名称"; - -$lang['adif_ignore_station_call'] = "导入时忽略台站的呼号"; -$lang['adif_ignore_station_call_hint'] = "如果选择,Wavelog 会尝试导入 ADIF 文件中的 所有 QSO,而不判断是否与所选台站位置匹配"; - -$lang['adif_upload'] = "上传"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "导出日志"; -$lang['adif_export_take_it_anywhere_hint'] = "导出 ADIF 方便您将日志导入到 LoTW 等第三方应用程序或备份日志"; - - -$lang['adif_mark_exported_lotw'] = "将导出的 QSO 标记为已上传到 LoTW"; -$lang['adif_mark_exported_no_lotw'] = "导出没有上传到 LoTW 的 QSO"; - -$lang['adif_export_qso'] = "导出 QSO"; - -$lang['adif_export_sat_only_qso'] = "只导出卫星 QSO"; -$lang['adif_export_sat_only_qso_all'] = "导出所有卫星 QSO"; -$lang['adif_export_sat_only_qso_lotw'] = "导出 LoTW 上确认的所有卫星 QSO"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "如果未选择日期范围,则所有 QSO 都将被标记"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "将 QSO 标记为导出到 LoTW"; - -$lang['adif_qso_marked'] = "QSO 已标记"; -$lang['adif_yay_its_done'] = "导出成功"; -$lang['adif_qso_lotw_marked_confirm'] = "这些 QSO 已经被标记为已导出到 LoTW"; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "前往"; -$lang['adif_dcl_text_post'] = "并导出包含已确认 DOK 的日志。为了加快该过程,您可以仅选择 DL QSO 进行下载(即将'DL'放入前缀列表中)。可以在此处上传已下载的 ADIF 文件,以便使用 DOK 信息更新 QSO"; - -$lang['only_confirmed_qsos'] = "仅导入在 DCL 上确认的 QSO 的 DOK 数据"; -$lang['only_confirmed_qsos_hint'] = "如果您还想使用 DCL 中未经确认的 QSO 的数据更新 DOK,请取消选中"; - -$lang['overwrite_by_dcl'] = "用 DCL 覆盖日志中现有的 DOC(如果不同)"; -$lang['overwrite_by_dcl_hint'] = "如果选中,Wavelog 将使用 DCL 日志中的 DOK 强制覆盖现有的 DOK 信息。"; - -$lang['ignore_ambiguous'] = "忽略无法匹配的 QSO"; -$lang['ignore_ambiguous_hint'] = "如果不勾选,会显示 Wavelog 中无法匹配的 QSO 信息"; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF 已导入"; -$lang['adif_yay_its_imported'] = "导入成功"; -$lang['adif_import_confirm'] = "ADIF 文件已成功导入"; - -$lang['adif_import_dupes_inserted'] = " 重复的QSO已导入"; -$lang['adif_import_dupes_skipped'] = " 已跳过重复的QSO"; - -$lang['adif_import_errors'] = "ADIF 文件错误"; -$lang['adif_import_errors_hint'] = "ADIF 文件错误,QSO 虽然已添加,但以下字段尚未填充。"; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "DCL DOK 更新结果"; -$lang['dcl_info_updated'] = "DOK 的 DCL 信息已更新。"; -$lang['dcl_qsos_updated'] = "已更新的 QSO"; -$lang['dcl_qsos_ignored'] = "已忽略的 QSO"; -$lang['dcl_qsos_unmatched'] = "无法匹配的 QSO"; -$lang['dcl_no_qsos_updated'] = "未找到可以更新的 QSO。"; -$lang['dcl_dok_errors'] = "DOK 错误"; -$lang['dcl_dok_errors_details'] = "与 DCL 相比,日志中 DOK 的数据不同"; -$lang['dcl_qsl_status'] = "DCL QSL 状态"; -$lang['dcl_qsl_status_c'] = "已经通过 LoTW/Clublog/eQSL/竞赛 确认"; -$lang['dcl_qsl_status_mno'] = "已经通过奖项管理员确认"; -$lang['dcl_qsl_status_i'] = "已经通过 DCL 数据交叉检查确认"; -$lang['dcl_qsl_status_w'] = "等待确认"; -$lang['dcl_qsl_status_x'] = "未确认"; -$lang['dcl_qsl_status_unknown'] = "未知"; -$lang['dcl_no_match'] = "QSO 无法匹配"; diff --git a/application/language/chinese_simplified/admin_lang.php b/application/language/chinese_simplified/admin_lang.php deleted file mode 100644 index d5f122661d..0000000000 --- a/application/language/chinese_simplified/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ杂志网站上,或查看童效勇和陈方老师编纂的《业余无线电通信》了解更多相关信息"; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK 奖状"; -$lang['awards_dok_description_ln2'] = "德国从东到西绵延 630 多公里,从北到南绵延近 900 公里 德国 8200 万居民中约有 70,000 人是有执照的HAM,其中 40,000 多人是 DARC 的成员 DOK 是一个为各个地方分会提供标识符的系统,其意思是“Deutscher Ortsverband Kenner”(英语:“德国地方协会标识符”)"; -$lang['awards_dok_description_ln3'] = "DOK 由代表地区的字母和代表地方分会的两位数字组成,例如 P03 Friedrichshafen(“Hamradio 展览”所在城市)或 F41 Baunatal(DARC 总部所在地) 注意:DOK 中的零是一个常见错误,通常被记录为字母 O"; -$lang['awards_dok_description_ln4'] = "此信息来自于DARC 网站. 有关 DOK 奖项及其规则的信息,请参见 此处"; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC 奖状"; -$lang['awards_dxcc_description_ln2'] = "DXCC 代表“DX Century Club”,这是一个基于通联国家/地区的奖项 DXCC 列表基于 W1CBD 的 Clinton B. DeSoto 于 1935 编写的一篇文章,标题为“如何计算通联过的国家/地区, 新的 DX 评分系统'"; -$lang['awards_dxcc_description_ln3'] = "您可以在 ARRL 网站上找到有关 DXCC 奖的所有信息"; -$lang['awards_dxcc_description_ln4'] = "重要提示:随着时间的推移,DXCC 列表的标准已经发生变化 该列表将保持不变,直到实体不再满足添加该实体时所依据的标准,此时该实体将被移至“已删除列表” 您还会在 Wavelog 的列表中找到已删除的 DXCC 实体 请注意,这些 DXCC 实体已过时且不再有效(如 伪满洲国曾经也是一个合法的DXCC实体)"; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "弗雷德·菲什纪念奖"; -$lang['awards_ffma_description_ln2'] = "Fred Fish 纪念奖是为了纪念 Fred Fish, W5FF (SK) 而设立,他是第一个在 6 米波段上通联并确认了美国 48 个邻近地区的所有 488 个网格的业余爱好者"; -$lang['awards_ffma_description_ln3'] = "该奖项将颁发给任何能够再次做到 W5FF 成就的业余爱好者"; -$lang['awards_ffma_description_ln4'] = "如需了解更多信息,您可以访问此链接:https://www.arrl.org/ffma"; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "USKA(瑞士短波业余爱好者联盟)设立两个奖项:HELVETIA 26(H26)奖和 SWITZERLAND 奖,旨在通过鼓励在多个波段上通联尽可能多的瑞士州。"; -$lang['awards_helvetia_description_ln3'] = "这些奖项有两类:一个适用于 HF 频段,另一个适用于 VHF(包括 SHF 和 UHF)频段。这些奖项的有效连接可追溯到 1980 年 1 月 1 日"; -$lang['awards_helvetia_description_ln4'] = "如了解更多信息可在:https://www.uska.ch/contest/uska-diplome/ 查看"; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA 奖状"; -$lang['awards_iota_description_ln2'] = "IOTA 是一项令人兴奋且创新的活动,吸引了全球数千名无线电爱好者的兴趣 它成立于 1964 年,致力于促进与世界各地岛屿电台的无线电联系,以增强所有活跃在业余频段的用户的体验 为了实现这一目标,它利用了岛屿周围普遍存在的神秘感"; -$lang['awards_iota_description_ln3'] = "它由Islands On The Air (IOTA) Ltd(简称IOTA Management)与英国无线电协会(RSGB)合作管理 IOTA管理层将世界上的岛屿分为大约1200个“IOTA组”,每个组都有不同数量的“counters”,这些“counters”都是合格的岛屿 这些列表发布在 IOTA 目录和 IOTA 网站上 IOTA Island Chaser 的目标是与尽可能多的这些组中的至少一个进行无线电通联 该计划有一套明确的规则,通过在荣誉榜和年度名单中公布参与者的表现,并通过证书和享有盛誉的奖项来认可,鼓励追逐者之间的友好竞争"; -$lang['awards_iota_description_ln4'] = "您还可以在 IOTA WORLD 网站上找到此信息"; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA 奖状"; -$lang['awards_pota_description_ln2'] = "Parks on the Air® (POTA 中文又名 空中花园) 于 2017 年初启动,当时 ARRL 的 National Parks on the Air 特别活动结束后 一群爱好者希望在一年的活动之后继续享受乐趣,因此,POTA 诞生了"; -$lang['awards_pota_description_ln3'] = "POTA 的工作原理与 SOTA 类似,都有激活者和猎人 奖项根据公园数量、地理区域等分为多个类别"; -$lang['awards_pota_description_ln4'] = "有关可用奖项和类别的更多信息,请访问Parks on the Air® 网站(译者注:目前POTA中国由BH3XZT负责维护,POTA中国群聊:837917197)"; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG 信息"; -$lang['awards_sig_description_ln2'] = "SIG 或签名类别提供了对 Wavelog 中未实施的奖励使用任何类型的“奖励签名”的可能"; -$lang['awards_sig_description_ln3'] = "其原因是常见的 ADIF 格式仅为某些奖项提供了几个专用字段 SIG 仍然可以使用和评估所有其他类型的签名标记"; -$lang['awards_sig_description_ln4'] = "在 QSO 处理中,您会发现两个字段:“SIG”包含实际标记,在奖励评估中也可见,“SIG INFO”包含签名的描述 这两个字段都可以自由定制"; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA 奖状"; -$lang['awards_sota_description_ln2'] = "SOTA(空中山峰)是一项针对无线电业余爱好者的奖励计划,鼓励在山区进行便携式操作"; -$lang['awards_sota_description_ln3'] = "它在全球近百个国家全面运营 每个国家/地区都有自己的协会,该协会定义了该协会内公认的 SOTA 峰会 每次登顶都会为激活者和追逐者赢得与峰顶高度相关的分数 各种分数均可获得证书,最终获得著名的“山羊”和“棚屋树懒”奖杯 激活者和追赶者的荣誉榜保存在 SOTA 在线数据库中"; -$lang['awards_sota_description_ln4'] = "如需了解更多信息,请访问:https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County 奖状"; -$lang['awards_counties_description_ln2'] = "美国县奖 (USA-CA) 由 CQ 杂志赞助,颁发给与指定数量的美国县进行确认的双向无线电联络,其规则和条件可参见 此处"; -$lang['awards_counties_description_ln3'] = "USA-CA 可供全世界所有获得许可的业余爱好者使用,并颁发给所有县联络人的个人,无论使用的呼号、操作地点或日期如何"; -$lang['awards_counties_description_ln4'] = "美国-加拿大还可以获得 SWL 奖项"; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "美国网格大师奖状"; -$lang['awards_us_gridmaster_description_ln2'] = "GridMaster 奖是最负盛名的 AMSAT 奖项,由 Star Comm Group 于 2014 年首次推出 全球所有业余无线电操作员都可以使用它,他们可以通过卫星在美国所有 488 个网格方格通联,并且可以为每个通联到的人提供 QSL 确认"; -$lang['awards_us_gridmaster_description_ln3'] = "来自网站的官方信息:必须通过业余卫星与每个网格建立双向通信 没有最低信号报告要求 联系必须在同一地点或两个地点相距不超过 200 公里 申请人在奖励申请中的证明作为对遵守距离规则的确认 当个人在另一个 200 公里圈内的另一个地点获得奖项时,可以申请并获得多个 GridMaster 奖项"; -$lang['awards_us_gridmaster_description_ln4'] = "该地图仅显示了 SAT 上有效的 QSO"; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "日本网格大师奖"; -$lang['awards_ja_gridmaster_description_ln2'] = "正如美国网格大师一样,该奖项是基于日本所有网格通联的奖项"; -$lang['awards_ja_gridmaster_description_ln3'] = "有关该奖项的更多信息和规则仍有待确定"; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF 世纪俱乐部奖"; -$lang['awards_vucc_description_ln2'] = "VHF/UHF 世纪俱乐部奖颁发给在所需频段上工作和确认的最小数量的网格"; -$lang['awards_vucc_description_ln3'] = "官方信息和规则可以在本文档中找到:点击此处"; -$lang['awards_vucc_description_ln4'] = "仅 VHF/UHF 频段"; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS 奖状"; -$lang['awards_was_description_ln2'] = "ARRL 最受欢迎的奖项是“Worked All States Award” 已向世界各地的HAM颁发了数以千计的奖项 在ARRL成立101周年之际,他们重新设计了证书和项目,希望能够精简和完善奖励项目"; -$lang['awards_was_description_ln3'] = "WAS(在所有州通联过)奖面向全世界所有提交证明并书面确认与美利坚合众国 50 个州联系的业余爱好者 美国及其属地的业余爱好者必须是 ARRL 的成员才能申请 WAS 来自美国境外的申请人不受此要求的约束"; -$lang['awards_was_description_ln4'] = "ARRL WAS 奖的所有信息和规则均可在此处找到"; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - 世界动植物奖"; -$lang['awards_wwff_description_ln2'] = "WWFF,即“业余无线电世界动植物群”,鼓励获得许可的业余无线电操作员离开棚屋,在全球动植物保护区 (PFF) 进行便携式操作"; -$lang['awards_wwff_description_ln3'] = "全球已有超过 26,000 个动植物保护区 (PFF) 已在 WWFF 名录中注册 猎人和激活者可以申请全球和国内的丰富多彩的奖项"; -$lang['awards_wwff_description_ln4'] = "如需了解更多信息,请访问:https://wwff.co/awards/"; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - 通联全日本都道府县奖状"; -$lang['awards_waja_description_ln2'] = "WAJA,通联全日本都道府县奖状,鼓励许可的业余无线电操作者与所有日本都道府县的电台通联"; -$lang['awards_waja_description_ln3'] = "也许可以通过展示出已经通联(或收听)过来自日本47个都道府县的电台发来的QSL卡片,并按照WAJA(HAJA)的顺序进行排列,都道府县的名称可以忽略"; -$lang['awards_waja_description_ln4'] = "请访问 https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm 获得更多信息"; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - 日本世纪城市奖"; -$lang['awards_jcc_description_ln2'] = "通联(收听)并收到日本 100 个不同城市的电台卡片,即可申请。"; -$lang['awards_jcc_description_ln3'] = "此外 JCC 还有数量为 200, 300, 400, 500, 600, 700 and 800 的奖项类别。QSL 卡片应记录 JCC 标识代号,城市名称为无效。额外的贴纸会在每 50 个通联记录发放,如 150, 250, 350, 450, 550, 650, 750 个城市数量"; -$lang['awards_jcc_description_ln4'] = "更多信息可在:https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm 查看"; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - 通联大不列颠奖"; -$lang['awards_wab_description_ln2'] = "WAB(Worked All Britain squares in Amateur Ra​​dio)鼓励业余无线电操作员通联英国所有网格"; -$lang['awards_wab_description_ln3'] = "达成既定数量的通联网格可申请,可在如下链接查看"; -$lang['awards_wab_description_ln4'] = "更多信息请查看 https://wab.intermip.net/default.php"; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU 分区"; -$lang['awards_itu_description_ln2'] = "通联全球 75 个 ITU 分区中的 70 个可申请该奖"; -$lang['awards_itu_description_ln3'] = "更多信息请查看 RSGB"; diff --git a/application/language/chinese_simplified/contesting_lang.php b/application/language/chinese_simplified/contesting_lang.php deleted file mode 100644 index 79bddaa14f..0000000000 --- a/application/language/chinese_simplified/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/chinese_simplified/filter_lang.php b/application/language/chinese_simplified/filter_lang.php deleted file mode 100644 index a35a17568d..0000000000 --- a/application/language/chinese_simplified/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = '已验证'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = '开始日期'; -$lang['filter_general_to'] = '截止日期'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- 无 -(例如 /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = '传播方式'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = '用选中行进行:'; -$lang['filter_actions_update_f_callbook'] = '从 Callbook 更新'; -$lang['filter_actions_queue_bureau'] = '卡片局队列'; -$lang['filter_actions_queue_direct'] = '直邮卡片队列'; -$lang['filter_actions_queue_electronic'] = '电子卡片队列'; -$lang['filter_actions_sent_bureau'] = '已发送(卡片局)'; -$lang['filter_actions_sent_direct'] = '已发送(直邮)'; -$lang['filter_actions_sent_electronic'] = '已发送(电子)'; -$lang['filter_actions_not_sent'] = '未发送'; -$lang['filter_actions_qsl_n_required'] = '未获取 QSL'; -$lang['filter_actions_recv_bureau'] = '已接收(卡片局)'; -$lang['filter_actions_recv_direct'] = '已接收(直邮)'; -$lang['filter_actions_recv_electronic'] = '已接收(电子)'; -$lang['filter_actions_not_rcvd'] = "未收到"; -$lang['filter_actions_create_adif'] = '创建 ADIF'; -$lang['filter_actions_print_label'] = '打印标签'; -$lang['filter_actions_start_print_title'] = '打印标签'; -$lang['filter_actions_print_include_via'] = "包含通过"; -$lang['filter_actions_print_include_grid'] = '包含网格?'; -$lang['filter_actions_print_include_ref'] = "包含标识代码?(SIG, SOTA, POTA, IOTA, WWFF; 如存在则显示)"; -$lang['filter_actions_start_print'] = '开始打印编号'; -$lang['filter_actions_print'] = '打印'; -$lang['filter_actions_qsl_slideshow'] = 'QSL 展示窗'; -$lang['filter_actions_delete'] = '删除'; -$lang['filter_actions_delete_warning'] = "警告!确定要删除选中的QSO吗?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = '高级日志选项'; -$lang['filter_options_column'] = '列'; -$lang['filter_options_show'] = '显示'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = '关闭'; diff --git a/application/language/chinese_simplified/general_words_lang.php b/application/language/chinese_simplified/general_words_lang.php deleted file mode 100644 index 0644b5628f..0000000000 --- a/application/language/chinese_simplified/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -此处执行此操作!'; -$lang['dashboard_locations_warning'] = '您没有电台站位置。 前往此处创建它!'; -$lang['dashboard_logbooks_warning'] = '你没有电台日志。 请前往此处创建它!'; - -$lang['hams_at_no_activations_found'] = '未找到即将进行的激活。 请稍后再回来查看。'; - -$lang['gen_add_to_contest'] = "向竞赛中添加 QSO"; -$lang['general_word_realtime'] = "实时"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/chinese_simplified/gridsquares_lang.php b/application/language/chinese_simplified/gridsquares_lang.php deleted file mode 100644 index 109e43c767..0000000000 --- a/application/language/chinese_simplified/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Directory access is forbidden.

- - - \ No newline at end of file diff --git a/application/language/chinese_simplified/lotw_lang.php b/application/language/chinese_simplified/lotw_lang.php deleted file mode 100644 index b888984fa7..0000000000 --- a/application/language/chinese_simplified/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report 中导出的 ADIF 文件,并且标记在 LoTW上已得到确认的QSO'; -$lang['lotw_upload_type_must_be_adi'] = '日志文件的类型必须为 .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = '为我拉取 LoTW 数据'; -$lang['lotw_select_callsign'] = '选择呼号以获取 LoTW 确认'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog 将会使用储存在你个人用户信息当中的 LoTW 用户名和密码从 LoTW 上为你下载报告Wavelog 下载的这份报告将会包括自你所选之日以来的或者你最后的 LoTW 确认信息(目前日志当中)以来的所有确认'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW 导入'; -$lang['lotw_btn_upload_certificate'] = '上传证书'; -$lang['lotw_btn_delete'] = '删除'; -$lang['lotw_btn_manual_sync'] = '手动同步'; -$lang['lotw_btn_upload_file'] = '上传文件'; -$lang['lotw_btn_import_matches'] = '导入 LoTW 匹配'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = '打开 TQSL & 选择 呼号证书 选项'; -$lang['lotw_p12_export_step_two'] = '右键选择目标呼号'; -$lang['lotw_p12_export_step_three'] = '单击 "保存呼号证书文件" 并不要指定密码'; -$lang['lotw_p12_export_step_four'] = '在下方上传文件'; - -$lang['lotw_confirmed'] = '该 QSO 已在 LoTW 确认'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = '至少有一个 LoTW 证书即将过期!'; -$lang['lotw_cert_expired'] = '至少有一个 LoTW 证书已经过期!'; - -// Lotw User -$lang['lotw_user'] = '这个电台使用 LOTW'; -$lang['lotw_last_upload'] = '最后一次上传是'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = '上传目录非可写,请联系本站管理员。'; diff --git a/application/language/chinese_simplified/menu_lang.php b/application/language/chinese_simplified/menu_lang.php deleted file mode 100644 index 1356b67053..0000000000 --- a/application/language/chinese_simplified/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587',如果使用了SSL -> '465'"; -$lang['options_smtp_username_hint'] = "登录邮件服务器的用户名,通常情况下,这和发送邮件的邮箱地址相同"; -$lang['options_smtp_password_hint'] = "登录邮件服务器的密码"; -$lang['options_send_testmail'] = "发送测试邮件"; -$lang['options_send_testmail_hint'] = "邮件将会发送到填写在个人信息中的邮箱中"; -$lang['options_send_testmail_failed'] = "测试邮件发送失败,请检查设置"; -$lang['options_send_testmail_success'] = "测试邮件发送成功,设置正常"; - -$lang['options_oqrs'] = 'OQRS 设置'; -$lang['options_global_text'] = '全局文本'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = '该文本是一个可选文本,可以显示在OQRS页面的顶部。'; -$lang['options_grouped_search'] = '分组搜索'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = '当此选项打开时,所有具有OQRS活动的电台位置将同时搜索'; -$lang['options_grouped_search_show_station_name'] = "在分组搜索结果中显示台站名称"; -$lang['options_grouped_search_show_station_name_hint'] = "如果分组搜索被启用,台站名称将会显示在表格当中"; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS 选项已保存'; - -$lang['options_save'] = '保存'; -$lang['options_dxcluster_provider'] = 'DXClusterCache 的信息来源'; -$lang['options_dxcluster_longtext'] = 'DXClusterCache 的信息来源,您可以通过 DXClusterAPI 来设置自己的来源或使用公共来源'; -$lang['options_dxcluster_hint'] = 'DXClusterCache 来源,例如:https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache 的网址已更换为: '; -$lang['options_dxcluster_maxage'] = '最多关心的报告数量'; -$lang['options_dxcluster_maxage_hint'] = '报告的时长(分钟为单位)将会在‘频段/查找’中进行处理'; -$lang['options_dxcluster_decont'] = '显示来自以下大洲的报告'; -$lang['options_dxcluster_maxage_changed_to']='最多关心的报告数量已被更新为 '; -$lang['options_dxcluster_decont_changed_to']='大洲已被更新为 '; -$lang['options_dxcluster_decont_hint']='只有来自这个大洲的报告才会被显示'; - -$lang['options_version_dialog'] = "版本信息"; -$lang['options_version_dialog_close'] = "关闭"; -$lang['options_version_dialog_dismiss'] = "不再显示"; -$lang['options_version_dialog_settings'] = "版本设置"; -$lang['options_version_dialog_header'] = "版本信息标题"; -$lang['options_version_dialog_header_hint'] = "你可以更改版本信息的标题"; -$lang['options_version_dialog_header_changed_to'] = "版本信息的标题被更换为 "; -$lang['options_version_dialog_mode'] = "版本信息模式"; -$lang['options_version_dialog_mode_release_notes'] = "只有发布版的更新内容"; -$lang['options_version_dialog_mode_custom_text'] = "只有自定义文字"; -$lang['options_version_dialog_mode_both'] = "发布版的更新内容和自定义文字"; -$lang['options_version_dialog_mode_disabled'] = "禁用"; -$lang['options_version_dialog_mode_hint'] = "版本信息将会对所有用户显示. 用户可以选择在阅读后关闭对话框,选择是否显示 GitHub 上发布版的更新内容还是自定义文字,或者两者"; -$lang['options_version_dialog_custom_text'] = "版本信息————自定义文字"; -$lang['options_version_dialog_custom_text_hint'] = "自定义文字将会在对话框中显示"; -$lang['options_version_dialog_mode_changed_to'] = "版本信息模式切换为"; -$lang['options_version_dialog_custom_text_saved'] = "版本信息自定义文字已保存"; -$lang['options_version_dialog_success_show_all'] = "版本信息将会重新向用户显示"; -$lang['options_version_dialog_success_hide_all'] = "版本信息不再会向用户显示"; -$lang['options_version_dialog_show_hide'] = "显示/隐藏版本信息对话框"; -$lang['options_version_dialog_show_all'] = "对所有用户显示"; -$lang['options_version_dialog_hide_all'] = "对所有用户隐藏"; -$lang['options_version_dialog_show_all_hint'] = "这将会在用户刷新页面时重新显示版本信息对话框"; -$lang['options_version_dialog_hide_all_hint'] = "这将会关闭对用户显示版本信息对话框"; - -$lang['options_save'] = '保存'; - -// Bands - -$lang['options_bands'] = "波段设置"; -$lang['options_bands_text_ln1'] = "使用波段列表,您可以控制创建新 QSO 时显示哪些波段。"; -$lang['options_bands_text_ln2'] = "启用的波段将显示在 QSO“波段”下拉列表中,而停用的频段将被隐藏且无法选择。"; -$lang['options_bands_create'] = "创建波段"; -$lang['options_bands_edit'] = "编辑波段"; -$lang['options_bands_activate_all'] = "启用所有"; -$lang['options_bands_activateall_warning'] = "警告!你要启用所有波段吗?"; -$lang['options_bands_deactivate_all'] = "停用所有"; -$lang['options_bands_deactivateall_warning'] = "警告!你要停用所有波段吗?"; -$lang['options_bands_ssb_qrg'] = "SSB 频率"; -$lang['options_bands_ssb_qrg_hint'] = "波段中 SSB 的频率(以 Hz 为单位)"; -$lang['options_bands_data_qrg'] = "DATA 频率"; -$lang['options_bands_data_qrg_hint'] = "波段中 DATA 的频率(以 Hz 为单位)"; -$lang['options_bands_cw_qrg'] = "CW 频率"; -$lang['options_bands_cw_qrg_hint'] = "波段中 CW 的频率(以 Hz 为单位)"; - -$lang['options_bands_name_band'] = "波段名称(例如:20m)"; -$lang['options_bands_name_bandgroup'] = "频段名称(例如:HF、VHF、UHF、SHF)"; -$lang['options_bands_delete_warning'] = "警告! 您确定要删除以下波段:"; - diff --git a/application/language/chinese_simplified/qslcard_lang.php b/application/language/chinese_simplified/qslcard_lang.php deleted file mode 100644 index 6dd2c381ef..0000000000 --- a/application/language/chinese_simplified/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -此处找到。"; -$lang['qso_simplefle_qso_data'] = "QSO 数据"; -$lang['qso_simplefle_qso_date_hint'] = "如果您不选择日期,则将使用今天的日期。"; -$lang['qso_simplefle_qso_list'] = "QSO 列表"; -$lang['qso_simplefle_qso_list_total'] = "QSO 总数"; -$lang['qso_simplefle_qso_date'] = "QSO 日期"; -$lang['qso_simplefle_operator'] = "操作员"; -$lang['qso_simplefle_operator_hint'] = "例如 BA1AA"; -$lang['qso_simplefle_station_call_location'] = "位置"; -$lang['qso_simplefle_station_call_location_hint'] = "如果您确实在新位置进行操作,请首先创建一个新的电台站位置"; -$lang['qso_simplefle_utc_time'] = "当前 UTC 时间"; -$lang['qso_simplefle_enter_the_data'] = "输入信息"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "关闭并加载示例数据"; -$lang['qso_simplefle_reload'] = "重新加载 QSO 列表"; -$lang['qso_simplefle_save'] = "保存 QSO 列表"; -$lang['qso_simplefle_clear'] = "清除记录会话"; -$lang['qso_simplefle_refs_hint'] = "标识代码可以是 SOTA、IOTA、POTA 或 WWFF"; - -$lang['qso_simplefle_error_band'] = "找不到波段!"; -$lang['qso_simplefle_error_mode'] = "找不到模式!"; -$lang['qso_simplefle_error_time'] = "时间未设定!"; -$lang['qso_simplefle_error_stationcall'] = "未选择呼叫的电台站!"; -$lang['qso_simplefle_error_operator'] = "未输入操作员呼号!"; -$lang['qso_simplefle_warning_reset'] = "警告!您确定要重置日志会话吗?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "警告!您不能记录 QSO 列表,因为某些 QSO 没有定义波段和模式!"; -$lang['qso_simplefle_warning_missing_time'] = "警告!您不能记录 QSO 列表,因为某些 QSO 没有定义时间!"; -$lang['qso_simplefle_warning_example_data'] = "警告!您不能记录 QSO 列表,因为您正在使用示例数据!"; -$lang['qso_simplefle_confirm_save_to_log'] = "确认保存 QSO 到日志"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO 已记录!"; -$lang['qso_simplefle_success_save_to_log'] = "QSO 已成功记录到日志。"; -$lang['qso_simplefle_error_date'] = "日期格式错误!"; - -$lang['qso_simplefle_syntax_help_button'] = "FLE 语法帮助"; -$lang['qso_simplefle_syntax_help_title'] = "FLE 语法帮助"; -$lang['qso_simplefle_syntax_help_ln1'] = "FLE 语法是一种简单的语法,用于快速记录 QSO。它的工作原理是,您只需输入每个 QSO 的更改部分。"; -$lang['qso_simplefle_syntax_help_ln2'] = "在每一行上,只写与上一个 QSO 不同的数据。"; -$lang['qso_simplefle_syntax_help_ln3'] = "例如,如果您在 20m 上与 DF3CB 进行了两次 QSO,您可以这样写:"; -$lang['qso_simplefle_syntax_help_ln4'] = "如果您不提供任何 RST 信息,语法将使用 59 (599 用于数据)。我们的下一个 QSO 不是双方都是 59,所以我们首先提供发送的 RST 信息。它比第一个 QSO 晚了 2 分钟。"; -$lang['qso_simplefle_syntax_help_ln5'] = "第一个 QSO 是在 21:34,第二个 QSO 在 21:36,比第一个 QSO 晚了 2 分钟。我们写下 6,因为这是这里唯一改变的数据。关于波段和模式的信息没有改变,因此省略了这些数据。"; -$lang['qso_simplefle_syntax_help_ln6'] = "我们的下一个 QSO 是在 2021 年 5 月 14 日的 21:40,我们将波段更改为 40m,但仍然在 SSB 上。如果没有给出 RST 信息,语法将为每个新的 QSO 使用 59。因此,我们可以添加另一个 QSO,它在两天后的同一时间发生。日期必须是 YYYY-MM-DD 格式。"; -$lang['qso_simplefle_syntax_help_ln7'] = "完整的可用指令和语法可在 Wavelog Wiki 中的 这篇文章 查看。"; -$lang['qso_simplefle_syntax_help_ln8'] = ""; -$lang['qso_simplefle_syntax_help_ln9'] = ""; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/chinese_simplified/station_lang.php b/application/language/chinese_simplified/station_lang.php deleted file mode 100644 index 0b327e36fd..0000000000 --- a/application/language/chinese_simplified/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -\'台站地址\'中选择一个'; -$lang['station_location_reassign_at'] = '重新分配 '; -$lang['station_location_warning_reassign'] = '由于 Wavelog 设置更改,您需要重新在电台设置中重新分配 QSO'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = '名称'; -$lang['station_location_name_hint'] = '自定义电台名称例如:家 (HM54ip)'; -$lang['station_location_callsign'] = '电台呼号'; -$lang['station_location_callsign_hint'] = '电台呼号,例如:4W7EST/P'; -$lang['station_location_power'] = '电台功率 (W)'; -$lang['station_location_power_hint'] = '默认电台功率 (W),如有 CAT 信息会覆盖此设置'; -$lang['station_location_emptylog'] = '日志为空'; -$lang['station_location_confirm_active'] = '确认将如下台站设为启用状态:'; -$lang['station_location_set_active'] = '设置启用'; -$lang['station_location_active'] = '启用的台站'; -$lang['station_location_claim_ownership'] = '宣称所有权'; -$lang['station_location_confirm_del_qso'] = '确认删除台站下的所有 QSO?'; -$lang['station_location_confirm_del_stationlocation'] = '确认删除该台站 '; -$lang['station_location_confirm_del_stationlocation_qso'] = '此操作会删除所有该台站的 QSO'; -$lang['station_location_dxcc'] = '台站 DXCC'; -$lang['station_location_dxcc_hint'] = '台站的 DXCC 实体,例如 China'; -$lang['station_location_dxcc_warning'] = "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽略该警告。"; -$lang['station_location_city'] = '台站城市'; -$lang['station_location_city_hint'] = '台站城市,例如 Beijing'; -$lang['station_location_state'] = '台站州/省'; -$lang['station_location_state_hint'] = '台站的州或省,如国家不适用请留空'; -$lang['station_location_county'] = '台站县'; -$lang['station_location_county_hint'] = '台站的县 (仅用于 美国本土/阿拉斯加/夏威夷)'; -$lang['station_location_gridsquare'] = '台站网格地址'; -$lang['station_location_gridsquare_hint_ln1'] = "台站网格地址,例如 HM54ip,可在 这里 查询自己的网格"; -$lang['station_location_gridsquare_hint_ln2'] = "如果处在网格线上,请输入逗号分隔的多个网格,例如:IO77,IO78,IO87,IO88"; -$lang['station_location_iota_hint_ln1'] = "台站 IOTA 标识代码,例如 EU-005"; -$lang['station_location_iota_hint_ln2'] = "查看 IOTA 名录:IOTA World"; -$lang['station_location_sota_hint_ln1'] = "台站 SOTA 标识代码,查看全部 SOTA:SOTA Maps"; -$lang['station_location_wwff_hint_ln1'] = "台站 WWFF 标识代码,查看 GMA Map"; -$lang['station_location_pota_hint_ln1'] = "台站 POTA 标识代码,允许多个逗号分隔值,POTA 地图:POTA Map"; -$lang['station_location_signature'] = "签名"; -$lang['station_location_signature_name'] = "签名名称"; -$lang['station_location_signature_name_hint'] = "台站签名 (例如 TU 73)"; -$lang['station_location_signature_info'] = "签名信息"; -$lang['station_location_signature_info_hint'] = "签名信息 (例如 DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'eQSL 中设置过的 QTH Nichname'; -$lang['station_location_eqsl_defaultqslmsg'] = "默认 QSL 消息"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "定义一个发送给对方的 QSO 默认消息(适用于 eQSL 等)"; -$lang['station_location_qrz_subscription'] = '需要付费订阅'; -$lang['station_location_qrz_hint'] = "查看 API Key:the QRZ.com Logbook 设置页面"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook 上传'; -$lang['station_location_hrdlog_username'] = "HRDLog.net 用户名"; -$lang['station_location_hrdlog_username_hint'] = "HRDlog.net 注册用户名,通常为呼号"; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook 实时上传"; -$lang['station_location_hrdlog_code_hint'] = "创建 API 代码:HRDLog.net 用户界面"; -$lang['station_location_qo100_hint'] = "创建 API 代码:your QO-100 Dx Club 用户界面"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club 实时上传"; -$lang['station_location_oqrs_enabled'] = "OQRS 已启用"; -$lang['station_location_oqrs_email_alert'] = "OQRS 邮件提醒"; -$lang['station_location_oqrs_email_hint'] = "确认邮件功能在站点设置中已配置"; -$lang['station_location_oqrs_text'] = "OQRS 文本"; -$lang['station_location_oqrs_text_hint'] = "QSL 信息"; -$lang['station_location_ignore'] = "忽略 Clublog 上传"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog 实时上传'; - - diff --git a/application/language/chinese_simplified/statistics_lang.php b/application/language/chinese_simplified/statistics_lang.php deleted file mode 100644 index e7a0ae29bb..0000000000 --- a/application/language/chinese_simplified/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - 您最远的通联是与"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "在网格"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "距离是"; -$lang['statistics_distances_number_of_qsos'] = "QSO 数量"; -$lang['statistics_distances_callsigns_worked'] = "通联的呼号(最多显示5个):"; -$lang['statistics_distances_qsos_with'] = "QSO 与"; -$lang['statistics_distances_and_band'] = "和波段"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "时间线"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "本年QSO总数"; -$lang['statistics_days_with_qso_short'] = "QSO的日期"; -$lang['statistics_dwq_longest_streak_in_log'] = "日志中最长QSO连续记录"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "最多显示10条最长QSO连续记录"; -$lang['statistics_dwq_streak_continuous_days'] = "最长QSO连续记录"; -$lang['statistics_dwq_current_streak_in_log'] = "目前的QSO连续记录"; -$lang['statistics_dwq_current_streak_continuous_days'] = "当前连续天数"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "如果你今天进行了QSO,那么就能延长你的连续天数,否则将会被打破清零"; -$lang['statistics_dwq_no_current_streak'] = "没有找到连续的天数"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/czech/account_lang.php b/application/language/czech/account_lang.php deleted file mode 100644 index a816dadfd8..0000000000 --- a/application/language/czech/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Výchozí pásma'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/czech/adif_lang.php b/application/language/czech/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/czech/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/czech/admin_lang.php b/application/language/czech/admin_lang.php deleted file mode 100644 index c1ec503750..0000000000 --- a/application/language/czech/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/czech/contesting_lang.php b/application/language/czech/contesting_lang.php deleted file mode 100644 index c0f5c01570..0000000000 --- a/application/language/czech/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/czech/filter_lang.php b/application/language/czech/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/czech/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/czech/general_words_lang.php b/application/language/czech/general_words_lang.php deleted file mode 100644 index 8617d26fa5..0000000000 --- a/application/language/czech/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/czech/gridsquares_lang.php b/application/language/czech/gridsquares_lang.php deleted file mode 100644 index fc37abfa84..0000000000 --- a/application/language/czech/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Directory access is forbidden.

- - - \ No newline at end of file diff --git a/application/language/czech/lotw_lang.php b/application/language/czech/lotw_lang.php deleted file mode 100644 index a8b167a35d..0000000000 --- a/application/language/czech/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report Area, to mark QSOs as confirmed on LOTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Deník musí být ve formátu .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Stáhni data z LoTW'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog použije uživatelské jméno a heslo LoTW uložené ve vašem uživatelském profilu, aby vám stáhl datz LoTW.Stažen budu data od nastaveného datumu nebo od posledního stažení až do teď.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'Import z LoTW'; -$lang['lotw_btn_upload_certificate'] = 'Nahraj certifikát'; -$lang['lotw_btn_delete'] = 'Smazat'; -$lang['lotw_btn_manual_sync'] = 'Ruční synchronizace'; -$lang['lotw_btn_upload_file'] = 'Nahraj soubor'; -$lang['lotw_btn_import_matches'] = 'Import QSL z LoTW'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Otevři TQSL & bež do záložky Callsign Certificates'; -$lang['lotw_p12_export_step_two'] = 'pravé tlačítko myši na vyprané značce'; -$lang['lotw_p12_export_step_three'] = 'Klikni "Save Callsign Certificate File" a nezadavej heslo'; -$lang['lotw_p12_export_step_four'] = 'Nahraj soubor níže.'; - -$lang['lotw_confirmed'] = 'This QSO is confirmed on LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!'; -$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/czech/menu_lang.php b/application/language/czech/menu_lang.php deleted file mode 100644 index 01950ee89d..0000000000 --- a/application/language/czech/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS možnosti'; -$lang['options_global_text'] = 'Globální text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'Tento text je nepovinný text, který lze zobrazit na horní části stránky OQRS.'; -$lang['options_grouped_search'] = 'Seskupené vyhledávání'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'Když je tato možnost zapnutá, budou všechny stanice s aktivním OQRS vyhledávány najednou.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'Možnosti OQRS byly uloženy.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Uložit'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/czech/qslcard_lang.php b/application/language/czech/qslcard_lang.php deleted file mode 100644 index 9cf5189dca..0000000000 --- a/application/language/czech/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/czech/station_lang.php b/application/language/czech/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/czech/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/czech/statistics_lang.php b/application/language/czech/statistics_lang.php deleted file mode 100644 index 89380ed37c..0000000000 --- a/application/language/czech/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/dutch/account_lang.php b/application/language/dutch/account_lang.php deleted file mode 100644 index ef2d9d3b93..0000000000 --- a/application/language/dutch/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Default Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/dutch/adif_lang.php b/application/language/dutch/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/dutch/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/dutch/admin_lang.php b/application/language/dutch/admin_lang.php deleted file mode 100644 index 798c210566..0000000000 --- a/application/language/dutch/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/dutch/contesting_lang.php b/application/language/dutch/contesting_lang.php deleted file mode 100644 index 25dc94b86d..0000000000 --- a/application/language/dutch/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/dutch/filter_lang.php b/application/language/dutch/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/dutch/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/dutch/general_words_lang.php b/application/language/dutch/general_words_lang.php deleted file mode 100644 index 848ae2f4e4..0000000000 --- a/application/language/dutch/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/dutch/gridsquares_lang.php b/application/language/dutch/gridsquares_lang.php deleted file mode 100644 index f52b4bab83..0000000000 --- a/application/language/dutch/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Geen toegang - - - -

Toegang tot de map niet toegestaan.

- - - \ No newline at end of file diff --git a/application/language/dutch/lotw_lang.php b/application/language/dutch/lotw_lang.php deleted file mode 100644 index 2bc3518acc..0000000000 --- a/application/language/dutch/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report Area, to mark QSOs as confirmed on LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] = '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.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW Import'; -$lang['lotw_btn_upload_certificate'] = 'Upload Certificate'; -$lang['lotw_btn_delete'] = 'Delete'; -$lang['lotw_btn_manual_sync'] = 'Manual Sync'; -$lang['lotw_btn_upload_file'] = 'Upload File'; -$lang['lotw_btn_import_matches'] = 'Import LoTW Matches'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Open TQSL & go to the Callsign Certificates Tab'; -$lang['lotw_p12_export_step_two'] = 'Right click on desired Callsign'; -$lang['lotw_p12_export_step_three'] = 'Click "Save Callsign Certificate File" and do not add a password'; -$lang['lotw_p12_export_step_four'] = 'Upload File below.'; - -$lang['lotw_confirmed'] = 'This QSO is confirmed on LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!'; -$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/dutch/menu_lang.php b/application/language/dutch/menu_lang.php deleted file mode 100644 index ba0434715f..0000000000 --- a/application/language/dutch/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/dutch/qslcard_lang.php b/application/language/dutch/qslcard_lang.php deleted file mode 100644 index f1ca1913d2..0000000000 --- a/application/language/dutch/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/dutch/station_lang.php b/application/language/dutch/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/dutch/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/dutch/statistics_lang.php b/application/language/dutch/statistics_lang.php deleted file mode 100644 index 1c3c74cd53..0000000000 --- a/application/language/dutch/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/english/account_lang.php b/application/language/english/account_lang.php deleted file mode 100644 index ee38d43845..0000000000 --- a/application/language/english/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Default Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/english/adif_lang.php b/application/language/english/adif_lang.php deleted file mode 100644 index 70e223d9c3..0000000000 --- a/application/language/english/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)."; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched."; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/english/admin_lang.php b/application/language/english/admin_lang.php deleted file mode 100644 index f0510df7e4..0000000000 --- a/application/language/english/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/english/contesting_lang.php b/application/language/english/contesting_lang.php deleted file mode 100644 index 4995ee13ed..0000000000 --- a/application/language/english/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/english/filter_lang.php b/application/language/english/filter_lang.php deleted file mode 100644 index 1b144727f6..0000000000 --- a/application/language/english/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'To'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/english/general_words_lang.php b/application/language/english/general_words_lang.php deleted file mode 100644 index ed8a573881..0000000000 --- a/application/language/english/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/english/gridsquares_lang.php b/application/language/english/gridsquares_lang.php deleted file mode 100644 index 5c6faed454..0000000000 --- a/application/language/english/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Directory access is forbidden.

- - - \ No newline at end of file diff --git a/application/language/english/lotw_lang.php b/application/language/english/lotw_lang.php deleted file mode 100644 index 98f963dd2b..0000000000 --- a/application/language/english/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report Area, to mark QSOs as confirmed on LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] = '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.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW Import'; -$lang['lotw_btn_upload_certificate'] = 'Upload Certificate'; -$lang['lotw_btn_delete'] = 'Delete'; -$lang['lotw_btn_manual_sync'] = 'Manual Sync'; -$lang['lotw_btn_upload_file'] = 'Upload File'; -$lang['lotw_btn_import_matches'] = 'Import LoTW Matches'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Open TQSL & go to the Callsign Certificates Tab'; -$lang['lotw_p12_export_step_two'] = 'Right click on desired Callsign'; -$lang['lotw_p12_export_step_three'] = 'Click "Save Callsign Certificate File" and do not add a password'; -$lang['lotw_p12_export_step_four'] = 'Upload File below.'; - -$lang['lotw_confirmed'] = 'This QSO is confirmed on LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!'; -$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Last Upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/english/menu_lang.php b/application/language/english/menu_lang.php deleted file mode 100644 index 816145cf59..0000000000 --- a/application/language/english/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/english/qslcard_lang.php b/application/language/english/qslcard_lang.php deleted file mode 100644 index cad365f2af..0000000000 --- a/application/language/english/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/english/station_lang.php b/application/language/english/station_lang.php deleted file mode 100644 index 633d7797ce..0000000000 --- a/application/language/english/station_lang.php +++ /dev/null @@ -1,118 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; diff --git a/application/language/english/statistics_lang.php b/application/language/english/statistics_lang.php deleted file mode 100644 index 71fc869872..0000000000 --- a/application/language/english/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/finnish/account_lang.php b/application/language/finnish/account_lang.php deleted file mode 100644 index 9319933383..0000000000 --- a/application/language/finnish/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Oletusbandi'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/finnish/adif_lang.php b/application/language/finnish/adif_lang.php deleted file mode 100644 index 0e1c728159..0000000000 --- a/application/language/finnish/adif_lang.php +++ /dev/null @@ -1,138 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; diff --git a/application/language/finnish/admin_lang.php b/application/language/finnish/admin_lang.php deleted file mode 100644 index 8acdceb0e5..0000000000 --- a/application/language/finnish/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/finnish/contesting_lang.php b/application/language/finnish/contesting_lang.php deleted file mode 100644 index f7d9bbad71..0000000000 --- a/application/language/finnish/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/finnish/filter_lang.php b/application/language/finnish/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/finnish/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/finnish/general_words_lang.php b/application/language/finnish/general_words_lang.php deleted file mode 100644 index d6b9fda4bf..0000000000 --- a/application/language/finnish/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/finnish/gridsquares_lang.php b/application/language/finnish/gridsquares_lang.php deleted file mode 100644 index 986127aca9..0000000000 --- a/application/language/finnish/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Kielletty - - - -

Kansioon on pääsy kielletty.

- - - diff --git a/application/language/finnish/lotw_lang.php b/application/language/finnish/lotw_lang.php deleted file mode 100644 index 93c231fa4d..0000000000 --- a/application/language/finnish/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -LATAA TÄSTÄ, merkataksesi yhteydet kuitatuksi LoTW:ssa.'; -$lang['lotw_upload_type_must_be_adi'] = 'Lokitiedoston pitää olla ADI-tiedosto --> .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Lataa ja tuo LoTW:n data'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog käyttää profiiliisi tallennettuja LoTW:n käyttäjätietoja lokikoosteen lataamiseen. Lokikooste sisältää tähän päivään asti kaikki kuitatut yhteydet, alkaen valitsemastasi päivästä tai siitä päivästä kun olet viimeksi ne palvelusta ladannut .'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW Tuonti'; -$lang['lotw_btn_upload_certificate'] = 'Lataa ja tuo kutsumerkin varmenne'; -$lang['lotw_btn_delete'] = 'Poista'; -$lang['lotw_btn_manual_sync'] = 'Synkronoi yhteydet manuaalisesti'; -$lang['lotw_btn_upload_file'] = 'Lataa tiedosto'; -$lang['lotw_btn_import_matches'] = 'Tuo LoTW:n osumat'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Avaa TQSL & ja siirry kutsumerkin varmeenteen / Callsign Certificates välilehdelle'; -$lang['lotw_p12_export_step_two'] = 'Klikkaa hiiren oikealla näppäimella haluamaasi kutsua'; -$lang['lotw_p12_export_step_three'] = 'Klikkaa "Tallenna kutsumerkin varmenne / "Save Callsign Certificate File" äläkä aseta salasanaa'; -$lang['lotw_p12_export_step_four'] = 'Lataa ja tuo äsken tallentamasi tiedosto tänne.'; - -$lang['lotw_confirmed'] = 'Tämä QSO on kuitattu LoTW:ssa'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'Vähintään yksi LoTW:n kutsumerkin varmenteesi on vanhentumassa!'; -$lang['lotw_cert_expired'] = 'Vähintään yksi LoTW:n kutsumerkin varmenteesi on vanhentunut!!'; - -// Lotw User -$lang['lotw_user'] = 'Tämä asmea käyttää LoTW-palvelua. Viimeinen yhteyksien lähetys oli'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/finnish/menu_lang.php b/application/language/finnish/menu_lang.php deleted file mode 100644 index 4e7b31695d..0000000000 --- a/application/language/finnish/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/finnish/qslcard_lang.php b/application/language/finnish/qslcard_lang.php deleted file mode 100644 index f80c060a7a..0000000000 --- a/application/language/finnish/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/finnish/station_lang.php b/application/language/finnish/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/finnish/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/finnish/statistics_lang.php b/application/language/finnish/statistics_lang.php deleted file mode 100644 index 3ef3981e7f..0000000000 --- a/application/language/finnish/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/french/account_lang.php b/application/language/french/account_lang.php deleted file mode 100644 index 2eb5ac9e1f..0000000000 --- a/application/language/french/account_lang.php +++ /dev/null @@ -1,134 +0,0 @@ -https://radiosocial.de)"; - -$lang['account_default_band_settings'] = "Paramètres par défaut"; -$lang['account_gridmap_default_band'] = "Bandes"; -$lang['account_qsl_settings'] = "Méthode QSL"; - -$lang['account_winkeyer'] = "Winkeyer"; -$lang['account_winkeyer_hint'] = "REMARQUE : La prise en charge de Winkeyer dans Wavelog est très expérimentale, lisez d'abord le wiki avant de l'activer https://github.com/wavelog/wavelog/wiki/Winkey"; -$lang['account_winkeyer_enabled'] = "Activer Winkeyer"; - -$lang['account_map_params'] = "Paramètre de la carte"; -$lang['account_map_qso_by_default'] = "QSO (par défaut)"; -$lang['account_map_qso_confirm'] = "QSO (confirmé)"; -$lang['account_map_qso_confirm_same_qso'] = "(Si 'Non', sera affiché comme ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "Informations Générales"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Valeur par défaut"; -$lang['account_miscellaneous'] = "Divers"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/french/adif_lang.php b/application/language/french/adif_lang.php deleted file mode 100644 index 7dc5346405..0000000000 --- a/application/language/french/adif_lang.php +++ /dev/null @@ -1,141 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Les fichiers de Log doivent avoir l'extention : *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Sélectionner une Localisation"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "Fichier ADIF"; - -$lang['adif_hint_no_info_in_file'] = "(A cocher, si l'ADIF à importer ne contient pas ces informations)"; - -$lang['adif_import_dup'] = "Importer les QSO en double"; -$lang['adif_mark_imported_lotw'] = "Indiquer que les QSO importés ont été téléchargés sur LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Indiquer que les QSO importés ont été téléchargés dans le journal HRDLog.net"; -$lang['adif_mark_imported_qrz'] = "Indiquer que les QSO importés ont été téléchargés dans le journal QRZ.com"; -$lang['adif_mark_imported_clublog'] = "Indiquer que les QSO importés ont été téléchargés dans le journal Clublog"; - -$lang['adif_dxcc_from_adif'] = "Utiliser l'information du DXCC issue du fichier ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "(Si cochée, Wavelog tentera de déterminer automatiquement les informations DXCC.)"; - -$lang['adif_always_use_login_call_as_op'] = "Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de l'import"; - -$lang['adif_ignore_station_call'] = "Ignorer l'indicatif de la station lors de l'import"; -$lang['adif_ignore_station_call_hint'] = "(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, qu'ils correspondent ou non à l'emplacement de la station choisie)"; - -$lang['adif_upload'] = "Importer"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Emportez votre fichier journal de trafic partout !"; -$lang['adif_export_take_it_anywhere_hint'] = "L'export de fichier ADIF vous permet d'importer vos QSO dans des applications tierces comme LoTW, Awards ou simplement pour conserver une sauvegarde."; - - -$lang['adif_mark_exported_lotw'] = "Indiquer que les QSO exportés ont été téléchargés sur LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Exporter les QSO non téléchargés sur LoTW"; - -$lang['adif_export_qso'] = "Exporter"; - -$lang['adif_export_sat_only_qso'] = "Export des QSO par Satellite seulement"; -$lang['adif_export_sat_only_qso_all'] = "Exporter tous les QSO par satellite"; -$lang['adif_export_sat_only_qso_lotw'] = "Exporter tous les QSO par satellite et confirmés sur LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "Si aucune date n'est renseignées, tous les QSO seront marqués !"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Marquer les QSO comme étant \"téléchargé sur LoTW\""; - -$lang['adif_qso_marked'] = "QSO marqués"; -$lang['adif_yay_its_done'] = "Ok, réalisé !"; -$lang['adif_qso_lotw_marked_confirm'] = "Les QSO ont été marqués comme téléchargés sur LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Allez sur "; -$lang['adif_dcl_text_post'] = "et exportez votre journal de trafic avec les DOK confirmés.
Pour accélérer le processus, vous pouvez sélectionner uniquement les QSO 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é sur cette page afin de mettre à jour les QSO avec les informations DOK."; - -$lang['only_confirmed_qsos'] = "Importez uniquement les données DOK des QSO confirmés sur DCL"; -$lang['only_confirmed_qsos_hint'] = "(Décoché, si vous souhaitez également mettre à jour DOK, avec les données des QSO non confirmés dans DCL)"; - -$lang['overwrite_by_dcl'] = "Remplacer le DOC existant dans le journal par DCL (si différent)"; -$lang['overwrite_by_dcl_hint'] = "(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal DCL)"; - -$lang['ignore_ambiguous'] = "Ignorer les QSO qui ne correspondent pas"; -$lang['ignore_ambiguous_hint'] = "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Wavelog seront affichées)"; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF importé"; -$lang['adif_yay_its_imported'] = "Ok, c'est importé !"; -$lang['adif_import_confirm'] = "Le fichier ADIF a été importé."; - -$lang['adif_import_dupes_inserted'] = "Des doublons ont été insérés !"; -$lang['adif_import_dupes_skipped'] = "Les doublons ont été ignorés."; - -$lang['adif_import_errors'] = "Erreurs ADIF "; -$lang['adif_import_errors_hint'] = "Vous avez des erreurs ADIF, les QSO ont quand même été ajoutés mais ces champs n'ont pas été renseignés."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Résultats de la mise jour pour DCL DOK"; -$lang['dcl_info_updated'] = "Les informations DCL pour les DOK ont été mis à jours."; -$lang['dcl_qsos_updated'] = "QSO mis à jour"; -$lang['dcl_qsos_ignored'] = "QSO ignorés"; -$lang['dcl_qsos_unmatched'] = "QSO sans correspondance"; -$lang['dcl_no_qsos_updated'] = "Aucun QSO trouvé qui pourrait être mis à jour."; -$lang['dcl_dok_errors'] = "Erreurs DOK"; -$lang['dcl_dok_errors_details'] = "Différence de données DOK entre votre journal de travail et DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Statut"; -$lang['dcl_qsl_status_c'] = "confirmé par LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmé par le manager de l'Award"; -$lang['dcl_qsl_status_i'] = "confirmé par recoupement des données DCL"; -$lang['dcl_qsl_status_w'] = "confirmation en attente"; -$lang['dcl_qsl_status_x'] = "non confirmé"; -$lang['dcl_qsl_status_unknown'] = "inconnu"; -$lang['dcl_no_match'] = "pas de correspondance pour le QSO"; - - diff --git a/application/language/french/admin_lang.php b/application/language/french/admin_lang.php deleted file mode 100644 index bae3d94337..0000000000 --- a/application/language/french/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -supprimer le concours : "; -$lang['admin_contest_active_all_warning'] = "ATTENTION ! Etes vous certain de vouloir activer tous les concours ? "; -$lang['admin_contest_deactive_all_warning'] = "ATTENTION ! Etes vous certain de vouloir désactiver tous les concours ? "; - diff --git a/application/language/french/awards_lang.php b/application/language/french/awards_lang.php deleted file mode 100644 index 3738c7eac6..0000000000 --- a/application/language/french/awards_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/french/contesting_lang.php b/application/language/french/contesting_lang.php deleted file mode 100644 index 232de7d512..0000000000 --- a/application/language/french/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/french/filter_lang.php b/application/language/french/filter_lang.php deleted file mode 100644 index 17b62d1945..0000000000 --- a/application/language/french/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = "Vérifiée"; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = "Date, du"; -$lang['filter_general_to'] = "au"; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = "- AUCUN - (ex: /MM, /AM)"; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = "Propagation"; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = "Action pour lignes sélectionnées :"; -$lang['filter_actions_update_f_callbook'] = "Mise à jour depuis Callbook"; -$lang['filter_actions_queue_bureau'] = "En attente (Bureau)"; -$lang['filter_actions_queue_direct'] = "En attente (Direct)"; -$lang['filter_actions_queue_electronic'] = "En attente (Electronic)"; -$lang['filter_actions_sent_bureau'] = "Envoyée (Bureau)"; -$lang['filter_actions_sent_direct'] = "Envoyée (Direct)"; -$lang['filter_actions_sent_electronic'] = "Envoyée (Electronic)"; -$lang['filter_actions_not_sent'] = "Non envoyée"; -$lang['filter_actions_qsl_n_required'] = "QSL Non requis"; -$lang['filter_actions_recv_bureau'] = "Reçue (Bureau)"; -$lang['filter_actions_recv_direct'] = "Reçue (Direct)"; -$lang['filter_actions_recv_electronic'] = "Reçue (Numérique)"; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = "Exporter en ADIF"; -$lang['filter_actions_print_label'] = "Imprimer Etiquette"; -$lang['filter_actions_start_print_title'] = "Impression d'étiquettes"; -$lang['filter_actions_print_include_via'] = "Ajouter Via"; -$lang['filter_actions_print_include_grid'] = "Ajouter Locator"; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = "Commencer à imprimer à"; -$lang['filter_actions_print'] = "Imprimer"; -$lang['filter_actions_qsl_slideshow'] = "Diaporama QSL"; -$lang['filter_actions_delete'] = "Supprimer"; -$lang['filter_actions_delete_warning'] = "ATTENTION ! Etes vous certain de vouloir supprimer les QSO sélectionnés ?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = "Options pour la recherche avancée"; -$lang['filter_options_column'] = "Colonne"; -$lang['filter_options_show'] = "Afficher"; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = "Fermer"; diff --git a/application/language/french/general_words_lang.php b/application/language/french/general_words_lang.php deleted file mode 100644 index d5af2fd730..0000000000 --- a/application/language/french/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -ici pour le faire !"; -$lang['dashboard_locations_warning'] = "Vous n'avez pas de lieu de station. Cliquez ici pour en créer un !"; -$lang['dashboard_logbooks_warning'] = "Vous n'avez pas de journal de travail pour la station. Aller sur cette page pour en créer un !"; - -$lang['hams_at_no_activations_found'] = "Aucune activation à venir trouvée. Veuillez revenir plus tard."; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "fr-FR"; diff --git a/application/language/french/gridsquares_lang.php b/application/language/french/gridsquares_lang.php deleted file mode 100644 index 0ae8c3e87b..0000000000 --- a/application/language/french/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Interdit - - - -

l'accegraves au dossier est interdit.

- - - \ No newline at end of file diff --git a/application/language/french/lotw_lang.php b/application/language/french/lotw_lang.php deleted file mode 100644 index 3b14f3e6e5..0000000000 --- a/application/language/french/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report, pour marquer les QSO comme \"confirmés\" sur LoTW."; -$lang['lotw_upload_type_must_be_adi'] = "Les fichiers de log doivent être au format .adi"; - -$lang['lotw_pull_lotw_data_for_me'] = "Récuperer mes données LoTW"; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] = "Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.
Les téléchargements du journal Wavelog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent."; - -// Buttons -$lang['lotw_btn_lotw_import'] = "Import LoTW"; -$lang['lotw_btn_upload_certificate'] = "Envoyer un certificat"; -$lang['lotw_btn_delete'] = "Supprimer"; -$lang['lotw_btn_manual_sync'] = "Synchro manuelle"; -$lang['lotw_btn_upload_file'] = "Envoyer le fichier"; -$lang['lotw_btn_import_matches'] = "Import LoTW correspondants"; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = "Ouvrir TQSL et aller à l'onglet Certificats Indicatifs"; -$lang['lotw_p12_export_step_two'] = "Click droit sur l'indicatif désiré"; -$lang['lotw_p12_export_step_three'] = "Cliquer \"Enregistrer le fichier des certificats d'indicatif sans ajouter de mot de passe\""; -$lang['lotw_p12_export_step_four'] = "Envoyer le fichier ci-dessous"; - -$lang['lotw_confirmed'] = "QSO confirmé sur LoTW"; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = "Au moins un de vos certificats LoTW est sur le point d'expirer !"; -$lang['lotw_cert_expired'] = "Au moins un de vos certificats LoTW est expiré !"; - -// Lotw User -$lang['lotw_user'] = "Cette station utilise LoTW"; -$lang['lotw_last_upload'] = "Dernier téléchargement"; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/french/menu_lang.php b/application/language/french/menu_lang.php deleted file mode 100644 index 816145cf59..0000000000 --- a/application/language/french/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - C'est une manière fantastique de conserver vos données comme les réglages de boite d'accord, balises, notes sur les stations etc. et c'est bien mieux que des notes papiers que vous finirez par perdre."; -$lang['notes_create_note'] = "Création d'une nouvelle Note"; - -$lang['notes_input_title'] = "Titre"; -$lang['notes_input_category'] = "Catégorie"; -$lang['notes_input_notes_content'] = "Contenu de la note "; -$lang['notes_input_btn_save_note'] = "Enregistrer"; -$lang['notes_input_btn_edit_note'] = "Editer"; -$lang['notes_input_btn_delete_note'] = "Supprimer"; - -$lang['notes_selection_general'] = "Général"; -$lang['notes_selection_antennas'] = "Antennes"; -$lang['notes_selection_satellites'] = "Satellites"; diff --git a/application/language/french/options_lang.php b/application/language/french/options_lang.php deleted file mode 100644 index 17c6450dcf..0000000000 --- a/application/language/french/options_lang.php +++ /dev/null @@ -1,124 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/french/qslcard_lang.php b/application/language/french/qslcard_lang.php deleted file mode 100644 index 5a261f4fc3..0000000000 --- a/application/language/french/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/french/station_lang.php b/application/language/french/station_lang.php deleted file mode 100644 index a3f47e83b5..0000000000 --- a/application/language/french/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Cela vous permet d'avoir tous les emplacements au sein d'une même session ; visible dans le journal de trafic, jusqu'aux statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais qu'ils font partie du même cercle DXCC ou VUCC."; -$lang['station_logbooks_create'] = "Ajouter un nouveau"; -$lang['station_logbooks_status'] = "Statut"; -$lang['station_logbooks_link'] = "Lien"; -$lang['station_logbooks_public_search'] = "Recherche publique"; -$lang['station_logbooks_set_active'] = "Activer ce journal"; -$lang['station_logbooks_active_logbook'] = "Activé"; -$lang['station_logbooks_edit_logbook'] = "Editer ce journal"; // Full sentence will be generated 'Edit Station Logbook: [Logbook Name]' -$lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the following station logbook? You must re-link any locations linked here to another logbook.: "; -$lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; -$lang['station_logbooks_create_name'] = "Station Logbook Name"; -$lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; -$lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; -$lang['station_logbooks_public_slug'] = "Public Slug"; -$lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; -$lang['station_logbooks_public_slug_format1'] = "Later it looks like this:"; -$lang['station_logbooks_public_slug_format2'] = "[your slug]"; -$lang['station_logbooks_public_slug_input'] = "Type in Public Slug choice"; -$lang['station_logbooks_public_slug_visit'] = "Visit Public Page"; -$lang['station_logbooks_public_search_hint'] = "Enabling public search function offers a search input box on the public logbook page accessed via public slug. Search only covers this logbook."; -$lang['station_logbooks_public_search_enabled'] = "Public search enabled"; -$lang['station_logbooks_select_avail_loc'] = "Select Available Station Locations"; -$lang['station_logbooks_link_loc'] = "Link Location"; -$lang['station_logbooks_linked_loc'] = "Linked Locations"; -$lang['station_logbooks_no_linked_loc'] = "No Linked Locations"; -$lang['station_logbooks_unlink_station_location'] = "Unlink Station Location"; - - - -/* -___________________________________________________________________________________________ -Station Locations -___________________________________________________________________________________________ -*/ - -$lang['station_location'] = 'Station Location'; -$lang['station_location_plural'] = "Station Locations"; -$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.'; -$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.'; -$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.'; -$lang['station_location_create_header'] = 'Create Station Location'; -$lang['station_location_create'] = 'Create a Station Location'; -$lang['station_location_edit'] = 'Edit Station Location: '; -$lang['station_location_updated_suff'] = "mis à jour."; -$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Message (QSLMSG) par défaut"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour chaque QSO pour ce lieu station."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/french/statistics_lang.php b/application/language/french/statistics_lang.php deleted file mode 100644 index fd5866a593..0000000000 --- a/application/language/french/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Le dernier contact réalisé est : "; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = ", avec le locator : "; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = ", pour une distance de : "; -$lang['statistics_distances_number_of_qsos'] = "Nombre de QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Indicatif(s) contacté(s) (liste de 5 max)"; -$lang['statistics_distances_qsos_with'] = "QSOs avec"; -$lang['statistics_distances_and_band'] = "et bandes"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Chronologie"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/german/account_lang.php b/application/language/german/account_lang.php deleted file mode 100644 index 17c7d3ef82..0000000000 --- a/application/language/german/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Einstellung für Standardband und -bestätigungsmethode'; -$lang['account_gridmap_default_band'] = 'Standardband'; -$lang['account_qsl_settings'] = 'Standard QSL-Methoden'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Die Winkeyer Unterstützung in Wavelog ist sehr experimentell. Lese zuerst den Wikieintrag auf https://github.com/wavelog/wavelog/wiki/Winkey bevor du ihn einschaltest."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Eingeschaltet"; - -$lang['account_map_params'] = "Karten Einstellungen"; -$lang['account_map_qso_by_default'] = "QSO (standardmässig)"; -$lang['account_map_qso_confirm'] = "QSO (bestätigte)"; -$lang['account_map_qso_confirm_same_qso'] = "(Falls 'Nein', wird '".$lang['account_map_qso_by_default']."' verwendet)"; - -$lang['account_general_information'] = "Generelle Informationen"; -$lang['account_qso_logging_options'] = "QSO-Logging Optionen"; -$lang['account_third_party_services'] = "Externe Dienste"; -$lang['account_default_values'] = "Standardwerte / Favoriten"; -$lang['account_miscellaneous'] = "Verschiedenes"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "Siehe dein Profil unter https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Zeige nur Überflüge an, die gearbeitet werden können"; -$lang['account_hamsat_workable_only_hint'] = "Wenn aktiviert, werden nur sichtbare Überflüge basierend auf dem Locator des hams.at Profils angezeigt. Dazu muss der Private Feed Key konfiguriert sein."; - -$lang['account_references_show'] = "Zeige Referenzen auf QSO-Reiter"; -$lang['account_show_references_on_1st_tab'] = "Die aktivierten Elemente werden auf dem QSO-Reiter statt des allgemeinen Reiters angezeigt."; diff --git a/application/language/german/adif_lang.php b/application/language/german/adif_lang.php deleted file mode 100644 index b976f019dc..0000000000 --- a/application/language/german/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Die Log Datei muss im *.adi Format vorliegen."; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Wähle Stationsstandort"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF Datei"; - -$lang['adif_hint_no_info_in_file'] = "Wähle dies aus, wenn die hochgeladene ADIF-Datei diese Information nicht enthält."; - -$lang['adif_import_dup'] = "Doppelte QSO hochladen"; -$lang['adif_mark_imported_lotw'] = "Markiere hochgeladene QSO als bereits zu LoTW hochgeladen"; -$lang['adif_mark_imported_hrdlog'] = "Markiere hochgeladene QSO als bereits zu HRDlog.net hochgeladen"; -$lang['adif_mark_imported_qrz'] = "Markiere hochgeladene QSO als bereits zu QRZ.com hochgeladen"; -$lang['adif_mark_imported_clublog'] = "Markiere hochgeladene QSO als bereits zu Clublog hochgeladen"; - -$lang['adif_dxcc_from_adif'] = "Benutze die DXCC Informationen aus der ADIF Datei"; -$lang['adif_dxcc_from_adif_hint'] = "Wenn diese Option nicht ausgewählt ist, wird Wavelog versuchen die DXCC Informationen automatisch zu ermitteln."; - -$lang['adif_always_use_login_call_as_op'] = "Nutze während des Import immer das eingeloggte Rufzeichen als Operator-Name"; - -$lang['adif_ignore_station_call'] = "Ignoriere das Stations Rufzeichen beim Import"; -$lang['adif_ignore_station_call_hint'] = "Wenn diese Option ausgewählt ist, wirdWavelog versuchen alle QSO hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort zusammenpassen."; - -$lang['adif_upload'] = "Hochladen"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Exportiere deine Logs überall hin!"; -$lang['adif_export_take_it_anywhere_hint'] = "Deine ADIF Logbücher zu exportieren bietet dir die Möglichkeite diese zum Beispiel in Drittanbieter Software (z.B. LoTW) einzubinden oder sie einfach nur als Backup zu speichern."; - - -$lang['adif_mark_exported_lotw'] = "Markiere die exportierten QSO als 'zu LoTW hochgeladen'"; -$lang['adif_mark_exported_no_lotw'] = "Markiere die exportierten QSO als 'zu LoTW nicht hochgeladen'"; - -$lang['adif_export_qso'] = "Exportiere QSO's"; - -$lang['adif_export_sat_only_qso'] = "Exportiere nur Satelliten QSO"; -$lang['adif_export_sat_only_qso_all'] = "Exportiere ALLE Satelliten QSO"; -$lang['adif_export_sat_only_qso_lotw'] = "Exportiere nur die Satelliten QSO, welche auf LoTW bestätigt sind."; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "Wenn kein Datum gewählt ist, werden alle QSO markiert!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Markiere die QSO als 'zu LoTW hochgeladen'"; - -$lang['adif_qso_marked'] = "QSO's markiert"; -$lang['adif_yay_its_done'] = "Yay, geschafft!"; -$lang['adif_qso_lotw_marked_confirm'] = "Die QSO wurden als 'zu LoTW hochgeladen' markiert"; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Gehe zum"; -$lang['adif_dcl_text_post'] = "und exportiere dein Logbuch mit bestätigten DOKs. Um den Prozess zu beschleunigen, kannst du QSOs ausschließlich mit DL-Stationen auswählen (indem du \"DL\" in die Präfixliste einträgst). Die heruntergeladene ADIF-Datei kannst du hier hochladen, um dein Logbuch mit DOK Informationen zu aktualisieren."; - -$lang['only_confirmed_qsos'] = "Importiere nur DOK Informationen von QSOs, die auf DCL bestätigt sind."; -$lang['only_confirmed_qsos_hint'] = "Deaktiviere diese Option, um auch DOK Infos von QSOS zu importieren, die auf DCL nicht bestätig sind."; - -$lang['overwrite_by_dcl'] = "Überschreibe existierende DOK im Logbuch durch DCL (wenn unterschiedlich)."; -$lang['overwrite_by_dcl_hint'] = "Wenn aktiviert, wird Wavelog den existierenden DOK mit dem DOK aus dem DCL überschreiben."; - -$lang['ignore_ambiguous'] = "Ignoriere QSOs, die nicht eindeutig zugeordnet werden können."; -$lang['ignore_ambiguous_hint'] = "Wenn deaktiviert, werden auch Infos zu QSOs angezeigt, die im Logbuch nicht gefunden werden konnten."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Importiert"; -$lang['adif_yay_its_imported'] = "Yay, Datei importiert!"; -$lang['adif_import_confirm'] = "Die ADIF Datei wurde importiert."; - -$lang['adif_import_dupes_inserted'] = " Duplikate wurden ebenfalls importiert!"; -$lang['adif_import_dupes_skipped'] = " Duplikate wurden übersprungen."; - -$lang['adif_import_errors'] = "ADIF Fehler"; -$lang['adif_import_errors_hint'] = "Es gibt ADIF Fehler. Die QSO wurden hinzugefügt, jedoch wurden die fehlerhaften Felder nicht ausgefüllt."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Ergebnisse des DCL DOK Updates"; -$lang['dcl_info_updated'] = "QSOs wurden mit der DOK Information aus dem DCL aktualisiert."; -$lang['dcl_qsos_updated'] = "Aktualisierte QSOs"; -$lang['dcl_qsos_ignored'] = "Ignorierte QSOs"; -$lang['dcl_qsos_unmatched'] = "Nicht gefundene QSOs"; -$lang['dcl_no_qsos_updated'] = "Keine QSOs gefunden, die aktualisiert werden konnten."; -$lang['dcl_dok_errors'] = "DOK Fehler"; -$lang['dcl_dok_errors_details'] = "Die DOK Informationen im Logbuch weichen von denen im DCL ab"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "bestätigt durch LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "bestätigt durch Diplommananger"; -$lang['dcl_qsl_status_i'] = "bestätigt durch Cross-Check von DCL-Daten"; -$lang['dcl_qsl_status_w'] = "Bestätigung ausstehend"; -$lang['dcl_qsl_status_x'] = "nicht bestätigt"; -$lang['dcl_qsl_status_unknown'] = "unbekannt"; -$lang['dcl_no_match'] = "QSO konnte nicht gefunden werden"; diff --git a/application/language/german/admin_lang.php b/application/language/german/admin_lang.php deleted file mode 100644 index a659eb5c11..0000000000 --- a/application/language/german/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Diplom"; -$lang['awards_dok_description_ln2'] = "Deutschland erstreckt sich über 630 km von Ost nach West und fast 900 km von Nord nach Süd. Etwa 70.000 der 82 Millionen Einwohner Deutschlands sind Funkamateure, und mehr als 40.000 von ihnen sind Mitglieder des DARC. DOK ('Deutscher Ortsverband Kenner') ist ein System, das einzelnen Ortsverbänden eine Kennung gibt."; -$lang['awards_dok_description_ln3'] = "Der DOK besteht aus einem Buchstaben für den Distrik und einer zweistelligen Zahl für Ortsverband, wie P03 Friedrichshafen (Stadt der 'Hamradio-Messe') oder F41 Baunatal (Sitz der DARC-Zentrale). Hinweis: Eine Null in einem DOK ist ein häufiger Fehler, der oft als der Buchstabe O erfasst wird."; -$lang['awards_dok_description_ln4'] = "Diese Informationen findest du auf der DARC-Website. Informationen zu den DOK-Awards und deren Regeln findest du hier."; - - -/* -___________________________________________________________________________________________ -DXCC -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Diplom"; -$lang['awards_dxcc_description_ln2'] = "DXCC steht für 'DX Century Club', eine Auszeichnung, die auf gearbeiteten Ländern basiert. Die DXCC-Liste basiert auf einem Artikel, der 1935 von Clinton B. DeSoto, W1CBD, mit dem Titel 'How to Count Countries Worked, A New DX Scoring System' erstellt wurde."; -$lang['awards_dxcc_description_ln3'] = "Du findest alle Informationen zum DXCC Diplom auf der ARRL-Website."; -$lang['awards_dxcc_description_ln4'] = "Wichtiger Hinweis: Im Laufe der Zeit haben sich die Kriterien für die DXCC-Liste geändert. Die Liste bleibt unverändert, bis eine Einheit die Kriterien nicht mehr erfüllt, woraufhin sie in die Gelöschte Liste verschoben wird. Du findest gelöschte DXCC-Einheiten auch in den Listen in Wavelog. Beachte, dass diese DXCC-Einheiten veraltet und nicht mehr gültig sind."; - - -/* -___________________________________________________________________________________________ -FFMA -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "Der Fred Fish Memorial Award wurde zu Ehren von Fred Fish, W5FF (SK), geschaffen, dem ersten Funkamateur, der alle 488 Maidenhead-Planquadrate in den 48 zusammenhängenden Bundesstaaten der USA auf 6 Metern gearbeitet und bestätigt hat."; -$lang['awards_ffma_description_ln3'] = "Der Preis wird an jeden Funkamateur verliehen, der die Leistung von W5FF nachahmen kann."; -$lang['awards_ffma_description_ln4'] = "Für weitere Informationen kannst du diesen Link besuchen: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "Die USKA (Union Schweizerischer Kurzwellen Amateure) stiftet zwei Auszeichnungen, den HELVETIA 26 (H26) Award und den SWITZERLAND Award, um Aktivitäten auf den Bändern zu fördern, indem sie Kontakte über möglichst viele Schweizer Kantone auf verschiedenen Bändern anregen."; -$lang['awards_helvetia_description_ln3'] = "Diese Auszeichnungen gibt es in zwei Versionen: eine für HF-Bänder und eine 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."; -$lang['awards_helvetia_description_ln4'] = "Für weitere Informationen besuche bitte diesen Link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Diplome"; -$lang['awards_iota_description_ln2'] = "IOTA ist ein aufregendes und innovatives Aktivitätsprogramm, das das Interesse von Tausenden von Funkamateuren weltweit geweckt hat. Es wurde 1964 gegründet und fördert Funkkontakte mit Stationen, die sich auf Inseln auf der ganzen Welt befinden, um die Erfahrung aller zu verbessern, die auf den Amateurfunkbändern aktiv sind. Um dies zu erreichen, nutzt es die weit verbreitete Mystik um Inseln."; -$lang['awards_iota_description_ln3'] = "Es wird von Islands On The Air (IOTA) Ltd (auch als IOTA Management bezeichnet) in Zusammenarbeit mit der Radio Society of Great Britain (RSGB) verwaltet. IOTA Management hat die Inseln der Welt in etwa 1200 'IOTA-Gruppen' unterteilt, von denen jede eine unterschiedliche Anzahl von 'counters' (z.dt. 'Zählern') hat, die qualifizierende Inseln sind. Diese Listen werden im IOTA-Verzeichnis und auf der IOTA-Website veröffentlicht. Das Ziel für den IOTA Island Chaser besteht darin, Funkkontakt mit mindestens einem Zähler in so vielen dieser Gruppen wie möglich aufzunehmen. Das Programm hat klare Regeln und fördert den freundlichen Wettbewerb unter den Verfolgern, indem es die Leistungen der Teilnehmer in einer Ehrenrolle und jährlichen Listen veröffentlicht und sie mit Zertifikaten und renommierten Diplomen auszeichnet."; -$lang['awards_iota_description_ln4'] = "Du findest diese Informationen auch auf der IOTA WORLD-Website."; - - -/* -___________________________________________________________________________________________ -POTA -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Diplome"; -$lang['awards_pota_description_ln2'] = "Parks on the Air® (POTA) startete Anfang 2017, als das 'National Parks on the Air' - Special Event des ARRL endete. Eine Gruppe von Freiwilligen wollte den Spaß über das einjährige Ereignis hinaus fortsetzen, und so wurde POTA geboren."; -$lang['awards_pota_description_ln3'] = "POTA funktioniert ähnlich wie SOTA, mit Aktivatoren und Jägern. Für die Diplome gibt es verschiedene Kategorien, die auf der Anzahl der Parks, geografischen Gebieten und mehr basieren."; -$lang['awards_pota_description_ln4'] = "Für weitere Informationen zu den verfügbaren Diplome und Kategorien besuche bitte die Parks on the Air®-Website."; - - -/* -___________________________________________________________________________________________ -SIG -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG-Information"; -$lang['awards_sig_description_ln2'] = "Die SIG- oder Signature-Kategorie ermöglicht die Verwendung beliebiger 'Diplom-Identifikationen' für Diplome, die nicht in Wavelog implementiert sind."; -$lang['awards_sig_description_ln3'] = "Der Grund dafür ist, dass das gängige ADIF-Format nur wenige dedizierte Felder für bestimmte Diplome bietet. SIG ermöglicht es dennoch, alle anderen Arten von Signaturmarkierungen zu verwenden und auszuwerten."; -$lang['awards_sig_description_ln4'] = "Im QSO-Verarbeitung findest du zwei Felder: 'SIG' enthält die tatsächliche Markierung, die auch in der Auswertung der Auszeichnung sichtbar ist, und 'SIG INFO', das eine Beschreibung der Signatur enthält. Beide Felder sind frei anpassbar."; - - -/* -___________________________________________________________________________________________ -SOTA -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) ist ein Auszeichnungsschema für Funkamateure, das den portablen Betrieb in bergigen Gebieten fördert."; -$lang['awards_sota_description_ln3'] = "Es ist in fast hundert Ländern weltweit voll verfügbar. Jedes Land hat seine eigene Vereinigung, die die anerkannten SOTA-Gipfel innerhalb dieser Vereinigung definiert. Jeder Gipfel verdient den Aktivierenden und Verfolgenden eine Punktzahl, die sich auf die Höhe des Gipfels bezieht. Zertifikate sind für verschiedene Punktzahlen erhältlich und führen zu den renommierten Trophäen 'Mountain Goat' und 'Shack Sloth'. Eine Ehrenrolle für Aktivierende und Verfolgende wird in der SOTA-Online-Datenbank geführt."; -$lang['awards_sota_description_ln4'] = "Für weitere Informationen besuche bitte: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Diplom"; -$lang['awards_counties_description_ln2'] = "Das US Counties Diplom (USA-CA) der Vereinigten Staaten von Amerika, gesponsert von CQ Magazine, wird für bestätigte Funkkontakte mit einer festgelegten Anzahl von US-Counties unter Regeln und Bedingungen verliehen, die du hier findest."; -$lang['awards_counties_description_ln3'] = "USA-CA steht allen lizenzierten Funkamateuren weltweit zur Verfügung und wird an Einzelpersonen für alle gemachten County-Kontakte verliehen, unabhängig von den verwendeten Rufzeichen, Stationsorten oder Daten."; -$lang['awards_counties_description_ln4'] = "Spezielle USA-CA-Diplome stehen auch für SWLs auf der Grundlage des Gehörten zur Verfügung."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Diplom"; -$lang['awards_us_gridmaster_description_ln2'] = "Der GridMaster Award ist die renommierteste AMSAT-Auszeichnung, die erstmals 2014 von der Star Comm Group eingeführt wurde. Sie steht allen Funkamateuren weltweit zur Verfügung, die es schaffen, alle 488 Planquadrate in den USA via Satellit zu arbeiten und für jeden Kontakt QSL-Bestätigungen vorlegen können."; -$lang['awards_us_gridmaster_description_ln3'] = "Offizielle Informationen von der Website: Es muss eine Zweiwegekommunikation über Amateurfunksatellit mit jedem Gitter hergestellt werden. Es ist keine Mindest-Signalreport erforderlich. Die Kontakte müssen vom selben Standort aus erfolgen oder von Standorten aus, die nicht mehr als 200 Kilometer voneinander entfernt sind. Die Aussage des Antragstellers in der Auszeichnungsanwendung dient als Bestätigung der Einhaltung der Abstandsregel. Personen können mehrere GridMaster-Diplome beantragen und erhalten, wenn sie von einem anderen Standort aus erreicht werden, der sich in einem anderen 200-Kilometer-Kreis befindet."; -$lang['awards_us_gridmaster_description_ln4'] = "Diese Karte zeigt nur QSOs, die über SAT gearbeitet wurden."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Diplom"; -$lang['awards_ja_gridmaster_description_ln2'] = "Genau wie das US Gridmaster Diplom basiert dieses Diplom auf dem Arbeiten alle Planquadrate in Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Genaue Information und Regeln zu diesem Diplom sind noch offen, bzw. werden noch hinzugefügt."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "Der VHF/UHF Century Club Award wird für eine Mindestanzahl von gearbeiteten und bestätigten Gitterquadraten auf einem gewünschten Band verliehen."; -$lang['awards_vucc_description_ln3'] = "Offizielle Informationen und Regeln findest du in diesem Dokument: Klick hier.."; -$lang['awards_vucc_description_ln4'] = "Nur VHF/UHF-Bänder sind relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Diplom"; -$lang['awards_was_description_ln2'] = "Die beliebteste Auszeichnung des ARRL ist das Worked All States Diplom. Tausende von Diplomen wurden an Funkamateure auf der ganzen Welt verliehen. Im 101. Jahr des ARRL haben sie die Diplome und das Programm in der Hoffnung überarbeitet und verbessert, das Diplomprogramm zu optimieren und zu vereinfachen."; -$lang['awards_was_description_ln3'] = "Das WAS (Worked All States) Diplom steht allen Funkamateuren weltweit zur Verfügung, die den Nachweis mit schriftlicher Bestätigung von Kontakten mit jedem der 50 Bundesstaaten der Vereinigten Staaten von Amerika erbringen. Funkamateure in den USA und ihren angehängten Staaten müssen Mitglieder des ARRL sein, um sich für einen WAS bewerben zu können. Bewerber aus dem Ausland sind von dieser Anforderung befreit."; -$lang['awards_was_description_ln4'] = "Alle Informationen und Regeln für den ARRL WAS Award findest du hier."; - - -/* -___________________________________________________________________________________________ -WWFF -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "WWFF, World Wide Flora and Fauna in Amateur Radio, ermutigt lizenzierte Funkamateure, ihre Funkstationen zu verlassen und in geschützten Flora- und Fauna-Gebieten (PFF) weltweit portabel zu funken."; -$lang['awards_wwff_description_ln3'] = "Bereits mehr als 26.000 geschützte Flora- und Fauna-Gebiete (PFF) weltweit sind in dem WWFF-Verzeichnis registriert. Jäger und Aktivatoren können bunte Diplome sowohl weltweit als auch national beantragen."; -$lang['awards_wwff_description_ln4'] = "Für weitere Informationen besuche bitte: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Verwende alle 4 Textzeilen -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, 'Worked All Japan prefectures in Amateur Radio', ermutigt lizenzierte Amateurfunkbetreiber dazu, mit allen Präfekturen in Japan zu arbeiten."; -$lang['awards_waja_description_ln3'] = "Du kannst diesen Award beanspruchen, indem du (gehört hast) und eine QSL-Karte von einer Amateurstation in jedem der 47 Präfekturen Japans erhalten hast. Eine Liste der QSL-Karten sollte nach der WAJA (HAJA) Referenznummer geordnet sein, jedoch können die Namen der Präfekturen ausgelassen werden."; -$lang['awards_waja_description_ln4'] = "Für weitere Informationen besuche bitte: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "Kann beantragt werden, wenn Amateurfunkstationen aus mindestens 100 unterschiedlichen Städten Japans gearbeitet bzw. gehört wurden und eine QSL-Karte vorliegt."; -$lang['awards_jcc_description_ln3'] = "JCC-200, 300, 400, 500, 600, 700 und 800 werden als separate Auszeichnungen vergeben. Eine Liste der QSL-Karten sollte in der Reihenfolge der JCC Referenznummern angelegt werden. Die Namen der Städte können ausgelassen werden. Weitere Sticker werden für jeweils 50 weitere Kontakte ausgestellt, z.B 150, 250, 350, 450, 550, 650, 750 Städte."; -$lang['awards_jcc_description_ln4'] = "Für weitere Informationen besuche bitte: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/german/contesting_lang.php b/application/language/german/contesting_lang.php deleted file mode 100644 index d821d5960e..0000000000 --- a/application/language/german/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/german/filter_lang.php b/application/language/german/filter_lang.php deleted file mode 100644 index 022265ba28..0000000000 --- a/application/language/german/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verifiziert'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'Von'; -$lang['filter_general_to'] = 'bis'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- Kein - (für z.B. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Ausbreitungsart'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'Bei Markierten: '; -$lang['filter_actions_update_f_callbook'] = 'Aktualisieren aus dem Callbook'; -$lang['filter_actions_queue_bureau'] = 'Angefordert (Büro)'; -$lang['filter_actions_queue_direct'] = 'Angefordert (Direkt)'; -$lang['filter_actions_queue_electronic'] = 'Angefordert (Elektronisch)'; -$lang['filter_actions_sent_bureau'] = 'Gesendet (Büro)'; -$lang['filter_actions_sent_direct'] = 'Gesendet (Direkt)'; -$lang['filter_actions_sent_electronic'] = 'Gesendet (Elektronisch)'; -$lang['filter_actions_not_sent'] = 'Nicht gesendet'; -$lang['filter_actions_qsl_n_required'] = 'QSL nicht erforderlich'; -$lang['filter_actions_recv_bureau'] = 'Erhalten (Büro)'; -$lang['filter_actions_recv_direct'] = 'Erhalten (Direkt)'; -$lang['filter_actions_recv_electronic'] = 'Erhalten (Elektronisch)'; -$lang['filter_actions_not_rcvd'] = "Nicht erhalten"; -$lang['filter_actions_create_adif'] = 'Erstelle ADIF'; -$lang['filter_actions_print_label'] = 'Label drucken'; -$lang['filter_actions_start_print_title'] = 'Label Drucken'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Mit Planquadrat?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Druck starten bei?'; -$lang['filter_actions_print'] = 'Drucken'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Präsentation'; -$lang['filter_actions_delete'] = 'Löschen'; -$lang['filter_actions_delete_warning'] = "Warnung! Bist du sicher, dass du die markierten QSO löschen willst?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Optionen für das erweiterte Logbuch'; -$lang['filter_options_column'] = 'Spalte'; -$lang['filter_options_show'] = 'Anzeigen'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Schliessen'; diff --git a/application/language/german/general_words_lang.php b/application/language/german/general_words_lang.php deleted file mode 100644 index 9bf1cd6a74..0000000000 --- a/application/language/german/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -hier, um das zu tun!'; -$lang['dashboard_locations_warning'] = 'Es wurde kein Stationsstandort angelegt! Klicke hier, um das zu tun!'; -$lang['dashboard_logbooks_warning'] = 'Es wurde kein Stationslogbuch angelegt. Klicke hier, um das zu tun!'; - -$lang['hams_at_no_activations_found'] = 'Keine bevorstehenden Aktivierungen gefunden. Bitte später noch einmal vorbeischauen.'; - -$lang['gen_add_to_contest'] = "QSOs zu Contest hinzufügen"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "de-DE"; diff --git a/application/language/german/gridsquares_lang.php b/application/language/german/gridsquares_lang.php deleted file mode 100644 index 9a0d4aa36b..0000000000 --- a/application/language/german/gridsquares_lang.php +++ /dev/null @@ -1,38 +0,0 @@ - - - 403 Forbidden - - - -

Zugriff verboten.

- - - \ No newline at end of file diff --git a/application/language/german/lotw_lang.php b/application/language/german/lotw_lang.php deleted file mode 100644 index 666ef94618..0000000000 --- a/application/language/german/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report Bereich, um die QSOs als via LoTW bestätigt zu markieren.'; -$lang['lotw_upload_type_must_be_adi'] = 'Logdateien müssen den Dateityp .adi haben'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Lade LoTW-Daten für mich'; -$lang['lotw_select_callsign'] = 'Rufzeichen, für das LoTW Bestätigungen geladen werden sollen'; - -$lang['lotw_report_download_overview_helptext'] = 'Wavelog nutzt Benutzername und Passwort, welche in Deinem Benutzerprofil gespeichert sind, um einen Report vom LoTW zu laden. Der Report, den Wavelog lädt, enthält alle Bestätigungen seit dem gewählten Datum oder seit der letzen LoTW-Bestätigung (wird aus Deinem Log extrahiert) bis jetzt.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW-Import'; -$lang['lotw_btn_upload_certificate'] = 'Zertifikats-Upload'; -$lang['lotw_btn_delete'] = 'Lösche'; -$lang['lotw_btn_manual_sync'] = 'Manuelle Synchronisation'; -$lang['lotw_btn_upload_file'] = 'Lade Datei hoch'; -$lang['lotw_btn_import_matches'] = 'Importiere LoTW-Übereinstimmungen'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Öffne TQSL & und gehe zum "Rufzeichen-Zertifikate"-Reiter'; -$lang['lotw_p12_export_step_two'] = 'Klicke links auf das gewünschte Rufzeichen'; -$lang['lotw_p12_export_step_three'] = 'Klicke links auf "Speichern Sie das Rufzeichen-Zertifikat für " und füge kein Passwort hinzu'; -$lang['lotw_p12_export_step_four'] = 'Lade untenstehende Datei hoch.'; - -$lang['lotw_confirmed'] = 'Dieses QSO wurde via LoTW bestätigt am'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'Mindestens eines deiner LoTW-Zertifikate läuft bald ab!'; -$lang['lotw_cert_expired'] = 'Mindestens eines deiner LoTW-Zertifikate ist abgelaufen!'; - -// Lotw User -$lang['lotw_user'] = 'Diese Station nutzt LoTW.'; -$lang['lotw_last_upload'] = 'Letzter Upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Das Upload-Verzeichnis ist nicht beschreibbar. Bitte kontaktiere den Administrator.'; diff --git a/application/language/german/menu_lang.php b/application/language/german/menu_lang.php deleted file mode 100644 index b5de09e4c3..0000000000 --- a/application/language/german/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', für SSL -> '465'"; -$lang['options_smtp_username_hint'] = "Der Benutzername um sich am Mailserver anzumelden. Normalerweise ist dies die E-Mail Adresse."; -$lang['options_smtp_password_hint'] = "Das Passwort um sich am Mailserver anzumelden."; -$lang['options_send_testmail'] = "Sende eine Test-Mail"; -$lang['options_send_testmail_hint'] = "Die E-Mail wird an die Adresse versandt, welche in den Account-Einstellungen hinterlegt ist."; -$lang['options_send_testmail_failed'] = "Die Testmail wurde nicht versandt. Da ist was schief gelaufen."; -$lang['options_send_testmail_success'] = "Testmail gesendet. E-Mail Einstellungen scheinen korrekt zu sein."; - -$lang['options_oqrs'] = 'OQRS Optionen'; -$lang['options_global_text'] = 'Globaler Text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'Dies ist ein optionaler Text, der auf oben auf der OQRS Seite angezeigt werden kann.'; -$lang['options_grouped_search'] = 'Gruppierte Suche'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'Wenn aktiviert, werden alle Stationsstandorte auf einmal durchsucht.'; -$lang['options_grouped_search_show_station_name'] = "Zeige den Name des Stationsstandorts in der gruppierten Suche"; -$lang['options_grouped_search_show_station_name_hint'] = "Wenn die gruppierte Suche eingeschaltet ist, kannst du hier entscheiden, ob der Name des Stationsstandortes in der Ergebnistabelle gezeigt werden soll oder nicht."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS Einstellungen wurden gespeichert.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider des DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'Der Provider des DXCluster-Caches. Du kannst Deinen eigenen Cache mit DXClusterAPI aufsetzen, oder einen Öffentlichen nutzen'; -$lang['options_dxcluster_hint'] = 'URL des DXCluster-Caches. z.B. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL geändert zu '; -$lang['options_dxcluster_maxage'] = 'Maximales Alter bis zu dem Spots berücksichtigt werden'; -$lang['options_dxcluster_maxage_hint'] = 'Das Alter von Spots in Minuten, welche im Bandplan/Lookup berücksichtigt werden'; -$lang['options_dxcluster_decont'] = 'Nur Spots berücksichtigen, die in folgendem Kontinent erfasst wurden'; -$lang['options_dxcluster_maxage_changed_to']='Maximales Spot-Alter geändert auf '; -$lang['options_dxcluster_decont_changed_to']='Spotterkontinent geändert auf '; -$lang['options_dxcluster_decont_hint']='Nur Spots von Spottern dieses Kontinents werden angezeigt'; - -$lang['options_version_dialog'] = "Versionsinfo"; -$lang['options_version_dialog_close'] = "Schliessen"; -$lang['options_version_dialog_dismiss'] = "Nicht mehr anzeigen"; -$lang['options_version_dialog_settings'] = "Versionsinfo Einstellungen"; -$lang['options_version_dialog_header'] = "Überschrift der Versionsinfo"; -$lang['options_version_dialog_header_hint'] = "Du kannst die Überschrift des Versionsinfo-Fensters verändern."; -$lang['options_version_dialog_header_changed_to'] = "Überschrift der Versionsinfo geändert zu"; -$lang['options_version_dialog_mode'] = "Versionsinfo-Modus"; -$lang['options_version_dialog_mode_release_notes'] = "Nur Versionshinweise"; -$lang['options_version_dialog_mode_custom_text'] = "Nur benutzerdefinierter Text"; -$lang['options_version_dialog_mode_both'] = "Versionshinweise und benutzerdefinierter Text"; -$lang['options_version_dialog_mode_disabled'] = "Deaktiviert"; -$lang['options_version_dialog_mode_hint'] = "Die Versionsinfo wird jedem Benutzer angezeigt. Der Benutzer hat die Möglichkeit, den Dialog zu schließen, nachdem er ihn gelesen hat. Wähle aus, ob nur Versionshinweise (von GitHub abgerufen), nur benutzerdefinierter Text oder beides angezeigt werden soll."; -$lang['options_version_dialog_custom_text'] = "Versionsinfo - Benutzerdefinierter Text"; -$lang['options_version_dialog_custom_text_hint'] = "Dies ist der benutzerdefinierte Text, der im Versionsinfo-Fenster angezeigt wird."; -$lang['options_version_dialog_mode_changed_to'] = "Versionsinfo-Modus geändert zu"; -$lang['options_version_dialog_custom_text_saved'] = "Benutzerdefinierter Text der Versionsinfo gespeichert!"; -$lang['options_version_dialog_success_show_all'] = "Versionsinfo wird wieder allen Benutzern angezeigt"; -$lang['options_version_dialog_success_hide_all'] = "Versionsinfo wird keinem Benutzer angezeigt"; -$lang['options_version_dialog_show_hide'] = "Versionsinfo-Dialog für alle Benutzer ein-/ausblenden"; -$lang['options_version_dialog_show_all'] = "Allen Benutzern anzeigen"; -$lang['options_version_dialog_hide_all'] = "Allen Benutzern ausblenden"; -$lang['options_version_dialog_show_all_hint'] = "Dies zeigt den Versionsdialog automatisch allen Benutzern bei der nächsten Seiten-Aktualisierung an."; -$lang['options_version_dialog_hide_all_hint'] = "Dies deaktiviert das automatische Einblenden des Versionsdialogs für alle Benutzer."; - -$lang['options_save'] = 'Speichern'; - -// Bands - -$lang['options_bands'] = "Bänder"; -$lang['options_bands_text_ln1'] = "Mit dieser Bänder-Liste kannst du steuern, welche Bänder beim Erstellen eines neuen QSO angezeigt werden."; -$lang['options_bands_text_ln2'] = "Aktive Bänder werden im QSO Band Auswahlfeld angezeigt, während inaktive Bänder ausgeblendet werden und nicht ausgewählt werden können."; -$lang['options_bands_create'] = "Erstelle ein neues Band"; -$lang['options_bands_edit'] = "Bearbeite Band"; -$lang['options_bands_activate_all'] = "Aktiviere Alle"; -$lang['options_bands_activateall_warning'] = "Warnung! Bist du sicher, dass du alle Bänder aktivieren willst?"; -$lang['options_bands_deactivate_all'] = "Deaktiviere Alle"; -$lang['options_bands_deactivateall_warning'] = "Warnung! Bist du sicher, dass du alle Bänder deaktivieren willst?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequenz für die SSB QRG auf dem Band (Muss in Hz angegeben werden)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequenz für die DATA QRG auf dem Band (Muss in Hz angegeben werden"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequenz für die CW QRG auf dem Band (Muss in Hz angegeben werden"; - -$lang['options_bands_name_band'] = "Name des Bandes (z.B. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name der Bandgruppe (z.B. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warnung! Bist du dir sicher, dass du das folgende Band löschen willst: "; - diff --git a/application/language/german/qslcard_lang.php b/application/language/german/qslcard_lang.php deleted file mode 100644 index 4bdaa53b7b..0000000000 --- a/application/language/german/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -hier."; -$lang['qso_simplefle_qso_data'] = "QSO Daten"; -$lang['qso_simplefle_qso_date_hint'] = "Wenn du kein Datum auswählst, wird das heutige Datum verwendet."; -$lang['qso_simplefle_qso_list'] = "QSO Liste"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Datum"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "z.B. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Stationsstandort"; -$lang['qso_simplefle_station_call_location_hint'] = "Falls du von einem neuen Standort oder mit einem neuen Rufzeichen gefunkt hast, erstelle erst einen neuen Stationsstandort"; -$lang['qso_simplefle_utc_time'] = "Aktuelle UTC Zeit"; -$lang['qso_simplefle_enter_the_data'] = "Gibt hier die Daten ein"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Schliesse und Lade Beispiel Daten"; -$lang['qso_simplefle_reload'] = "Aktualisiere QSO Liste"; -$lang['qso_simplefle_save'] = "Speichere in Wavelog"; -$lang['qso_simplefle_clear'] = "Lösche QSO Daten"; -$lang['qso_simplefle_refs_hint'] = "Die Ref. kann entweder SOTA, IOTA, POTA oder WWFF sein."; - -$lang['qso_simplefle_error_band'] = "Band fehlt!"; -$lang['qso_simplefle_error_mode'] = "Mode fehlt!"; -$lang['qso_simplefle_error_time'] = "Zeit nicht gesetzt!"; -$lang['qso_simplefle_error_stationcall'] = "Stationsstandort nicht ausgewählt"; -$lang['qso_simplefle_error_operator'] = "'Operator' Feld ist leer"; -$lang['qso_simplefle_warning_reset'] = "Warnung! Willst du wirklich alles zurücksetzen?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warnung! Du kannst die QSO Liste nicht loggen, da bei manchen QSO das Band und/oder der Mode fehlt!"; -$lang['qso_simplefle_warning_missing_time'] = "Warnung! Du kannst die QSO Liste nicht loggen, da bei manchen QSO die Zeit fehlt!"; -$lang['qso_simplefle_warning_example_data'] = "Achtung! Das Daten Feld enthält Beispiel Daten. Lösche zuerst die QSO Daten!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Bist du dir sicher, dass du diese QSO loggen und die Eingabe zurücksetzen willst?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO geloggt!"; -$lang['qso_simplefle_success_save_to_log'] = "Die QSO wurden erfolgreich im Logbuch gespeichert!"; -$lang['qso_simplefle_error_date'] = "Ungültiges Datum"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Hilfe"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax für FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Bevor du ein QSO loggst, beachte bitte die grundlegenden Regeln."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Jedes neue QSO sollte in einer neuen Zeile stehen."; -$lang['qso_simplefle_syntax_help_ln3'] = "- In jeder neuen Zeile schreibst du nur Daten, die sich vom vorherigen QSO geändert haben."; -$lang['qso_simplefle_syntax_help_ln4'] = "Um zu beginnen, stelle sicher, dass du die Felder auf der linken Seite bereits mit Datum, Stationsrufzeichen/-standort und Rufzeichen des Operators ausgefüllt hast. Die wichtigsten Daten umfassen das Band (oder QRG in MHz, z.B. '7.145'), Mode und Zeit. Nach der Zeit gibst du das erste QSO an, was im wesentlichen das Rufzeichen ist."; -$lang['qso_simplefle_syntax_help_ln5'] = "Zum Beispiel ein QSO um 21:34 Uhr (UTC) mit 4W7EST auf 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "Wenn du keine RST-Informationen angibst, verwendet die Syntax 59 (599 für Daten). Unser nächstes QSO war nicht auf beiden Seiten 59, also geben wir die Informationen zuerst mit gesendeter RST an. Es war 2 Minuten später als das erste QSO."; -$lang['qso_simplefle_syntax_help_ln7'] = "Das erste QSO war um 21:34 Uhr, und das zweite 2 Minuten später um 21:36 Uhr. Wir schreiben '6' für die geänderte Minute, da dies die einzige geänderte Information ist. Die Eingaben zum Band und Mode haben sich nicht geändert, daher entfallen diese Daten hier."; -$lang['qso_simplefle_syntax_help_ln8'] = "Für unser nächstes QSO um 21:40 Uhr am 14.05.2021 haben wir das Band auf 40m geändert, sind aber immer noch auf SSB. Wenn keine RST-Informationen angegeben sind, verwendet die Syntax bei jedem neuen QSO 59. Daher können wir ein weiteres QSO hinzufügen welches um die exakt selbe Zeit zwei Tage später stattfand. Das Datum muss im Format YYYY-MM-DD eingegeben werden."; -$lang['qso_simplefle_syntax_help_ln9'] = "Eine vollständige Übersicht aller Befehle und der notwendigen Syntax findest du in diesem Artikel in unserem Wiki."; - -$lang['qso_simplefle_options'] = 'Optionen'; - diff --git a/application/language/german/station_lang.php b/application/language/german/station_lang.php deleted file mode 100644 index 70b2f83dfa..0000000000 --- a/application/language/german/station_lang.php +++ /dev/null @@ -1,118 +0,0 @@ - Stationsstandorte um einen zu aktivieren.'; -$lang['station_location_reassign_at'] = 'Bitte mache die Zuordnung in '; -$lang['station_location_warning_reassign'] = 'Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem Stationsstandort zuordnen.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Station Name'; -$lang['station_location_name_hint'] = 'Kurzname für den Stationsstandort. Zum Beispiel: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Rufzeichen'; -$lang['station_location_callsign_hint'] = 'Station Rufzeichen. Zum Beispiel: HB9HIL/P'; -$lang['station_location_power'] = 'Station Sendeleistung (W)'; -$lang['station_location_power_hint'] = 'Standardmässig eingestellte Sendeleistung in Watt. Wird von CAT-Daten überschrieben.'; -$lang['station_location_emptylog'] = 'Lösche Log'; -$lang['station_location_confirm_active'] = 'Bist du sicher, dass du den folgenden Stationsstandort zum aktiven Standort machen möchtest?: '; -$lang['station_location_set_active'] = 'Aktivieren'; -$lang['station_location_active'] = 'Aktive Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Bist du sicher, dass du alle QSO an diesem Stationsstandort löschen möchtest?'; -$lang['station_location_confirm_del_stationlocation'] = 'Bist du sicher, dass du diesen Stationsstandort löschen willst?:'; -$lang['station_location_confirm_del_stationlocation_qso'] = 'Es werden alle QSO an diesem Stationsstandort gelöscht!'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = "Station DXCC Einteilung. Zum Beispiel: 'Federal Republic of Germany'"; -$lang['station_location_dxcc_warning'] = "Stoppe hier für einen Moment. Das von dir gewählte DXCC ist abgelaufen und nicht mehr gültig. Überprüfe, welches das richtige DXCC für den Standort der Station ist. Als Beispiel: Deutschland ist nicht mehr \'Germany\' sondern \'Federal Republic of Germany\'. Wenn du dir sicher bist, ignoriere diese Warnung."; -$lang['station_location_city'] = 'Station Stadt'; -$lang['station_location_city_hint'] = 'Station Stadt. Zum Beispiel: Berlin'; -$lang['station_location_state'] = 'Station Staat'; -$lang['station_location_state_hint'] = 'Station Staat. Nur verfügbar für einige Länder. Leer lassen falls nicht verfügbar.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Nur für USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Planquadrat'; -$lang['station_location_gridsquare_hint_ln1'] = "Station Planquadrat. Zum Beispiel: JO40IC. Wenn du dein Planquadrat nicht kennst klicke hier!"; -$lang['station_location_gridsquare_hint_ln2'] = "Wenn du genau auf der Linie eines Planquadrates bist kannst du mehrere Planquadrate mit Kommas getrennt eingeben. Zum Beispiel: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "IOTA Referenznummer der Station. Zum Beispiel: EU-005"; -$lang['station_location_iota_hint_ln2'] = "Du kannst IOTA Referenznummern auf der IOTA World Website nachschlagen."; -$lang['station_location_sota_hint_ln1'] = "SOTA Referenznummer der Station. Du kannst SOTA Referenznummern auf der SOTA Maps Webseite nachschlagen."; -$lang['station_location_wwff_hint_ln1'] = "WWFF Referenznummer der Station. Du kannst WWFF Referenznummern auf der GMA Map Webseite nachschlagen."; -$lang['station_location_pota_hint_ln1'] = "POTA Referenznummer(n) der Station. Mehrere kommaseparierte Einträge erlaubt. Du kannst POTA Referenznummern auf der POTA Map Webseite nachschlagen."; -$lang['station_location_signature'] = "Signaturen"; -$lang['station_location_signature_name'] = "Signatur Bezeichnung"; -$lang['station_location_signature_name_hint'] = "Signatur/Referenz der Station (z.B. GMA).."; -$lang['station_location_signature_info'] = "Signatur Information"; -$lang['station_location_signature_info_hint'] = "Signatur/Referenz Information der Station (z.B. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = "Der 'QTH Nickname' wie er in deinem eQSL Profil konfiguriert ist."; -$lang['station_location_eqsl_defaultqslmsg'] = "Standard QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Definiere eine Standard-Nachricht, welche für jedes QSO in diesem Stationsstandort an eQSL übertragen wird."; -$lang['station_location_qrz_subscription'] = 'Abonnement erforderlich'; -$lang['station_location_qrz_hint'] = "Finde deinen 'QRZ Logbook API Key' in den QRZ.com Logbuch Einstellungen"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbuch Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Benutzername"; -$lang['station_location_hrdlog_username_hint'] = "Der Benutzername mit dem du bei HRDlog.net registriert bist (normalerweise dein Rufzeichen)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbuch Echtzeit Upload"; -$lang['station_location_hrdlog_code_hint'] = "Erstelle deinen API Key auf HRDLog.net Benutzerprofil Seite"; -$lang['station_location_qo100_hint'] = "Erstelle deinen API Key auf deiner QO-100 Dx Club's Profil Seite"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Echtzeit Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS aktivieren"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email Benachrichtigung"; -$lang['station_location_oqrs_email_hint'] = "Stelle sicher, dass du E-Mail unter Admin/Globale Optionen konfiguriert hast."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Einige Informationen, die du zum QSL-Vorgang hinzufügen möchtest."; -$lang['station_location_ignore'] = "Ignoriere Clublog-Upload"; -$lang['station_location_ignore_hint'] = "Wenn aktiviert, werden die QSOs, die von diesem Standort gemacht wurden, beim Clublog-Upload ignoriert.
Sofern das Feld \"von allein\" auf deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call überprüfen."; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; diff --git a/application/language/german/statistics_lang.php b/application/language/german/statistics_lang.php deleted file mode 100644 index 234101d37d..0000000000 --- a/application/language/german/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Der weiteste Kontakt war"; // make sure'
' stays there -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "im Planquadrat"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "Die Distanz betrug"; -$lang['statistics_distances_number_of_qsos'] = "Anzahl der QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Gearbeitete(s) Rufzeichen (max 5 werden gezeigt)"; -$lang['statistics_distances_qsos_with'] = "QSOs mit"; -$lang['statistics_distances_and_band'] = "und Band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Zeitleiste"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Anzahl der Tage mit QSOs pro Jahr"; -$lang['statistics_days_with_qso_short'] = "Tage mit QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Längste Serie mit QSOs im Logbuch"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "Es werden maximal die 10 längsten Serien angezeigt!"; -$lang['statistics_dwq_streak_continuous_days'] = "Serie (fortlaufende Tage mit QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Aktuelle Serie mit QSOs im Logbuch"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Aktuelle Serie (fortlaufende Tage mit QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "Wenn Sie heute ein QSO machen, können Sie Ihre Serie verlängern... Andernfalls wird Ihre aktuelle Serie unterbrochen!"; -$lang['statistics_dwq_no_current_streak'] = "Keine aktuelle Serie gefunden!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Kumulierte Statistik gearbeiteter DXCC"; -$lang['statistics_accumulated_worked_states'] = "Kumulierte Statistik gearbeiteter US Staaten"; -$lang['statistics_accumulated_worked_iota'] = "Kumulierte Statistik gearbeiteter IOTA"; -$lang['statistics_accumulated_worked_cqzone'] = "Kumulierte Statistik gearbeiteter CQ Zonen"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "Der Zeitplotter wird verwendet, um Ihr Logbuch zu analysieren und herauszufinden, zu welchen Uhrzeiten Sie bestimmte CQ-Zonen oder DXCC-Länder auf einem ausgewählten Band gearbeitet haben."; -$lang['statistics_timeplotter_contacts_plotted'] = "Kontakte wurden geplotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Uhrzeit Verteilung"; -$lang['statistics_timeplotter_number_of_qsos'] = "Anzahl QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "gearbeitete Rufzeichen (max 5)"; - diff --git a/application/language/greek/account_lang.php b/application/language/greek/account_lang.php deleted file mode 100644 index 1b1d89f660..0000000000 --- a/application/language/greek/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Default Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at
https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/greek/adif_lang.php b/application/language/greek/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/greek/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/greek/admin_lang.php b/application/language/greek/admin_lang.php deleted file mode 100644 index f0510df7e4..0000000000 --- a/application/language/greek/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/greek/contesting_lang.php b/application/language/greek/contesting_lang.php deleted file mode 100644 index b736c3b36c..0000000000 --- a/application/language/greek/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/greek/filter_lang.php b/application/language/greek/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/greek/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/greek/general_words_lang.php b/application/language/greek/general_words_lang.php deleted file mode 100644 index 84b95df9b3..0000000000 --- a/application/language/greek/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/greek/gridsquares_lang.php b/application/language/greek/gridsquares_lang.php deleted file mode 100644 index 5c6faed454..0000000000 --- a/application/language/greek/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Απαγορεύεται η πρόσβαση στον κατάλογο.

- - - \ No newline at end of file diff --git a/application/language/greek/lotw_lang.php b/application/language/greek/lotw_lang.php deleted file mode 100644 index c0dee7fa45..0000000000 --- a/application/language/greek/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report, για να επισημάνετε τα QSO ως επιβεβαιώθηκε στο LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Τα αρχεία καταγραφής πρέπει να έχουν τον τύπο αρχείου .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Τραβήξτε δεδομένα LoTW για μένα'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] = 'Το Wavelog θα χρησιμοποιήσει το όνομα χρήστη και τον κωδικό πρόσβασης LoTW που είναι αποθηκευμένα στο προφίλ χρήστη σας για να πραγματοποιήσει λήψη μιας αναφοράς από το LoTW για εσάς. Οι λήψεις αναφοράς Wavelog θα έχουν όλες τις επιβεβαιώσεις από την επιλεγμένη ημερομηνία ή από την τελευταία επιβεβαίωση LoTW (που ελήφθη από το αρχείο καταγραφής σας), μέχρι τώρα.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'Εισαγωγή LoTW'; -$lang['lotw_btn_upload_certificate'] = 'Ανέβασμα Πιστοποιητικού'; -$lang['lotw_btn_delete'] = 'Διαγραφή'; -$lang['lotw_btn_manual_sync'] = 'Χειροκίνητος συγχρονισμός'; -$lang['lotw_btn_upload_file'] = 'Ανέβασμα αρχείου'; -$lang['lotw_btn_import_matches'] = 'Εισαγωγή αντιστοιχιών LoTW'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Ανοίξτε το TQSL & μεταβείτε στην καρτέλα Πιστοποιητικά διακριτικού κλήσης'; -$lang['lotw_p12_export_step_two'] = 'Κάντε δεξί κλικ στο διακριτικό κλήσης που θέλετε'; -$lang['lotw_p12_export_step_three'] = 'Κάντε κλικ στην επιλογή "Αποθήκευση αρχείου πιστοποιητικού κλήσης" και μην προσθέσετε κωδικό πρόσβασης'; -$lang['lotw_p12_export_step_four'] = 'Ανεβάστε το αρχείο παρακάτω.'; - -$lang['lotw_confirmed'] = 'Αυτό το QSO επιβεβαιώνεται στο LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'Τουλάχιστον ένα από τα πιστοποιητικά LoTW πρόκειται να λήξει!'; -$lang['lotw_cert_expired'] = 'Τουλάχιστον ένα από τα πιστοποιητικά LoTW σας έχει λήξει!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Τελευταία μεταφόρτωση'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/greek/menu_lang.php b/application/language/greek/menu_lang.php deleted file mode 100644 index 816145cf59..0000000000 --- a/application/language/greek/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/greek/qslcard_lang.php b/application/language/greek/qslcard_lang.php deleted file mode 100644 index 41c6ca9922..0000000000 --- a/application/language/greek/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/greek/station_lang.php b/application/language/greek/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/greek/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/greek/statistics_lang.php b/application/language/greek/statistics_lang.php deleted file mode 100644 index 71fc869872..0000000000 --- a/application/language/greek/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/italian/account_lang.php b/application/language/italian/account_lang.php deleted file mode 100644 index 38d9cfd187..0000000000 --- a/application/language/italian/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Default Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/italian/adif_lang.php b/application/language/italian/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/italian/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/italian/admin_lang.php b/application/language/italian/admin_lang.php deleted file mode 100644 index f0510df7e4..0000000000 --- a/application/language/italian/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/italian/contesting_lang.php b/application/language/italian/contesting_lang.php deleted file mode 100644 index c1b3a52a23..0000000000 --- a/application/language/italian/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/italian/filter_lang.php b/application/language/italian/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/italian/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/italian/general_words_lang.php b/application/language/italian/general_words_lang.php deleted file mode 100644 index 96ff84f255..0000000000 --- a/application/language/italian/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "it-IT"; diff --git a/application/language/italian/gridsquares_lang.php b/application/language/italian/gridsquares_lang.php deleted file mode 100644 index 5c6faed454..0000000000 --- a/application/language/italian/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Negato - - - -

Accesso alla cartella è negato.

- - - \ No newline at end of file diff --git a/application/language/italian/lotw_lang.php b/application/language/italian/lotw_lang.php deleted file mode 100644 index 01dca47018..0000000000 --- a/application/language/italian/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report, per segnare i QSO come confermati su LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'I file di log devono essere di tipo .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Ottieni dati da LoTW per me'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog userà il nome utente e password LoTW memorizzato nel tuo profilo per scaricare un report da LoTW per te. Il report scaricato da Wavelog avrà tutte le conferme fino alla data scelta, o fino alla ultima conferma su LoTW (recuperato dal tuo log), fino ad ora.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'Importa LoTW'; -$lang['lotw_btn_upload_certificate'] = 'Carica Certificato'; -$lang['lotw_btn_delete'] = 'Cancella'; -$lang['lotw_btn_manual_sync'] = 'Sincronizzazione Manuale'; -$lang['lotw_btn_upload_file'] = 'Carica File'; -$lang['lotw_btn_import_matches'] = 'Importa Combinazioni LoTW'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Apri TQSL e vai sulla schermata Callsign Certificates'; -$lang['lotw_p12_export_step_two'] = 'Clicca con tasto destro sul Nominativo desiderato'; -$lang['lotw_p12_export_step_three'] = 'Clicca "Save Callsign Certificate File" e non aggiungere nessuna password'; -$lang['lotw_p12_export_step_four'] = 'Carica file qui sotto.'; - -$lang['lotw_confirmed'] = 'Questo QSO è confermato su LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!'; -$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/italian/menu_lang.php b/application/language/italian/menu_lang.php deleted file mode 100644 index 816145cf59..0000000000 --- a/application/language/italian/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/italian/qslcard_lang.php b/application/language/italian/qslcard_lang.php deleted file mode 100644 index 6724fd4f61..0000000000 --- a/application/language/italian/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/italian/station_lang.php b/application/language/italian/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/italian/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/italian/statistics_lang.php b/application/language/italian/statistics_lang.php deleted file mode 100644 index 71fc869872..0000000000 --- a/application/language/italian/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/polish/account_lang.php b/application/language/polish/account_lang.php deleted file mode 100644 index 02ba7fb1f5..0000000000 --- a/application/language/polish/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Default Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/polish/adif_lang.php b/application/language/polish/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/polish/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/polish/admin_lang.php b/application/language/polish/admin_lang.php deleted file mode 100644 index f0510df7e4..0000000000 --- a/application/language/polish/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/polish/contesting_lang.php b/application/language/polish/contesting_lang.php deleted file mode 100644 index e27034348c..0000000000 --- a/application/language/polish/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/polish/filter_lang.php b/application/language/polish/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/polish/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/polish/general_words_lang.php b/application/language/polish/general_words_lang.php deleted file mode 100644 index 4699b00332..0000000000 --- a/application/language/polish/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/polish/gridsquares_lang.php b/application/language/polish/gridsquares_lang.php deleted file mode 100644 index 5c6faed454..0000000000 --- a/application/language/polish/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Directory access is forbidden.

- - - \ No newline at end of file diff --git a/application/language/polish/lotw_lang.php b/application/language/polish/lotw_lang.php deleted file mode 100644 index e2865f7912..0000000000 --- a/application/language/polish/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Linku, aby oznaczyć łączności jako potwierdzone przez LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Pliki logu muszą mieć rozszerzenie .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Pobierz dane z LoTW za mnie'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog będzie używał loginu i hasła podanego w profilu, aby pobierać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia od wybranej daty, lub ostatniej potwierdzonej łączności z LoTW (wybranej z logiu), do teraz.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW Import'; -$lang['lotw_btn_upload_certificate'] = 'Wyślij certyfikat'; -$lang['lotw_btn_delete'] = 'Usuń'; -$lang['lotw_btn_manual_sync'] = 'Ręczna synchronizacja'; -$lang['lotw_btn_upload_file'] = 'Wyślij plik'; -$lang['lotw_btn_import_matches'] = 'Import LoTW Matches'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Otwórz aplikacje TQSL & przejdź dp zakładki Callsign Certificates'; -$lang['lotw_p12_export_step_two'] = 'Naciśnij prawym klawiszem myszny na żądany znak'; -$lang['lotw_p12_export_step_three'] = 'wybierz "Save Callsign Certificate File"i nie podawaj hasła'; -$lang['lotw_p12_export_step_four'] = 'Wyślij plik poniżej.'; - -$lang['lotw_confirmed'] = 'Ta łączność jest potwierdzona przez LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!'; -$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/polish/menu_lang.php b/application/language/polish/menu_lang.php deleted file mode 100644 index 816145cf59..0000000000 --- a/application/language/polish/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/polish/qslcard_lang.php b/application/language/polish/qslcard_lang.php deleted file mode 100644 index faaae1d898..0000000000 --- a/application/language/polish/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/polish/station_lang.php b/application/language/polish/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/polish/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/polish/statistics_lang.php b/application/language/polish/statistics_lang.php deleted file mode 100644 index 71fc869872..0000000000 --- a/application/language/polish/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/russian/account_lang.php b/application/language/russian/account_lang.php deleted file mode 100644 index 72d46dc85e..0000000000 --- a/application/language/russian/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Настройки для диапазона и способ подтверждения (QSL) по умолчанию'; -$lang['account_gridmap_default_band'] = 'Диапазон по умолчанию'; -$lang['account_qsl_settings'] = 'Способы подтверждения (QSL) по умолчанию'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Поддержка Winkeyer в Wavelog в стадии эксперимента, прочитайте сначала вики (https://github.com/wavelog/wavelog/wiki/Winkey) перед включением."; -$lang['account_winkeyer_enabled'] = "Функционал Winkeyer включен"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/russian/adif_lang.php b/application/language/russian/adif_lang.php deleted file mode 100644 index 817d646b74..0000000000 --- a/application/language/russian/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Лог-файлы должны иметь расширение .adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Выберите расположение станции"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "Файл ADIF"; - -$lang['adif_hint_no_info_in_file'] = "Отметьте, если импортируемый ADIF не сожержит этой информации."; - -$lang['adif_import_dup'] = "Импортировать дубликаты QSO"; -$lang['adif_mark_imported_lotw'] = "Отметить импортированные QSO, как загруженные в LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Отметить импортированные QSO, как загруженные в журнал HRDLog.net"; -$lang['adif_mark_imported_qrz'] = "Отметить импортированные QSO, как загруженные в журнал QRZ"; -$lang['adif_mark_imported_clublog'] = "Отметить импортированные QSO, как загруженные в журнал Clublog"; - -$lang['adif_dxcc_from_adif'] = "Использовать информацию о DXCC из ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "Если не отмечено, Wavelog будет пытаться определить информацию о DXCC автоматически."; - -$lang['adif_always_use_login_call_as_op'] = "Всегда использовать позывной (логин) как имя оператора при импорте"; - -$lang['adif_ignore_station_call'] = "Игнорировать позывной станции при импорте"; -$lang['adif_ignore_station_call_hint'] = "Если отмечено, Wavelog попытается импортировать все QSO из ADIF, независимо от соответствия из выбранному расположению станции."; - -$lang['adif_upload'] = "Загрузить"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Возьми свой файл журнала куда угодно!"; -$lang['adif_export_take_it_anywhere_hint'] = "Экспорт ADIF позволяет импортировать QSO в различные приложения (сервисы), такие как LoTW, Awards или просто сохранить, как резервную копию."; - - -$lang['adif_mark_exported_lotw'] = "Отметить экспортированные QSO как загруженные в LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Отметить экспортированные QSO как незагруженные в LoTW"; - -$lang['adif_export_qso'] = "Экспорт QSO"; - -$lang['adif_export_sat_only_qso'] = "Экспортировать QSO, проведённые через спутник"; -$lang['adif_export_sat_only_qso_all'] = "Экспортировать все QSO, проведённые через спутник"; -$lang['adif_export_sat_only_qso_lotw'] = "Экспортировать все QSO, проведённые через спутник, подтверждённые на LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "Если диапазон дат не выбран, то будут отмечены все QSO!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Отметить QSO как экспортированные в LoTW"; - -$lang['adif_qso_marked'] = "QSO отмечены!"; -$lang['adif_yay_its_done'] = "Готово!"; -$lang['adif_qso_lotw_marked_confirm'] = "QSO были отмечены, как экспортированные в LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Перейдите на"; -$lang['adif_dcl_text_post'] = "и экспортируйте ващ журнал с подтверждёнными DOK. Для ускорения процесса вы можете выбрать только DL QSO для скачивания (т.е. указать \"DL\" в списке префиксов). Скачанный ADIF может быть загружен тут для обновления данных DOK в QSO."; - -$lang['only_confirmed_qsos'] = "Импортировать только данные DOK из QSO, подтверждённых на DCL."; -$lang['only_confirmed_qsos_hint'] = "Снисите отметку, если вы также хотите обновить данные DOK из QSO, не подтверждённых на DCL."; - -$lang['overwrite_by_dcl'] = "Перезаписать имеющиеся данные в журнале DOK данными из DCL (если они различны)"; -$lang['overwrite_by_dcl_hint'] = "Если отмеченно, то Wavelog принудительно перезапишет имеющиемя данные DOK данными из журнала DCL."; - -$lang['ignore_ambiguous'] = "Игнорировать несовпадающиe QSO"; -$lang['ignore_ambiguous_hint'] = "Если не отмечено, будет отображена информация о QSO, не найденных в Wavelog."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF импортирован"; -$lang['adif_yay_its_imported'] = "Готово!"; -$lang['adif_import_confirm'] = "ADIF файл импортирован."; - -$lang['adif_import_dupes_inserted'] = " Добавлены дубликаты!"; -$lang['adif_import_dupes_skipped'] = " Дубликаты игнорированы."; - -$lang['adif_import_errors'] = "Ошибки ADIF"; -$lang['adif_import_errors_hint'] = "В ADIF присутствуют ошибки, QSOs добавлены, но эти поля не заполнены."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Результаты обновления DCL DOK"; -$lang['dcl_info_updated'] = "Информация DCL для DOK была обновлена."; -$lang['dcl_qsos_updated'] = "QSO обновлены"; -$lang['dcl_qsos_ignored'] = "QSO игнорированы"; -$lang['dcl_qsos_unmatched'] = "QSO не совпадают"; -$lang['dcl_no_qsos_updated'] = "Не найдено QSO, которые могут быть обновлены."; -$lang['dcl_dok_errors'] = "Ошибки DOK"; -$lang['dcl_dok_errors_details'] = "Данные DOK в вашем логе отличаются от DCL"; -$lang['dcl_qsl_status'] = "Статус DCL QSL"; -$lang['dcl_qsl_status_c'] = "подтверждено LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "подтверждено менеджером диплома"; -$lang['dcl_qsl_status_i'] = "подтверждено кросс-проверкой с данными DCL"; -$lang['dcl_qsl_status_w'] = "подтверждение ожидается"; -$lang['dcl_qsl_status_x'] = "не подтверждено"; -$lang['dcl_qsl_status_unknown'] = "неизвестно"; -$lang['dcl_no_match'] = "QSO не может быть сопоставлено"; diff --git a/application/language/russian/admin_lang.php b/application/language/russian/admin_lang.php deleted file mode 100644 index ac98e32de9..0000000000 --- a/application/language/russian/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/russian/contesting_lang.php b/application/language/russian/contesting_lang.php deleted file mode 100644 index 1a685bef79..0000000000 --- a/application/language/russian/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/russian/filter_lang.php b/application/language/russian/filter_lang.php deleted file mode 100644 index be69704a26..0000000000 --- a/application/language/russian/filter_lang.php +++ /dev/null @@ -1,159 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Верифицировано'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'От'; -$lang['filter_general_to'] = 'к'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- без - (т.е. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Распространение'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'С выбранными: '; -$lang['filter_actions_update_f_callbook'] = 'Обновить из колбука'; -$lang['filter_actions_queue_bureau'] = 'В очередь (бюро)'; -$lang['filter_actions_queue_direct'] = 'В очередь (напрямую)'; -$lang['filter_actions_queue_electronic'] = 'В очередь (электронно)'; -$lang['filter_actions_sent_bureau'] = 'Отправлено (бюро)'; -$lang['filter_actions_sent_direct'] = 'Отправле (напрямую)'; -$lang['filter_actions_sent_electronic'] = 'Отправлено (электронно)'; -$lang['filter_actions_not_sent'] = 'Не отправлено'; -$lang['filter_actions_qsl_n_required'] = 'QSL не требуется'; -$lang['filter_actions_recv_bureau'] = 'Получено (бюро)'; -$lang['filter_actions_recv_direct'] = 'Получено (напрямую)'; -$lang['filter_actions_recv_electronic'] = 'Получено (электронно)'; -$lang['filter_actions_create_adif'] = 'Создать ADIF'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_print_label'] = 'Напечатать наклейки'; -$lang['filter_actions_start_print_title'] = 'Печать наклеек'; -$lang['filter_actions_print_include_via'] = "Включить через?"; -$lang['filter_actions_print_include_grid'] = 'Включить квадрат?'; -$lang['filter_actions_start_print'] = 'Начать печать в?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_print'] = 'Печать'; -$lang['filter_actions_qsl_slideshow'] = 'Слайдшоу QSL'; -$lang['filter_actions_delete'] = 'Удалить'; -$lang['filter_actions_delete_warning'] = "Предупреждение! Вы уверены, что хотите удалить отмеченные QSO?"; -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Опции для расширенного вида журнала'; -$lang['filter_options_column'] = 'Столбец'; -$lang['filter_options_show'] = 'Показать'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.phpназвания -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_options_close'] = 'Закрыть'; diff --git a/application/language/russian/general_words_lang.php b/application/language/russian/general_words_lang.php deleted file mode 100644 index 832d5d0665..0000000000 --- a/application/language/russian/general_words_lang.php +++ /dev/null @@ -1,244 +0,0 @@ -сюда, чтобы сделать это!'; -$lang['dashboard_locations_warning'] = 'У вас нет расположений станций! Перейдите сюда, чтобы создать!'; -$lang['dashboard_logbooks_warning'] = 'У вас нет аппаратного журнала! Перейдите сюда, чтобы создать его!'; - -$lang['hams_at_no_activations_found'] = 'не найдены предстоящие активации. Проверьте позже.'; -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; - -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/russian/gridsquares_lang.php b/application/language/russian/gridsquares_lang.php deleted file mode 100644 index 533992c62f..0000000000 --- a/application/language/russian/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Directory access is forbidden.

- - - \ No newline at end of file diff --git a/application/language/russian/lotw_lang.php b/application/language/russian/lotw_lang.php deleted file mode 100644 index 43b797c009..0000000000 --- a/application/language/russian/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -области скачивания журнала , чтоб отметить QSO подтверждёнными через LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Файлы журнала должны быть с расширением .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Подтянуть мои данные из LoTW'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog использует логин и пароль для LoTW, сохранённые в вашем профиле, для того чтобы скачивать ваши журналы с LoTW. Журнал, скачанный в Wavelog будет содержать все подтверждения, начиная с выбранной даты, или начиная с последнего подтверждения в LoTW (загруженного из вашего журнала), до настоящего момента.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'Импорт LoTW'; -$lang['lotw_btn_upload_certificate'] = 'Загрузить сертификат'; -$lang['lotw_btn_delete'] = 'Удалить'; -$lang['lotw_btn_manual_sync'] = 'Ручная синхронизация'; -$lang['lotw_btn_upload_file'] = 'Загрузить файл'; -$lang['lotw_btn_import_matches'] = 'Импортировать совпадения с LoTW'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Откройте TQSL & перейдите на вкладку "Сертификаты позывных"'; -$lang['lotw_p12_export_step_two'] = 'Кликните правой кнопкой по выбранному позывному'; -$lang['lotw_p12_export_step_three'] = 'Кликните "Сохранить Сертификат позывного" и не задавайте пароль'; -$lang['lotw_p12_export_step_four'] = 'Загрузите полученный файл ниже.'; - -$lang['lotw_confirmed'] = 'Это QSO подтверждено на LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'Как минимум, один из ваших сертификатов LoTW скоро истечёт!'; -$lang['lotw_cert_expired'] = 'Один из ваших сертификатов LoTW истёк!'; - -// Lotw User -$lang['lotw_user'] = 'Эта станция использует LoTW.'; -$lang['lotw_last_upload'] = 'Последняя загрузка'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/russian/menu_lang.php b/application/language/russian/menu_lang.php deleted file mode 100644 index e1af07e570..0000000000 --- a/application/language/russian/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', при использовании SSL -> '465'"; -$lang['options_smtp_username_hint'] = "Имя пользователя для входа на почтовый сервер, обычно это -- указанный выше адрес емэйл."; -$lang['options_smtp_password_hint'] = "Пароль для входа на почтовый сервер."; -$lang['options_send_testmail'] = "Отправить тестовое сообщение."; -$lang['options_send_testmail_hint'] = "Емэйл будет отпрален на адрес, указанный в настройках вашего аккаунта."; -$lang['options_send_testmail_failed'] = "Отправка тестового сообщения не удалась. Что-то пошло не так."; -$lang['options_send_testmail_success'] = "Тестовое сообщение отправлено. Настройки емэйл похожи на правильные."; - -$lang['options_oqrs'] = 'OQRS'; -$lang['options_global_text'] = 'Сообщение на странице OQRS'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'Необязательный текст, который может быть отображён в верхней части страницы OQRS.'; -$lang['options_grouped_search'] = 'Объединённый поиск'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'Если включено, то поиск будет осуществляться во всех местоположениях станций, где активен OQRS.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'Настройки OQRS сохранены.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Провайдер кэша DXCluster'; -$lang['options_dxcluster_longtext'] = 'Провайдер кэша DXCluster. Вы можете настроить собственный кэш: DXClusterAPI или использовать публичный'; -$lang['options_dxcluster_hint'] = 'URL кэша DXCluster-Cache. К примеру, https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'URL кэша DXCluster изменён на '; -$lang['options_dxcluster_maxage'] = 'Максимальный возраст спотов'; -$lang['options_dxcluster_maxage_hint'] = 'Возраст спотов, которые будут отображаться в плане диапазонов/поиске'; -$lang['options_dxcluster_decont'] = 'Отображать споты, которые присланы с континента '; -$lang['options_dxcluster_maxage_changed_to']='Максимальный возраст спотов изменён на '; -$lang['options_dxcluster_decont_changed_to']='континент изменён на '; -$lang['options_dxcluster_decont_hint']='Бубт показаны споты только от споттеров с указанного континента'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Сохранить'; - -// Bands - -$lang['options_bands'] = "Диапазоны"; -$lang['options_bands_text_ln1'] = "Используя список диапазонов, вы можете контролировать, какие диапазоны будут отображены при заполнении данных о новом QSO."; -$lang['options_bands_text_ln2'] = "Активные диапазоны будут показаны в выпадающем списке 'Диапазон' формы ввода данных QSO, неактивные диапазоны будут скрыты и не смогут быть выбраны."; -$lang['options_bands_create'] = "Создать диапазон"; -$lang['options_bands_edit'] = "Редактировать диапазон"; -$lang['options_bands_activate_all'] = "Активировать все"; -$lang['options_bands_activateall_warning'] = "Предупреждение! Вы уверены в том, что хотите активировать все диапазоны?"; -$lang['options_bands_deactivate_all'] = "Деактивировать все"; -$lang['options_bands_deactivateall_warning'] = "Предупреждение! Вы уверены в том, что хотите деактивировать все диапазоны?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Частота SSB QRG в диапазоне (в Гц)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Частота DATA QRG в диапазоне (в Гц)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Частота CW QRG в диапазоне (в Гц)"; - -$lang['options_bands_name_band'] = "Название диапазона (к прмиеру, 20м)"; -$lang['options_bands_name_bandgroup'] = "Название группы диапазонов (к примеру, hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Предупреждение! Вы уверены в том, что хотите удалить следующий диапазон: "; - diff --git a/application/language/russian/qslcard_lang.php b/application/language/russian/qslcard_lang.php deleted file mode 100644 index f46a23d9b6..0000000000 --- a/application/language/russian/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -здесь."; -$lang['qso_simplefle_qso_data'] = "Данные QSOa"; -$lang['qso_simplefle_qso_date_hint'] = "Если вы не выберете дату, будет использована сегодняшняя."; -$lang['qso_simplefle_qso_list'] = "Список QSO"; -$lang['qso_simplefle_qso_list_total'] = "Всего"; -$lang['qso_simplefle_qso_date'] = "Дата QSO"; -$lang['qso_simplefle_operator'] = "Оператор"; -$lang['qso_simplefle_operator_hint'] = "к примеру, OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Позывной/расположение станции"; -$lang['qso_simplefle_station_call_location_hint'] = "Если вы работаете из нового расположения станции, сначала создайте его здесь: Расположение станции"; -$lang['qso_simplefle_utc_time'] = "Текущее время UTC"; -$lang['qso_simplefle_enter_the_data'] = "Введите данные"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Закройте и загрузите образец данных"; -$lang['qso_simplefle_reload'] = "Перезагрузить список QSO"; -$lang['qso_simplefle_save'] = "Сохранить в Wavelog"; -$lang['qso_simplefle_clear'] = "Очистить сессию логгирования"; -$lang['qso_simplefle_refs_hint'] = "Референции могут быть: SOTA, IOTA, POTA или WWFF"; - -$lang['qso_simplefle_error_band'] = "Отсутствует диапазон!"; -$lang['qso_simplefle_error_mode'] = "Отсутствует вид модуляции!"; -$lang['qso_simplefle_error_time'] = "Время не установлено!"; -$lang['qso_simplefle_error_stationcall'] = "Позывной не выбран"; -$lang['qso_simplefle_error_operator'] = "Поле 'Оператор' пусто"; -$lang['qso_simplefle_warning_reset'] = "Предупреждение! Вы уверены, что хотите всё сбросить?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Предупреждение! Вы не можете записать в журнал список QSO потому, что для некоторых QSO не указаны диапазон и/или вид модуляции!"; -$lang['qso_simplefle_warning_missing_time'] = "Предупреждение! Вы не можете записать в журнал список QSO потому, что для некоторых QSO не определено время!"; -$lang['qso_simplefle_warning_example_data'] = "Внимание! Поле данных содержит пример данных. Сначала очистите сессию логгирования!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Вы уверены, что хотите записаь данные QSO в журнал и очистить сессию?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO записаны!"; -$lang['qso_simplefle_success_save_to_log'] = "QSO были успешно записаны в журнал!"; -$lang['qso_simplefle_error_date'] = "Некорректная дата"; - -$lang['qso_simplefle_syntax_help_button'] = "Помощь по синтаксису"; -$lang['qso_simplefle_syntax_help_title'] = "Синтакс FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Прежде чем начать регистрировать QSO, обратите внимание на основные правила:"; -$lang['qso_simplefle_syntax_help_ln2'] = "- Каждое новое QSO должно проводиться на новой строке."; -$lang['qso_simplefle_syntax_help_ln3'] = "- На каждой новой строке записывайте только те данные, которые изменились по сравнению с предыдущим QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "Для начала убедитесь, что вы уже заполнили форму слева, указав дату, позывной станции и позывной оператора. Основные данные включают диапазон (или QRG в МГц, например, '7.145'), режим и время. После времени указывается первое QSO, которое, по сути, является позывным."; -$lang['qso_simplefle_syntax_help_ln5'] = "Например, QSO, начавшееся в 21:34 (UTC) с 4W7EST на 20 м SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "Если вы не предоставите никакой RST-информации, синтаксис будет использовать 59 (599 для данных). В нашем следующем QSO не было 59 с обеих сторон, поэтому мы предоставляем информацию с отправленным RST первыми. Это произошло на 2 минуты позже, чем первое QSO."; -$lang['qso_simplefle_syntax_help_ln7'] = "Первое QSO состоялось в 21:34, а второе - на 2 минуты позже, в 21:36. Мы записываем 6, потому что это единственные данные, которые здесь изменились. Информация о диапазоне и режиме не изменилась, поэтому эти данные опущены."; -$lang['qso_simplefle_syntax_help_ln8'] = "Для следующего QSO в 21:40 14 мая 2021 года мы сменили диапазон на 40 м, но по-прежнему на SSB. Если информация о RST не указана, то синтаксис будет использовать 59 для каждого нового QSO. Поэтому мы можем добавить еще одно QSO, состоявшееся точно в это же время двумя днями позже. Дата должна быть в формате YYYY-MM-DD."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/russian/station_lang.php b/application/language/russian/station_lang.php deleted file mode 100644 index 2fae99f5b4..0000000000 --- a/application/language/russian/station_lang.php +++ /dev/null @@ -1,118 +0,0 @@ -Расположение станции, чтобы выбрать.'; -$lang['station_location_reassign_at'] = 'Пожалуйста, переназначьте их в '; -$lang['station_location_warning_reassign'] = 'Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим профилям станции.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Название профиля'; -$lang['station_location_name_hint'] = 'Короткое название профиля расположения станции, к примеру: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Позывной станции'; -$lang['station_location_callsign_hint'] = 'Позывной станции, например: 4W7EST/P'; -$lang['station_location_power'] = 'Мощность станции (Вт)'; -$lang['station_location_power_hint'] = 'Мощность станции по умолчанию в Вт. Перезаписывается данными из CAT.'; -$lang['station_location_emptylog'] = 'Очистить лог'; -$lang['station_location_confirm_active'] = 'Вы уверены, что хотите сделать эту станцию активой: '; -$lang['station_location_set_active'] = 'Установить активной'; -$lang['station_location_active'] = 'Активная станция'; -$lang['station_location_claim_ownership'] = 'Заявить собственность'; -$lang['station_location_confirm_del_qso'] = 'Вы уверены, что хотите удалить все QSO из этого профиля станции?'; -$lang['station_location_confirm_del_stationlocation'] = 'Вы уверены, что хотите удалить профиль станции '; -$lang['station_location_confirm_del_stationlocation_qso'] = ', это удалит все QSO, содержащиеся в этом профиле станции?'; -$lang['station_location_dxcc'] = 'DXCC'; -$lang['station_location_dxcc_hint'] = 'DXCC станции, к примеру: Scotland'; -$lang['station_location_dxcc_warning'] = "Остановитесь на мгновение. Выбранный вами DXCC устарел и больше не действителен. Проверьте, какой DXCC для данного конкретного места является правильным. Если вы уверены, проигнорируйте это предупреждение."; -$lang['station_location_city'] = 'город'; -$lang['station_location_city_hint'] = 'Город станции, к примеру: Inverness'; -$lang['station_location_state'] = 'Штат'; -$lang['station_location_state_hint'] = 'Штат станции. Примени только в некоторых странах. Оставьте пустым, если неприменим.'; -$lang['station_location_county'] = 'Графство'; -$lang['station_location_county_hint'] = 'Графство станции (Используется только для США/Аляски/Гавайев).'; -$lang['station_location_gridsquare'] = 'Квадрат'; -$lang['station_location_gridsquare_hint_ln1'] = "Квадрат станции, к примеру: HM54ip. Если вы не знаете свой квадрат, то кликните сюда!"; -$lang['station_location_gridsquare_hint_ln2'] = "Если вы располагаетесь на границе квадратов, то укажите квадраты через запятую, к примеру: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Референция IOTA, к примеру: EU-005"; -$lang['station_location_iota_hint_ln2'] = "Вы можете посмотреть референции IOTA на сайте IOTA World."; -$lang['station_location_sota_hint_ln1'] = "Референция SOTA. Вы можете посмотреть референции SOTA на сайте SOTA Maps."; -$lang['station_location_wwff_hint_ln1'] = "Референция WWFF. Вы можете посмотреть референции WWFF на сайте GMA Map."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Подпись"; -$lang['station_location_signature_name'] = "Имя подписи"; -$lang['station_location_signature_name_hint'] = "Подпись станции (т.е. GMA).."; -$lang['station_location_signature_info'] = "Информация о подписи"; -$lang['station_location_signature_info_hint'] = "Информация о подписис станции (т.е. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'Название профиля, который сконфигурирован в eQSL для данного QTH'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Требуется подписка'; -$lang['station_location_qrz_hint'] = "Ваш ключ API находится на странице настроек журнала QRZ.com"; -$lang['station_location_qrz_realtime_upload'] = 'Загрузка в журнал QRZ.com'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "Загрузка в журнал HRDLog.net в реальном времени"; -$lang['station_location_hrdlog_code_hint'] = "Создайте свой код к API наn странице профиля пользователя HRDLog.net"; -$lang['station_location_qo100_hint'] = "Создайте свой ключ API на странице вашего профиля в QO-100 Dx Club"; -$lang['station_location_qo100_realtime_upload'] = "Загрузка QO-100 Dx Club в реальном времени"; -$lang['station_location_oqrs_enabled'] = "OQRS включен"; -$lang['station_location_oqrs_email_alert'] = "Оповещение о OQRS о емэйл"; -$lang['station_location_oqrs_email_hint'] = "Убедитесь, что емэйл сконфигурирован администратором в общих настройках."; -$lang['station_location_oqrs_text'] = "Текст OQRS"; -$lang['station_location_oqrs_text_hint'] = "Информация, которую вы хотите добавить, касающаяся QSL."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; diff --git a/application/language/russian/statistics_lang.php b/application/language/russian/statistics_lang.php deleted file mode 100644 index a916f32353..0000000000 --- a/application/language/russian/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Наиболее дальний контакт с"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "в квадрате"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "на дистанции"; -$lang['statistics_distances_number_of_qsos'] = "Количество QSO"; -$lang['statistics_distances_callsigns_worked'] = "Сработанные позывные(ной) (максимально 5 показано)"; -$lang['statistics_distances_qsos_with'] = "QSOs с"; -$lang['statistics_distances_and_band'] = "и диапазоне"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Лента времени"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/spanish/account_lang.php b/application/language/spanish/account_lang.php deleted file mode 100644 index e0afbe24db..0000000000 --- a/application/language/spanish/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Configuración para Banda por Defecto y Confirmación'; -$lang['account_gridmap_default_band'] = 'Banda por Defecto'; -$lang['account_qsl_settings'] = 'Métodos de QSL por Defecto'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "El soporte de Winkeyer en Wavelog es muy experimental. Lea la wiki primero en https://github.com/wavelog/wavelog/wiki/Winkey antes de activar."; -$lang['account_winkeyer_enabled'] = "Características de Winkeyer Activadas"; - -$lang['account_map_params'] = "Configuración de Mapa"; -$lang['account_map_qso_by_default'] = "QSO (por defecto)"; -$lang['account_map_qso_confirm'] = "QSO (confirmadas)"; -$lang['account_map_qso_confirm_same_qso'] = "(Si se configura como 'No', se muestra como ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "Información General"; -$lang['account_qso_logging_options'] = "Opciones del Registro de QSO"; -$lang['account_third_party_services'] = "Servicios de Terceros"; -$lang['account_default_values'] = "Valores por Defecto"; -$lang['account_miscellaneous'] = "Otras Opciones"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/spanish/adif_lang.php b/application/language/spanish/adif_lang.php deleted file mode 100644 index 3e08b8e989..0000000000 --- a/application/language/spanish/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Los archivos de registro deben tener el tipo de archivo *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Seleccione la Localización de la Estación"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "Archivo ADIF"; - -$lang['adif_hint_no_info_in_file'] ="Seleccione si el archivo ADIF que se va a importar no incluye esta información."; - -$lang['adif_import_dup'] = "Importar QSOs duplicadas"; -$lang['adif_mark_imported_lotw'] = "Marcar QSOs importadas como subidas a LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Marcar QSOs importadas como subidas al libro de guardia de HRDLog.net"; -$lang['adif_mark_imported_qrz'] = "Marcar QSOs importadas como subidas al libro de guardia de QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Marcar QSOs importadas como subidas al libro de guardia de Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Usar la información DXCC del ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "Si no se selecciona, Wavelog intentará determinar la información DXCC automáticamente."; - -$lang['adif_always_use_login_call_as_op'] = "Siempre use el indicativo usado para iniciar sesión como el nombre de operador al importar"; - -$lang['adif_ignore_station_call'] = "Ignorar el indicativo de la Estación al importar"; -$lang['adif_ignore_station_call_hint'] = "Si se selecciona, Wavelog intentará importar todos los QSOs del ADIF, sin importar si concuerdan con la estación/localización seleccionada."; - -$lang['adif_upload'] = "Subir"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "¡Lleve su archivo de libro de guardia a cualquier lugar!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exportar archivos ADIF le permite importar contactos en aplicaciones de terceros como LoTW, Diplomas o para simplemente tener una copia de seguridad."; - - -$lang['adif_mark_exported_lotw'] = "Marcar QSOs exportados como subidos a LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Exportar QSOs que no se hayan subido a LoTW"; - -$lang['adif_export_qso'] = "Exportar QSOs"; - -$lang['adif_export_sat_only_qso'] = "Exportar solo QSOs de satélite"; -$lang['adif_export_sat_only_qso_all'] = "Exportar todos los QSOs de satélite"; -$lang['adif_export_sat_only_qso_lotw'] = "Exportar todos los QSOs de satélite confirmados en LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "¡Si no selecciona un rango de fechas entonces todos los QSOs serán marcados!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Marcar QSOs como exportados a LoTW"; - -$lang['adif_qso_marked'] = "QSOs marcados"; -$lang['adif_yay_its_done'] = "¡Bien, hemos terminado!"; -$lang['adif_qso_lotw_marked_confirm'] = "Los QSOs fueron marcados como exportados a LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Vaya a"; -$lang['adif_dcl_text_post'] = "y exporte su libro de guardia con DOKs confirmados. Para acelerar el proceso, puede seleccionar solo QSOs tipo DL para que sean descargados (ej. ponga \"DL\" en la Lista de Prefijos). El archivo ADIF descargado puede ser subido aquí para actualizar los QSOs con información DOK."; - -$lang['only_confirmed_qsos'] = "Solo importar datos DOK de los QSO confirmados en DCL."; -$lang['only_confirmed_qsos_hint'] = "Si se deja desactivado, se actualizarán los datos DOK con datos de los QSO no confirmados en DCL."; - -$lang['overwrite_by_dcl'] = "Sobreescribir los DOK existentes en el registro por DCL (si son diferentes)"; -$lang['overwrite_by_dcl_hint'] = "Si está activo, Wavelog forzará la sobreescritura de los DOK existentes con los DOK desde el libro de DCL."; - -$lang['ignore_ambiguous'] = "Ignorar QSOs que no concuerden"; -$lang['ignore_ambiguous_hint'] = "Si se deja desactivado, se mostrará la información de QSOs que no se encuentren en Wavelog."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Importado"; -$lang['adif_yay_its_imported'] = "¡Bien, lo hemos importado!"; -$lang['adif_import_confirm'] = "El archivo ADIF fue importado."; - -$lang['adif_import_dupes_inserted'] = " ¡Se insertaron registros duplicados!"; -$lang['adif_import_dupes_skipped'] = " Se descartaron registros duplicados."; - -$lang['adif_import_errors'] = "Errores ADIF"; -$lang['adif_import_errors_hint'] = "Tiene errores en su archivo ADIF. Los QSOs han sido adicionados, pero estos campos no han sido importados."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Resultados de la actualización DOK de DCL"; -$lang['dcl_info_updated'] = "Se ha actualizado la información para DOKs desde DCL."; -$lang['dcl_qsos_updated'] = "QSOs actualizados"; -$lang['dcl_qsos_ignored'] = "QSOs ignorados"; -$lang['dcl_qsos_unmatched'] = "QSOs que no concuerdan"; -$lang['dcl_no_qsos_updated'] = "No se encontraron QSOs a actualizar."; -$lang['dcl_dok_errors'] = "Errores DOK"; -$lang['dcl_dok_errors_details'] = "Hay datos diferentes para DOKs en su libro comparados con DCL"; -$lang['dcl_qsl_status'] = "Estado de QSLs en DCL QSL"; -$lang['dcl_qsl_status_c'] = "confirmados por LoTW/Clublog/eQSL/Concurso"; -$lang['dcl_qsl_status_mno'] = "confirmados por el administrador del premio"; -$lang['dcl_qsl_status_i'] = "confirmados al hacer chequeo cruzadoc on datos de DCL"; -$lang['dcl_qsl_status_w'] = "pendiente de confirmación"; -$lang['dcl_qsl_status_x'] = "sin confirmar"; -$lang['dcl_qsl_status_unknown'] = "desconocido"; -$lang['dcl_no_match'] = "QSOs que no concuerdan"; diff --git a/application/language/spanish/admin_lang.php b/application/language/spanish/admin_lang.php deleted file mode 100644 index 521cdef7cc..0000000000 --- a/application/language/spanish/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/spanish/contesting_lang.php b/application/language/spanish/contesting_lang.php deleted file mode 100644 index cdfb26ef2d..0000000000 --- a/application/language/spanish/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/spanish/filter_lang.php b/application/language/spanish/filter_lang.php deleted file mode 100644 index 2d366b4c49..0000000000 --- a/application/language/spanish/filter_lang.php +++ /dev/null @@ -1,162 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verificado'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'Desde'; -$lang['filter_general_to'] = 'a'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- Ninguno - (ej. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagación'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'Con los seleccionados: '; -$lang['filter_actions_update_f_callbook'] = 'Actualizar de Callbook'; -$lang['filter_actions_queue_bureau'] = 'En Cola por Buró'; -$lang['filter_actions_queue_direct'] = 'En Cola por Directa'; -$lang['filter_actions_queue_electronic'] = 'En Cola por Electrónico'; -$lang['filter_actions_sent_bureau'] = 'Enviado (Buró)'; -$lang['filter_actions_sent_direct'] = 'Enviado (Directa)'; -$lang['filter_actions_sent_electronic'] = 'Enviado (Electrónico)'; -$lang['filter_actions_not_sent'] = 'No Enviado'; -$lang['filter_actions_qsl_n_required'] = 'QSL no Requerida'; -$lang['filter_actions_recv_bureau'] = 'Recibido (Buró)'; -$lang['filter_actions_recv_direct'] = 'Recibido (Directa)'; -$lang['filter_actions_recv_electronic'] = 'Recibido (Electrónico)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Crear ADIF'; -$lang['filter_actions_print_label'] = 'Imprimir Etiqueta'; -$lang['filter_actions_start_print_title'] = 'Imprimir Etiquetas'; -$lang['filter_actions_print_include_via'] = "Incluir Vía"; -$lang['filter_actions_start_print'] = '¿Iniciar impresión desde?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_print'] = 'Imprimir'; -$lang['filter_actions_qsl_slideshow'] = 'Presentación QSL'; -$lang['filter_actions_delete'] = 'Eliminar'; -$lang['filter_actions_delete_warning'] = "¡Advertencia! ¿Está seguro que desea eliminar las QSO marcadas?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Opciones para el Libro de Guardia Avanzado'; -$lang['filter_options_column'] = 'Columna'; -$lang['filter_options_show'] = 'Mostrar'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator'] = 'Buscar Operador'; -$lang['filter_options_close'] = 'Cerrar'; diff --git a/application/language/spanish/general_words_lang.php b/application/language/spanish/general_words_lang.php deleted file mode 100644 index 42c547036d..0000000000 --- a/application/language/spanish/general_words_lang.php +++ /dev/null @@ -1,244 +0,0 @@ -aquí para hacerlo!'; -$lang['dashboard_locations_warning'] = 'No tiene localizaciones de estaciones. ¡Haga clic aquí para crear una!'; -$lang['dashboard_logbooks_warning'] = 'No tiene libro de guardias. ¡Haga clic aquí para crear uno!'; - -$lang['hams_at_no_activations_found'] = 'No hay activaciones próximas. Por favor vuelve a revisar más tarde.'; -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; - -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "es-ES"; diff --git a/application/language/spanish/gridsquares_lang.php b/application/language/spanish/gridsquares_lang.php deleted file mode 100644 index ddd006d721..0000000000 --- a/application/language/spanish/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Directory access is forbidden.

- - - \ No newline at end of file diff --git a/application/language/spanish/lotw_lang.php b/application/language/spanish/lotw_lang.php deleted file mode 100644 index 5776ddd0f0..0000000000 --- a/application/language/spanish/lotw_lang.php +++ /dev/null @@ -1,69 +0,0 @@ -Download Report para marcar QSOs como confirmados en LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Los archivos de registro deben ser del tipo .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Extraer los datos LoTW por mí'; -$lang['lotw_select_callsign'] = 'Seleccione indicativo para obtener confirmaciones de LoTW'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog usará el usuario y contraseña de LoTW guardado en su perfil para descargar un informe de LoTW por usted. El informe contendrá todas las confirmaciones desde la fecha elegida o desde su última confirmación LoTW hasta ahora.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'Importar LoTW'; -$lang['lotw_btn_upload_certificate'] = 'Subir certificado'; -$lang['lotw_btn_delete'] = 'Borrar'; -$lang['lotw_btn_manual_sync'] = 'Sincronización manual'; -$lang['lotw_btn_upload_file'] = 'Subir archivo'; -$lang['lotw_btn_import_matches'] = 'Importar coincidencias LoTW'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Abrir TQSL e ir a la pestaña "Callsign Certificates".'; -$lang['lotw_p12_export_step_two'] = 'Clic derecho en el indicativo deseado.'; -$lang['lotw_p12_export_step_three'] = 'Clic en "Save Callsign Certificate File" sin añadir la contraseña.'; -$lang['lotw_p12_export_step_four'] = 'Subir aquí el archivo descargado.'; - -$lang['lotw_confirmed'] = 'Este QSO está confirmado en LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = '¡Al menos uno de sus certificados de LoTW caduca pronto!'; -$lang['lotw_cert_expired'] = '¡Al menos uno de sus certificados de LoTW ya ha caducado!'; - -// Lotw User -$lang['lotw_user'] = 'Esta estacion usa LoTW.'; -$lang['lotw_last_upload'] = 'Última subida'; - -$lang['lotw_active'] = 'activos'; -$lang['lotw_not_found'] = 'no encontrado'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/spanish/menu_lang.php b/application/language/spanish/menu_lang.php deleted file mode 100644 index 620a8c0ff5..0000000000 --- a/application/language/spanish/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', si está usando SSL -> '465'"; -$lang['options_smtp_username_hint'] = "El nombre de usuario para iniciar sesión en el servidor de correo, usualmente esta es la dirección de correo electrónico a usar."; -$lang['options_smtp_password_hint'] = "La contraseña para iniciar sesión en el servidor de correo."; -$lang['options_send_testmail'] = "Enviar correo de prueba"; -$lang['options_send_testmail_hint'] = "El correo será enviado a la dirección definida en su configuración de cuenta."; -$lang['options_send_testmail_failed'] = "El correo de prueba ha fallado. Algo salió mal."; -$lang['options_send_testmail_success'] = "El correo de prueba fue enviado. La configuración de correo electrónico parece correcta."; - -$lang['options_oqrs'] = 'Opciones OQRS'; -$lang['options_global_text'] = 'Texto global'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'Este texto es un texto opcional que se mostrará en la parte superior de la página de OQRS.'; -$lang['options_grouped_search'] = 'Búsqueda agrupada'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'Cuando está activo, se buscarán en simultáneo todas las localizaciones de estación con OQRS activo'; -$lang['options_grouped_search_show_station_name'] = "Mostrar localización de la estación en los resultados de búsqueda agrupados"; -$lang['options_grouped_search_show_station_name_hint'] = "Si la búsqueda agrupada esta ACTIVA, puede decidir si el nombre de la localización de la estación se mostrará en la tabla de resultados."; -$lang['options_oqrs_options_have_been_saved'] = 'Las opciones de OQRS se han guardado.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Proveedor de DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'El proveedor de DXCluster-Cache. Puede configurar su propio caché con DXClusterAPI o usar un caché público.'; -$lang['options_dxcluster_hint'] = 'URL del DXCluster-Cache. ej. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'URL del DXCluster-Cache cambiada a '; -$lang['options_dxcluster_maxage'] = 'Máxima edad de spots a tomarse en cuenta'; -$lang['options_dxcluster_maxage_hint'] = 'La edad en minutos de los spots que se tomarán en cuenta en el plan de bandas/búsqueda'; -$lang['options_dxcluster_decont'] = 'Mostrar spots que se observen en el siguiente continente'; -$lang['options_dxcluster_maxage_changed_to']='Máxima edad de spots cambiada a '; -$lang['options_dxcluster_decont_changed_to']='de continente cambiado a '; -$lang['options_dxcluster_decont_hint']='Solo se muestran spots por observadores de este continente'; - -$lang['options_version_dialog'] = "Información de Versión"; -$lang['options_version_dialog_close'] = "Cerrar"; -$lang['options_version_dialog_dismiss'] = "No mostrar de nuevo"; -$lang['options_version_dialog_settings'] = "Configuración de Información de Versión"; -$lang['options_version_dialog_header'] = "Cabecera de la Información de Versión"; -$lang['options_version_dialog_header_hint'] = "Puede cambiar el encabezado del diálogo de información de versión."; -$lang['options_version_dialog_header_changed_to'] = "El Encabezado de Información de Versión cambió a"; -$lang['options_version_dialog_mode'] = "Modo de Información de Versión"; -$lang['options_version_dialog_mode_release_notes'] = "Solo Notas de la Versión"; -$lang['options_version_dialog_mode_custom_text'] = "Solo Texto Personalizado"; -$lang['options_version_dialog_mode_both'] = "Notas de la Versión y Texto Personalizado"; -$lang['options_version_dialog_mode_disabled'] = "Desactivado"; -$lang['options_version_dialog_mode_hint'] = "La Información de Versión es mostrada a todos los usuarios. El usuario tiene la opción de cerrar el diálogo después de leerlo. Seleccione si solo quiere mostrar las notas de la versión (extraídas de GitHub), solo texto personalizado o ambos."; -$lang['options_version_dialog_custom_text'] = "Texto Personalizado de la Información de Versión"; -$lang['options_version_dialog_custom_text_hint'] = "Este es el texto personalizado que se muestra en el diálogo."; -$lang['options_version_dialog_mode_changed_to'] = "Modo de Información de Versión ha cambiado a"; -$lang['options_version_dialog_custom_text_saved'] = "¡Texto Personalizado de la Información de Versión guardado!"; -$lang['options_version_dialog_success_show_all'] = "La Información de Versión será mostrada a todos los usuarios de nuevo"; -$lang['options_version_dialog_success_hide_all'] = "La Información de Versión no será mostrada a nadie"; -$lang['options_version_dialog_show_hide'] = "Mostrar/Ocultar el Diálogo de Información de Versión para todos los Usuarios"; -$lang['options_version_dialog_show_all'] = "Mostrar a todos los Usuarios"; -$lang['options_version_dialog_hide_all'] = "Ocultar a todos los Usuarios"; -$lang['options_version_dialog_show_all_hint'] = "Esto mostrará el diálogo de versión automáticamente a todos los usuarios la próxima vez que recarguen la página."; -$lang['options_version_dialog_hide_all_hint'] = "Esto desactivará que se muestre automáticamente el diálogo de versión para todos los usuarios."; - -$lang['options_save'] = 'Guardar'; - -// Bands - -$lang['options_bands'] = "Bandas"; -$lang['options_bands_text_ln1'] = "Usando la lista de bandas puede controlar qué bandas se muestran cuando se crea un nuevo QSO."; -$lang['options_bands_text_ln2'] = "Las bandas activas se mostrarán en la lista desplegable de 'Bandas' en QSO, mientras que las bandas inactivas se ocultarán y no pueden ser seleccionadas."; -$lang['options_bands_create'] = "Crear una Banda"; -$lang['options_bands_edit'] = "Editar Banda"; -$lang['options_bands_activate_all'] = "Activar Todas"; -$lang['options_bands_activateall_warning'] = "¡Advertencia! ¿Está seguro que desea activar todas las bandas?"; -$lang['options_bands_deactivate_all'] = "Desactivar Todas"; -$lang['options_bands_deactivateall_warning'] = "¡Advertencia! ¿Está seguro que desea desactivar todas las bandas?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frecuencia para el QRG de SSB en la banda (debe ser en Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frecuencia para el QRG de DATA en la banda (debe ser en Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frecuencia para el QRG de CW en la banda (debe ser en Hz)"; - -$lang['options_bands_name_band'] = "Nombre de la Banda (ej. 20m)"; -$lang['options_bands_name_bandgroup'] = "Nombre del grupo de bandas (ej. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "¡Advertencia! ¿Está seguro que desea eliminar la banda a continuación: "; - diff --git a/application/language/spanish/qslcard_lang.php b/application/language/spanish/qslcard_lang.php deleted file mode 100644 index 1e7351c543..0000000000 --- a/application/language/spanish/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -aquí."; -$lang['qso_simplefle_qso_data'] = "Datos de QSO"; -$lang['qso_simplefle_qso_date_hint'] = "Si no escoge una fecha, se usará la fecha de hoy."; -$lang['qso_simplefle_qso_list'] = "Lista de QSOs"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "Fecha de QSO"; -$lang['qso_simplefle_operator'] = "Operador"; -$lang['qso_simplefle_operator_hint'] = "ej. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Indicativo/Localización de la Estación"; -$lang['qso_simplefle_station_call_location_hint'] = "Si ha operado desde una nueva localización, primero cree una nueva Localización de Estación"; -$lang['qso_simplefle_utc_time'] = "Hora UTC Actual"; -$lang['qso_simplefle_enter_the_data'] = "Introduzca los Datos"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Cerrar y Cargar Datos de Muestra"; -$lang['qso_simplefle_reload'] = "Recargar Lista de QSO"; -$lang['qso_simplefle_save'] = "Guardar en Wavelog"; -$lang['qso_simplefle_clear'] = "Limpiar Sesión de Registro"; -$lang['qso_simplefle_refs_hint'] = "Las Referencias deben ser SOTA, IOTA, POTA o WWFF"; - -$lang['qso_simplefle_error_band'] = "¡Falta la Banda!"; -$lang['qso_simplefle_error_mode'] = "¡Falta el Modo!"; -$lang['qso_simplefle_error_time'] = "¡No se configuró la Hora!"; -$lang['qso_simplefle_error_stationcall'] = "El Indicativo de la Estación no fue seleccionado"; -$lang['qso_simplefle_error_operator'] = "El campo 'Operador' está vacío"; -$lang['qso_simplefle_warning_reset'] = "¡Advertencia! ¿Está seguro que desea reinicializar todo?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "¡Advertencia! ¡No puede registrar la lista de QSOs, porque algunos QSO no tienen banda y/o modo definido!"; -$lang['qso_simplefle_warning_missing_time'] = "¡Advertencia! ¡No puede registrar la lista de QSOs, porque algunos QSO no tienen hora definida!"; -$lang['qso_simplefle_warning_example_data'] = "¡Atención! ¡El campo Datos contiene datos de muestra. Primero Limpie la Sesión de Registro!"; -$lang['qso_simplefle_confirm_save_to_log'] = "¿Está seguro que desea añadir estos QSOs al Libro de Guardia y limpiar la sesión?"; -$lang['qso_simplefle_success_save_to_log_header'] = "¡QSOs Registradas!"; -$lang['qso_simplefle_success_save_to_log'] = "¡Las QSOs fueron satisfactoriamente guardadas en el Libro de Guardia!"; -$lang['qso_simplefle_error_date'] = "Fecha inválida"; - -$lang['qso_simplefle_syntax_help_button'] = "Ayuda de Sintaxis"; -$lang['qso_simplefle_syntax_help_title'] = "Sintaxis para FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Antes de empezar a registrar un QSO, observe las reglas básicas."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Cada QSO nuevo debe estar en una línea nueva."; -$lang['qso_simplefle_syntax_help_ln3'] = "- En cada nueva línea, solo escriba datos que hayan cambiado desde el QSO anterior."; -$lang['qso_simplefle_syntax_help_ln4'] = "Para comenzar, asegúrese que ya ha rellenado el formulario en la izquierda con la fecha, el indicativo de la estación y el indicativo del operador. Los datos principales incluyen la banda (o QRG en MHz, ej., '7.145'), modo, y hora. Después de la hora, usted debe introducir el primer QSO, que es esencialmente el indicativo."; -$lang['qso_simplefle_syntax_help_ln5'] = "Por ejemplo, un QSO que ha iniciado a las 21:34 (UTC) con 4W7EST en 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "Si no introduce ninguna información RST, la sintaxis usará 59 (o 599 para datos). Nuestro siguiente QSO no era 59 en ambos lados, así que proveemos la información con el RST enviado primero. Fue 2 minutos después del primer QSO."; -$lang['qso_simplefle_syntax_help_ln7'] = "El primer QSL fue a las 21:34, y el segundo 2 minutos después a las 21:36. Escribimos 6 porque fue el único dato que cambió. La información de banda y modo no cambió, así que estos datos se omiten."; -$lang['qso_simplefle_syntax_help_ln8'] = "Para nuestro siguiente QSO a las 21:40 el 14 de mayo de 2021, cambiamos la banda a 40m pero seguimos en SSB. Si no se ingresa datos de RST, la sintaxis usará 59 para cada nuevo QSO. Por lo tanto podemos añadir un nuevo QSO que ocurrió a la misma hora dos días después. La fecha debe estar en el formato YYYY-MM-DD."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/spanish/station_lang.php b/application/language/spanish/station_lang.php deleted file mode 100644 index e17a9fb237..0000000000 --- a/application/language/spanish/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Localización de Estación para seleccionar una.'; -$lang['station_location_reassign_at'] = 'Por favor, reasignelas en '; -$lang['station_location_warning_reassign'] = 'Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles de estación.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Nombre de Perfil'; -$lang['station_location_name_hint'] = 'Nombre corto para la Localización de Estación. Ejemplo: Casa (HM54ip)'; -$lang['station_location_callsign'] = 'Indicativo de la Estación'; -$lang['station_location_callsign_hint'] = 'Indicativo de llamada de la Estación. Ejemplo: 4W7EST/P'; -$lang['station_location_power'] = 'Potencia de la Estación (W)'; -$lang['station_location_power_hint'] = 'Potencia de la estación por defecto en Vatios. Puede ser sobreescrito por CAT.'; -$lang['station_location_emptylog'] = 'Libro Vacío'; -$lang['station_location_confirm_active'] = '¿Está seguro que desea poner como activa la siguiente estación: '; -$lang['station_location_set_active'] = 'Poner como Activa'; -$lang['station_location_active'] = 'Estación Activa'; -$lang['station_location_claim_ownership'] = 'Reclamar Propiedad'; -$lang['station_location_confirm_del_qso'] = '¿Está seguro que desea eliminar todos los QSOs en este perfil de estación?'; -$lang['station_location_confirm_del_stationlocation'] = '¿Está seguro que desea eliminar el perfil de estación '; -$lang['station_location_confirm_del_stationlocation_qso'] = '? Esto eliminará todos los QSOs dentro este perfil de estación.'; -$lang['station_location_dxcc'] = 'DXCC de la Estación'; -$lang['station_location_dxcc_hint'] = 'Entidad DXCC de la Estación. Por ejemplo: Escocia'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Ciudad de la Estación'; -$lang['station_location_city_hint'] = 'Ciudad donde está ubicada la estación. Ejemplo: Inverness'; -$lang['station_location_state'] = 'Estado/Departamento/Provincia de la Estación'; -$lang['station_location_state_hint'] = 'Estado/Departamento/Provincia de la estación. Aplica solo para ciertos países. Déjelo vacío si no aplica.'; -$lang['station_location_county'] = 'Condado de la Estación'; -$lang['station_location_county_hint'] = 'Condado de la Estación (Solo se usa en USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Gridsquare de la Estación'; -$lang['station_location_gridsquare_hint_ln1'] = "Gridsquare de la estación. Ejemplo: HM54ip. ¡Si no conoce su grid square haga clic aquí!"; -$lang['station_location_gridsquare_hint_ln2'] = "Si está localizado justo en una línea de la malla, introduzca múltiples gridsquares separados con comas. por ejemplo: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Referencia IOTA de la Estación. Ejemplo: EU-005"; -$lang['station_location_iota_hint_ln2'] = "Puede buscar las referencias IOTA en el sitio web de IOTA World."; -$lang['station_location_sota_hint_ln1'] = "Referencia SOTA de la Estación. Puede buscar las referencias SOTA en el sitio web de SOTA Maps."; -$lang['station_location_wwff_hint_ln1'] = "Referencia WWFF de la Estación. Puede buscar las referencias WWFF en el sitio web de GMA Map."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Firma"; -$lang['station_location_signature_name'] = "Nombre de la Firma"; -$lang['station_location_signature_name_hint'] = "Firma de la Estación (ej. GMA)."; -$lang['station_location_signature_info'] = "Información de la Firma"; -$lang['station_location_signature_info_hint'] = "Información de la Firma de la Estación (ej. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'El Apodo del QTH como está configurado en su perfil de eQSL'; -$lang['station_location_eqsl_defaultqslmsg'] = "QSLMSG por Defecto"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Defina un mensaje por defecto que será añadido y enviado para cada QSO para esta localización de estación."; -$lang['station_location_qrz_subscription'] = 'Requiere Suscripción'; -$lang['station_location_qrz_hint'] = "Encuentre su clave API en la página de Configuración de libro de guardia en QRZ.com"; -$lang['station_location_qrz_realtime_upload'] = 'Subida del Libro de Guardia a QRZ.com'; -$lang['station_location_hrdlog_username'] = "Nombre de Usuario de HRDLog.net"; -$lang['station_location_hrdlog_username_hint'] = "El nombre de usuario con el que se registró en HRDlog.net (usualmente su indicativo)."; -$lang['station_location_hrdlog_code'] = "Código API de HRDLog.net"; -$lang['station_location_hrdlog_realtime_upload'] = "Subida en Tiempo Real del Libro de Guardia a HRDLog.net"; -$lang['station_location_hrdlog_code_hint'] = "Cree su código API en la página de perfil de usuario de HRDLog.net"; -$lang['station_location_qo100_hint'] = "Cree su llave API en su página perfil de QO-100 Dx Club"; -$lang['station_location_qo100_realtime_upload'] = "Subida en Tiempo Real del Libro de Guardia a QO-100 Dx Club"; -$lang['station_location_oqrs_enabled'] = "Activar OQRS"; -$lang['station_location_oqrs_email_alert'] = "Alerta de Email de OQRS"; -$lang['station_location_oqrs_email_hint'] = "Asegúrese que su correo está bien configurado en las opciones globales y de administrador."; -$lang['station_location_oqrs_text'] = "Texto OQRS"; -$lang['station_location_oqrs_text_hint'] = "Algúna información que desee agregar acerca de su forma de hacer QSL."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='Subida en Tiempo Real en ClubLog'; - - diff --git a/application/language/spanish/statistics_lang.php b/application/language/spanish/statistics_lang.php deleted file mode 100644 index f51970868d..0000000000 --- a/application/language/spanish/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Su contacto más lejano fue con"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "en gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "la distancia fue"; -$lang['statistics_distances_number_of_qsos'] = "Número de QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Indicativo(s) trabajados (se muestran máximo 5)"; -$lang['statistics_distances_qsos_with'] = "QSOs con"; -$lang['statistics_distances_and_band'] = "y banda"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Línea de tiempo"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/swedish/account_lang.php b/application/language/swedish/account_lang.php deleted file mode 100644 index 51f95b8d93..0000000000 --- a/application/language/swedish/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Standard Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/swedish/adif_lang.php b/application/language/swedish/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/swedish/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/swedish/admin_lang.php b/application/language/swedish/admin_lang.php deleted file mode 100644 index e57c794773..0000000000 --- a/application/language/swedish/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/swedish/contesting_lang.php b/application/language/swedish/contesting_lang.php deleted file mode 100644 index bd127a0e8a..0000000000 --- a/application/language/swedish/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/swedish/filter_lang.php b/application/language/swedish/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/swedish/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/swedish/general_words_lang.php b/application/language/swedish/general_words_lang.php deleted file mode 100644 index c6141d6cbc..0000000000 --- a/application/language/swedish/general_words_lang.php +++ /dev/null @@ -1,245 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; -$lang['general_word_realtime'] = "Realtime"; - -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/swedish/gridsquares_lang.php b/application/language/swedish/gridsquares_lang.php deleted file mode 100644 index f72af9e896..0000000000 --- a/application/language/swedish/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Directory access is forbidden.

- - - \ No newline at end of file diff --git a/application/language/swedish/lotw_lang.php b/application/language/swedish/lotw_lang.php deleted file mode 100644 index eba3a91a86..0000000000 --- a/application/language/swedish/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Download Report area, för att markera QSOs som bekräftade på LoTW.'; -$lang['lotw_upload_type_must_be_adi'] = 'Loggfil måste vara av format .adi'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Hämta LoTW data'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] = 'Wavelog använder LoTW användarnamn och lösenord som är sparat i din användarprofil för att ladda ner repport från LoTW. Rapporten Wavelog kommer att ladda ner kommer att ha alla bekräftelser sedan valt datum, eller sedan din senaste LoTW-bekräftelse (hämtad från din logg), fram till nu.'; - -// Buttons -$lang['lotw_btn_lotw_import'] = 'LoTW import'; -$lang['lotw_btn_upload_certificate'] = 'Ladda upp certifikat'; -$lang['lotw_btn_delete'] = 'Radera'; -$lang['lotw_btn_manual_sync'] = 'Manuell synk'; -$lang['lotw_btn_upload_file'] = 'Ladda upp fil'; -$lang['lotw_btn_import_matches'] = 'Importera LoTW Matches'; - -// P12 Export Text -$lang['lotw_p12_export_step_one'] = 'Öppna TQSL & gå till Callsign Certificates tabben'; -$lang['lotw_p12_export_step_two'] = 'Högerklicka på önskad signal'; -$lang['lotw_p12_export_step_three'] = 'Klicka "Save Callsign Certificate File" men ange inget lösenord'; -$lang['lotw_p12_export_step_four'] = 'Ladda upp filen nedan.'; - -$lang['lotw_confirmed'] = 'Detta QSO är bekräftat på LoTW'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'Minst ett av dina LoTW-certifikat är på väg att löpa ut!'; -$lang['lotw_cert_expired'] = 'Minst ett av dina LoTW-certifikat har löpt ut!'; - -// Lotw User -$lang['lotw_user'] = 'Denna station använder LoTW. Den senaste uppladdningen var'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/swedish/menu_lang.php b/application/language/swedish/menu_lang.php deleted file mode 100644 index 10b72f33a7..0000000000 --- a/application/language/swedish/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Alternativ'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'Denna text är en valfri text som kan visas överst på OQRS-sidan.'; -$lang['options_grouped_search'] = 'Grupperad sökning'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'När detta är på kommer alla stationsplatser med OQRS aktiv att sökas på en gång.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS-alternativ har sparats.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Leverantör av DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'Tleverantören av DXCluster-cachen. Du kan ställa in din egen cache med DXClusterAPI eller använda en offentlig cache'; -$lang['options_dxcluster_hint'] = 'URL för DXCluster-cachen. t.ex. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL ändrad till '; -$lang['options_dxcluster_maxage'] = 'Maximal ålder för fläckar som tas om hand'; -$lang['options_dxcluster_maxage_hint'] = 'Åldern i minuter av fläckar, som kommer att tas om hand vid bandplan/uppslag'; -$lang['options_dxcluster_decont'] = 'Visa fläckar som ses från följande kontinent'; -$lang['options_dxcluster_maxage_changed_to']='Maximal ålder för fläckar ändrad till '; -$lang['options_dxcluster_decont_changed_to']='kontinenten ändrats till '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Spara'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/swedish/qslcard_lang.php b/application/language/swedish/qslcard_lang.php deleted file mode 100644 index cf850ba566..0000000000 --- a/application/language/swedish/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/swedish/station_lang.php b/application/language/swedish/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/swedish/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/swedish/statistics_lang.php b/application/language/swedish/statistics_lang.php deleted file mode 100644 index 448993a288..0000000000 --- a/application/language/swedish/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/language/turkish/account_lang.php b/application/language/turkish/account_lang.php deleted file mode 100644 index 84084966dd..0000000000 --- a/application/language/turkish/account_lang.php +++ /dev/null @@ -1,136 +0,0 @@ -https://radiosocial.de"; - -$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation'; -$lang['account_gridmap_default_band'] = 'Default Band'; -$lang['account_qsl_settings'] = 'Default QSL-Methods'; - -$lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; -$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; - -$lang['account_map_params'] = "Map Settings"; -$lang['account_map_qso_by_default'] = "QSO (by default)"; -$lang['account_map_qso_confirm'] = "QSO (confirmed)"; -$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")"; - -$lang['account_general_information'] = "General Information"; -$lang['account_qso_logging_options'] = "QSO Logging Options"; -$lang['account_third_party_services'] = "Third Party Services"; -$lang['account_default_values'] = "Default Values"; -$lang['account_miscellaneous'] = "Miscellaneous"; - -$lang['account_hamsat'] = "Hams.at"; -$lang['account_hamsat_private_feed_key'] = "Private Feed Key"; -$lang['account_hamsat_hint'] = "See your profile at https://hams.at/users/settings."; -$lang['account_hamsat_workable_only'] = "Show Workable Passes Only"; -$lang['account_hamsat_workable_only_hint'] = "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set."; - -$lang['account_references_show'] = "Show Reference Fields on QSO Tab"; -$lang['account_show_references_on_1st_tab'] = "The enabled items will be shown on the QSO tab rather than the General tab."; diff --git a/application/language/turkish/adif_lang.php b/application/language/turkish/adif_lang.php deleted file mode 100644 index f2eddfeb6c..0000000000 --- a/application/language/turkish/adif_lang.php +++ /dev/null @@ -1,139 +0,0 @@ - application/language/english/lotw_lang.php -$lang['darc_dcl'] = "DARC DCL"; - - -/* -___________________________________________________________________________________________ -ADIF Import -___________________________________________________________________________________________ -*/ - -// $lang['general_word_important'] --> application/language/english/general_words_lang.php -$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi"; -// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning" -// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning" - -$lang['adif_select_stationlocation'] = "Select Station Location"; -// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php - -// The File Input is translated by the Browser -$lang['adif_file_label'] = "ADIF File"; - -$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information."; - -$lang['adif_import_dup'] = "Import duplicate QSOs"; -$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW"; -$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook"; -$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook"; -$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; - -$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; - -$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; - -$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; - -$lang['adif_upload'] = "Upload"; - -/* -___________________________________________________________________________________________ -ADIF Export -___________________________________________________________________________________________ -*/ - -$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!"; -$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup."; - - -$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW"; -$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW"; - -$lang['adif_export_qso'] = "Export QSO's"; - -$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs"; -$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs"; -$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW"; - -/* -___________________________________________________________________________________________ -Logbook of the World -___________________________________________________________________________________________ -*/ - -$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!"; -$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW"; - -$lang['adif_qso_marked'] = "QSOs marked"; -$lang['adif_yay_its_done'] = "Yay, its done!"; -$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW."; - -/* -___________________________________________________________________________________________ -DARC DCL -___________________________________________________________________________________________ -*/ -$lang['adif_dcl_text_pre'] = "Go to"; -$lang['adif_dcl_text_post'] = "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."; - -$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL."; -$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; - -$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; - -$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; - -/* -___________________________________________________________________________________________ -Import Success -___________________________________________________________________________________________ -*/ - -$lang['adif_imported'] = "ADIF Imported"; -$lang['adif_yay_its_imported'] = "Yay, its imported!"; -$lang['adif_import_confirm'] = "The ADIF File has been imported."; - -$lang['adif_import_dupes_inserted'] = " Dupes were inserted!"; -$lang['adif_import_dupes_skipped'] = " Dupes were skipped."; - -$lang['adif_import_errors'] = "ADIF Errors"; -$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated."; - -/* -___________________________________________________________________________________________ -DCL Success -___________________________________________________________________________________________ -*/ - -$lang['dcl_results'] = "Results of DCL DOK Update"; -$lang['dcl_info_updated'] = "DCL information for DOKs has been updated."; -$lang['dcl_qsos_updated'] = "QSOs updated"; -$lang['dcl_qsos_ignored'] = "QSOs ignored"; -$lang['dcl_qsos_unmatched'] = "QSOs unmatched"; -$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated."; -$lang['dcl_dok_errors'] = "DOK Errors"; -$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL"; -$lang['dcl_qsl_status'] = "DCL QSL Status"; -$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest"; -$lang['dcl_qsl_status_mno'] = "confirmed by award manager"; -$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data"; -$lang['dcl_qsl_status_w'] = "confirmation pending"; -$lang['dcl_qsl_status_x'] = "unconfirmed"; -$lang['dcl_qsl_status_unknown'] = "unknown"; -$lang['dcl_no_match'] = "QSO could not be matched"; diff --git a/application/language/turkish/admin_lang.php b/application/language/turkish/admin_lang.php deleted file mode 100644 index dc94846200..0000000000 --- a/application/language/turkish/admin_lang.php +++ /dev/null @@ -1,68 +0,0 @@ -CQ Magazine."; - - -/* -___________________________________________________________________________________________ -DOK -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dok_description_ln1'] = "DOK Award"; -$lang['awards_dok_description_ln2'] = "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')."; -$lang['awards_dok_description_ln3'] = "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."; -$lang['awards_dok_description_ln4'] = "This information is provided by the DARC website. Information about the DOK Awards and its rules can be found here."; - - -/* -___________________________________________________________________________________________ -DXCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_dxcc_description_ln1'] = "DXCC Award"; -$lang['awards_dxcc_description_ln2'] = "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 'How to Count Countries Worked, A New DX Scoring System'."; -$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -FFMA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award"; -$lang['awards_ffma_description_ln2'] = "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."; -$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment."; -$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: https://www.arrl.org/ffma."; - - -/* -___________________________________________________________________________________________ -H26 -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_helvetia_description_ln1'] = "HELVETIA 26 | SWITZERLAND AWARD"; -$lang['awards_helvetia_description_ln2'] = "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."; -$lang['awards_helvetia_description_ln3'] = "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"; -$lang['awards_helvetia_description_ln4'] = "For more information, you can visit this link: https://www.uska.ch/contest/uska-diplome/."; - - -/* -___________________________________________________________________________________________ -IOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_iota_description_ln1'] = "IOTA Awards"; -$lang['awards_iota_description_ln2'] = "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."; -$lang['awards_iota_description_ln3'] = "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."; -$lang['awards_iota_description_ln4'] = "You can also find this information on the IOTA WORLD website."; - - -/* -___________________________________________________________________________________________ -POTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_pota_description_ln1'] = "POTA Awards"; -$lang['awards_pota_description_ln2'] = "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."; -$lang['awards_pota_description_ln3'] = "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."; -$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the Parks on the Air® website."; - - -/* -___________________________________________________________________________________________ -SIG -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; -$lang['awards_sig_description_ln3'] = "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."; -$lang['awards_sig_description_ln4'] = "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."; - - -/* -___________________________________________________________________________________________ -SOTA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_sota_description_ln1'] = "SOTA Awards"; -$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas."; -$lang['awards_sota_description_ln3'] = "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."; -$lang['awards_sota_description_ln4'] = "For more information, please visit: https://www.sota.org.uk/."; - - -/* -___________________________________________________________________________________________ -US Counties -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_counties_description_ln1'] = "US County Award"; -$lang['awards_counties_description_ln2'] = "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 here."; -$lang['awards_counties_description_ln3'] = "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."; -$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis."; - - -/* -___________________________________________________________________________________________ -US Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award"; -$lang['awards_us_gridmaster_description_ln2'] = "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."; -$lang['awards_us_gridmaster_description_ln3'] = "Official information from the website: 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."; -$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT."; - - -/* -___________________________________________________________________________________________ -JA Gridmaster -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award"; -$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan."; -$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending."; -$lang['awards_ja_gridmaster_description_ln4'] = ""; - - -/* -___________________________________________________________________________________________ -VUCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award"; -$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band."; -$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: Click here."; -$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant."; - - -/* -___________________________________________________________________________________________ -WAS -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_was_description_ln1'] = "WAS Award"; -$lang['awards_was_description_ln2'] = "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."; -$lang['awards_was_description_ln3'] = "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."; -$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found here."; - - -/* -___________________________________________________________________________________________ -WWFF -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award"; -$lang['awards_wwff_description_ln2'] = "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."; -$lang['awards_wwff_description_ln3'] = "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."; -$lang['awards_wwff_description_ln4'] = "For more information, please visit: https://wwff.co/awards/."; - -/* -___________________________________________________________________________________________ -WAJA -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award"; -$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan."; -$lang['awards_waja_description_ln3'] = "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."; -$lang['awards_waja_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - -/* -___________________________________________________________________________________________ -JCC -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_jcc_description_ln1'] = "JCC - Japan Century Cities Award"; -$lang['awards_jcc_description_ln2'] = "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."; -$lang['awards_jcc_description_ln3'] = "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."; -$lang['awards_jcc_description_ln4'] = "For more information, please visit: https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm."; - - -/* -___________________________________________________________________________________________ -WAB -- Use all 4 Lines of Text -___________________________________________________________________________________________ -*/ - -$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award"; -$lang['awards_wab_description_ln2'] = "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain."; -$lang['awards_wab_description_ln3'] = "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below."; -$lang['awards_wab_description_ln4'] = "For more information, please visit: https://wab.intermip.net/default.php."; -/* -___________________________________________________________________________________________ -ITU -___________________________________________________________________________________________ -*/ - -$lang['awards_itu_description_ln1'] = "ITU Zones"; -$lang['awards_itu_description_ln2'] = "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)."; -$lang['awards_itu_description_ln3'] = "You can find more information on the website of RSGB."; diff --git a/application/language/turkish/contesting_lang.php b/application/language/turkish/contesting_lang.php deleted file mode 100644 index a876f11335..0000000000 --- a/application/language/turkish/contesting_lang.php +++ /dev/null @@ -1,33 +0,0 @@ -https://toplist.darc.de)"; - diff --git a/application/language/turkish/filter_lang.php b/application/language/turkish/filter_lang.php deleted file mode 100644 index 90b2c1377d..0000000000 --- a/application/language/turkish/filter_lang.php +++ /dev/null @@ -1,163 +0,0 @@ - application/language/english/general_words_lang.php -// $lang['general_word_yes'] --> application/language/english/general_words_lang.php -// $lang['general_word_no'] --> application/language/english/general_words_lang.php -// $lang['general_word_requested'] --> application/language/english/general_words_lang.php -// $lang['general_word_queued'] --> application/language/english/general_words_lang.php -// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php -$lang['filter_qsl_verified'] = 'Verified'; - -// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php -// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -General Filters -___________________________________________________________________________________________ -*/ - -$lang['filter_general_from'] = 'From'; -$lang['filter_general_to'] = 'to'; -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)'; -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php - -$lang['filter_general_propagation'] = 'Propagation'; -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php - -/* -___________________________________________________________________________________________ -Actions -___________________________________________________________________________________________ -*/ - -$lang['filter_actions_w_selected'] = 'With selected: '; -$lang['filter_actions_update_f_callbook'] = 'Update from Callbook'; -$lang['filter_actions_queue_bureau'] = 'Queue Bureau'; -$lang['filter_actions_queue_direct'] = 'Queue Direct'; -$lang['filter_actions_queue_electronic'] = 'Queue Electronic'; -$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)'; -$lang['filter_actions_sent_direct'] = 'Sent (Direct)'; -$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)'; -$lang['filter_actions_not_sent'] = 'Not Sent'; -$lang['filter_actions_qsl_n_required'] = 'QSL Not Required'; -$lang['filter_actions_recv_bureau'] = 'Received (Bureau)'; -$lang['filter_actions_recv_direct'] = 'Received (Direct)'; -$lang['filter_actions_recv_electronic'] = 'Received (Electronic)'; -$lang['filter_actions_not_rcvd'] = "Not Received"; -$lang['filter_actions_create_adif'] = 'Create ADIF'; -$lang['filter_actions_print_label'] = 'Print Label'; -$lang['filter_actions_start_print_title'] = 'Print Labels'; -$lang['filter_actions_print_include_via'] = "Include Via"; -$lang['filter_actions_print_include_grid'] = 'Include Grid?'; -$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)"; -$lang['filter_actions_start_print'] = 'Start printing at?'; -$lang['filter_actions_print'] = 'Print'; -$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow'; -$lang['filter_actions_delete'] = 'Delete'; -$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?"; - - -/* -___________________________________________________________________________________________ -Options -___________________________________________________________________________________________ -*/ - -$lang['filter_options_title'] = 'Options for the Advanced Logbook'; -$lang['filter_options_column'] = 'Column'; -$lang['filter_options_show'] = 'Show'; -// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php -// $lang['general_word_name'] --> application/language/english/general_words_lang.php -// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php -// $lang['lotw_short'] --> application/language/english/lotw_lang.php -// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php -// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php -// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php -// $lang['options_save'] --> application/language/english/options_lang.php -$lang['filter_search_operator']='Search Operator'; -$lang['filter_options_close'] = 'Close'; diff --git a/application/language/turkish/general_words_lang.php b/application/language/turkish/general_words_lang.php deleted file mode 100644 index b26e86495a..0000000000 --- a/application/language/turkish/general_words_lang.php +++ /dev/null @@ -1,242 +0,0 @@ -here to do it!'; -$lang['dashboard_locations_warning'] = 'You have no station locations. Go here to create it!'; -$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go here to create it!'; - -$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.'; - -$lang['gen_add_to_contest'] = "Add QSOs to Contest"; -$lang['general_word_realtime'] = "Realtime"; -$lang['datatables_language'] = "en-GB"; diff --git a/application/language/turkish/gridsquares_lang.php b/application/language/turkish/gridsquares_lang.php deleted file mode 100644 index 5c6faed454..0000000000 --- a/application/language/turkish/gridsquares_lang.php +++ /dev/null @@ -1,37 +0,0 @@ - - - 403 Forbidden - - - -

Dizine erişim yasaktır.

- - - \ No newline at end of file diff --git a/application/language/turkish/lotw_lang.php b/application/language/turkish/lotw_lang.php deleted file mode 100644 index 3c519eb293..0000000000 --- a/application/language/turkish/lotw_lang.php +++ /dev/null @@ -1,66 +0,0 @@ -Raporu İndir<\'den yükleyin /a> Alan, QSO\'ları LoTW\'da onaylandı olarak işaretlemek için.'; -$lang['lotw_upload_type_must_be_adi'] = 'Günlük dosyaları .adi dosya tipine sahip olmalıdır'; - -$lang['lotw_pull_lotw_data_for_me'] = 'Benim için LoTW verilerini çek'; -$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; - -$lang['lotw_report_download_overview_helptext'] ='Wavelog, sizin için LoTW\'den bir rapor indirmek için kullanıcı profilinizde kayıtlı LoTW kullanıcı adını ve şifreyi kullanacak. Wavelog indirmeleri raporu, seçilen tarihten itibaren veya son LoTW onayınızdan (günlüğünüzden alınır) bu yana şimdiye kadarki tüm onaylara sahip olacaktır.'; - -// Düğmeler -$lang['lotw_btn_lotw_import'] = 'LoTW İçe Aktarma'; -$lang['lotw_btn_upload_certificate'] = 'Sertifika Yükle'; -$lang['lotw_btn_delete'] = 'Sil'; -$lang['lotw_btn_manual_sync'] = 'Manuel Senkronizasyon'; -$lang['lotw_btn_upload_file'] = 'Dosya Yükle'; -$lang['lotw_btn_import_matches'] = 'LoTW Eşleşmelerini İçe Aktar'; - -// P12 Metni Dışa Aktar -$lang['lotw_p12_export_step_one'] = 'TQSL & Çağrı İmzası Sertifikaları Sekmesine gidin'; -$lang['lotw_p12_export_step_two'] = 'İstenen Çağrı İşaretine sağ tıklayın'; -$lang['lotw_p12_export_step_three'] = '"Çağrı İmzası Sertifika Dosyasını Kaydet"e tıklayın ve şifre eklemeyin'; -$lang['lotw_p12_export_step_four'] = 'Aşağıdaki Dosyayı Yükleyin.'; - -$lang['lotw_confirmed'] = 'Bu QSO LoTW\'de onaylandı'; - -// LoTW Expiry -$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!'; -$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!'; - -// Lotw User -$lang['lotw_user'] = 'This station uses LoTW.'; -$lang['lotw_last_upload'] = 'Last upload'; - -// Upload folder permissions -$lang['lotw_upload_folder_permissions'] = 'Upload folder is not writable. Please contact your admin.'; diff --git a/application/language/turkish/menu_lang.php b/application/language/turkish/menu_lang.php deleted file mode 100644 index 816145cf59..0000000000 --- a/application/language/turkish/menu_lang.php +++ /dev/null @@ -1,121 +0,0 @@ - '587', if SSL is used -> '465'"; -$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; -$lang['options_smtp_password_hint'] = "The password to log in to the mail server."; -$lang['options_send_testmail'] = "Send Test-Mail"; -$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings."; -$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong."; -$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct."; - -$lang['options_oqrs'] = 'OQRS Options'; -$lang['options_global_text'] = 'Global text'; -$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.'; -$lang['options_grouped_search'] = 'Grouped search'; -$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.'; -$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results"; -$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table."; -$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.'; - -$lang['options_dxcluster'] = 'DXCluster'; -$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache'; -$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with DXClusterAPI or use a public one'; -$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache'; -$lang['options_dxcluster_settings'] = 'DXCluster'; -$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to '; -$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of'; -$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup'; -$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent'; -$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to '; -$lang['options_dxcluster_decont_changed_to']='de continent changed to '; -$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown'; - -$lang['options_version_dialog'] = "Version Info"; -$lang['options_version_dialog_close'] = "Close"; -$lang['options_version_dialog_dismiss'] = "Don't show again"; -$lang['options_version_dialog_settings'] = "Version Info Settings"; -$lang['options_version_dialog_header'] = "Version Info Header"; -$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog."; -$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to"; -$lang['options_version_dialog_mode'] = "Version Info Mode"; -$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes"; -$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text"; -$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text"; -$lang['options_version_dialog_mode_disabled'] = "Disabled"; -$lang['options_version_dialog_mode_hint'] = "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."; -$lang['options_version_dialog_custom_text'] = "Version Info Custom Text"; -$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog."; -$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to"; -$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!"; -$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again"; -$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user"; -$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users"; -$lang['options_version_dialog_show_all'] = "Show for all Users"; -$lang['options_version_dialog_hide_all'] = "Hide for all Users"; -$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload."; -$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users."; - -$lang['options_save'] = 'Save'; - -// Bands - -$lang['options_bands'] = "Bands"; -$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO."; -$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected."; -$lang['options_bands_create'] = "Create a band"; -$lang['options_bands_edit'] = "Edit Band"; -$lang['options_bands_activate_all'] = "Activate All"; -$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?"; -$lang['options_bands_deactivate_all'] = "Deactivate All"; -$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?"; -$lang['options_bands_ssb_qrg'] = "SSB QRG"; -$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)"; -$lang['options_bands_data_qrg'] = "DATA QRG"; -$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)"; -$lang['options_bands_cw_qrg'] = "CW QRG"; -$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)"; - -$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)"; -$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)"; -$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: "; - diff --git a/application/language/turkish/qslcard_lang.php b/application/language/turkish/qslcard_lang.php deleted file mode 100644 index 9e0fc6d766..0000000000 --- a/application/language/turkish/qslcard_lang.php +++ /dev/null @@ -1,39 +0,0 @@ -here."; -$lang['qso_simplefle_qso_data'] = "QSO Data"; -$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; -$lang['qso_simplefle_qso_list'] = "QSO List"; -$lang['qso_simplefle_qso_list_total'] = "Total"; -$lang['qso_simplefle_qso_date'] = "QSO Date"; -$lang['qso_simplefle_operator'] = "Operator"; -$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR"; -$lang['qso_simplefle_station_call_location'] = "Station Call/Location"; -$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new Station Location"; -$lang['qso_simplefle_utc_time'] = "Current UTC Time"; -$lang['qso_simplefle_enter_the_data'] = "Enter the Data"; -$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; -$lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Wavelog"; -$lang['qso_simplefle_clear'] = "Clear Logging Session"; -$lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; - -$lang['qso_simplefle_error_band'] = "Band is missing!"; -$lang['qso_simplefle_error_mode'] = "Mode is missing!"; -$lang['qso_simplefle_error_time'] = "Time is not set!"; -$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected"; -$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty"; -$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?"; -$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!"; -$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!"; -$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!"; -$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?"; -$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!"; -$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!"; -$lang['qso_simplefle_error_date'] = "Invalid date"; - -$lang['qso_simplefle_syntax_help_button'] = "Syntax Help"; -$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE"; -$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules."; -$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; -$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; -$lang['qso_simplefle_syntax_help_ln4'] = "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."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; -$lang['qso_simplefle_syntax_help_ln6'] = "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."; -$lang['qso_simplefle_syntax_help_ln7'] = "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."; -$lang['qso_simplefle_syntax_help_ln8'] = "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."; -$lang['qso_simplefle_syntax_help_ln9'] = "A full summary of all commands and the necessary syntax can be found in this article of our Wiki."; - -$lang['qso_simplefle_options'] = 'Options'; - diff --git a/application/language/turkish/station_lang.php b/application/language/turkish/station_lang.php deleted file mode 100644 index 3dd0382f3d..0000000000 --- a/application/language/turkish/station_lang.php +++ /dev/null @@ -1,120 +0,0 @@ -Station Location to select one.'; -$lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; -$lang['station_location_id'] = 'ID'; -$lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; -$lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; -$lang['station_location_power'] = 'Station Power (W)'; -$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; -$lang['station_location_emptylog'] = 'Empty Log'; -$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: '; -$lang['station_location_set_active'] = 'Set Active'; -$lang['station_location_active'] = 'Active Station'; -$lang['station_location_claim_ownership'] = 'Claim Ownership'; -$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?'; -$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile '; -$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?'; -$lang['station_location_dxcc'] = 'Station DXCC'; -$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland'; -$lang['station_location_dxcc_warning'] = "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."; -$lang['station_location_city'] = 'Station City'; -$lang['station_location_city_hint'] = 'Station city. For example: Inverness'; -$lang['station_location_state'] = 'Station State'; -$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.'; -$lang['station_location_county'] = 'Station County'; -$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; -$lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; -$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; -$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; -$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; -$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the SOTA Maps website."; -$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the GMA Map website."; -$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the POTA Map website."; -$lang['station_location_signature'] = "Signature"; -$lang['station_location_signature_name'] = "Signature Name"; -$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA).."; -$lang['station_location_signature_info'] = "Signature Information"; -$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357)."; -$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile'; -$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG"; -$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location."; -$lang['station_location_qrz_subscription'] = 'Subscription Required'; -$lang['station_location_qrz_hint'] = "Find your API key on the QRZ.com Logbook settings page"; -$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Upload'; -$lang['station_location_hrdlog_username'] = "HRDLog.net Username"; -$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign)."; -$lang['station_location_hrdlog_code'] = "HRDLog.net API Key"; -$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload"; -$lang['station_location_hrdlog_code_hint'] = "Create your API Code on HRDLog.net Userprofile page"; -$lang['station_location_qo100_hint'] = "Create your API key on your QO-100 Dx Club's profile page"; -$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload"; -$lang['station_location_oqrs_enabled'] = "OQRS Enabled"; -$lang['station_location_oqrs_email_alert'] = "OQRS Email alert"; -$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options."; -$lang['station_location_oqrs_text'] = "OQRS Text"; -$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing."; -$lang['station_location_ignore'] = "Ignore Clublog Upload"; -$lang['station_location_ignore_hint'] = "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"; -$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload'; - - diff --git a/application/language/turkish/statistics_lang.php b/application/language/turkish/statistics_lang.php deleted file mode 100644 index 71fc869872..0000000000 --- a/application/language/turkish/statistics_lang.php +++ /dev/null @@ -1,83 +0,0 @@ - Your furthest contact was with"; -$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; -$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "the distance was"; -$lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; -$lang['statistics_distances_qsos_with'] = "QSOs with"; -$lang['statistics_distances_and_band'] = "and band"; - -/* -* -* Timeline -* -*/ - -$lang['statistics_timeline'] = "Timeline"; - -/* -* -* Days with QSO -* -*/ - -$lang['statistics_days_with_qso'] = "Number of days with QSOs each year"; -$lang['statistics_days_with_qso_short'] = "Days with QSOs"; -$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log"; -$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!"; -$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)"; -$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log"; -$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)"; -$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; -$lang['statistics_dwq_no_current_streak'] = "No current streak found!"; - -/* -* -* Accumulated Stats -* -*/ - -$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; -$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; -$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; -$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; - -/* -* -* Timeplotter -* -*/ - -$lang['statistics_timeplotter_description'] = "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."; -$lang['statistics_timeplotter_contacts_plotted'] = "contacts were plotted"; /* sentence starts with counter - 'XXXX contacts were plotted' */ -$lang['statistics_timeplotter_chart_header'] = "Time Distribution"; -$lang['statistics_timeplotter_number_of_qsos'] = "Number of QSOs"; -$lang['statistics_timeplotter_callsigns_worked'] = "Callsign(s) worked (max 5)"; - diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.mo b/application/locale/bg_BG/LC_MESSAGES/messages.mo index 16319f4a8a..055208b381 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 4b9f5aafe7..32458ab9c7 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:12+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,243 +19,6961 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Изпратени" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Заявени" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "Бюро" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Директено" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "Чрез" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Получени" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" msgstr "" +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +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:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Режим" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Държава" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" msgstr "" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Обхват" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Честота" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" -msgstr "" - +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 #: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 msgid "Deleted DXCC" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: 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/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " +msgstr "" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " msgstr "" -#: application/views/dashboard/index.php:113 +#: 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:7 +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/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Местоположение на станцията" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:229 +#: 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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Дата" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Час" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Инициал" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "Разбивка на QSO-тата" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Година" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Месец" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Разбивка по държави" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Работени" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Потвърдени" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Необходими" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "QSL картички" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "USA окръг" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Състояние" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Сателит" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "CQ зона" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Сателит" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "От дата" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Нулиране на сесията на състезанието" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Регистриране на състезание" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Тип обмен" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Име на състезанието" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "Радио" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +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 +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:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Коментар" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Нулиране на QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Запазване на QSO" + +#: application/views/contesting/index.php:166 +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/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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +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 +#, 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Важно" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +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/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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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: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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Станция" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Редактирай QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Маркирайте QSL като изпратено (Бюро)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Маркирайте QSL като изпратено(Директно)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Маркирайте QSL получена (Бюро)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Маркирайте QSL получена (Директно)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Маркирайте QSL карта като поискана" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Маркирайте QSL картата като неизискваща" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Изтрий QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Да" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Не" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Местоположение" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Дата/Час" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "Днес не сте правили QSO; време е да включите радиото!" + +#: application/views/dashboard/index.php:105 +msgid "Attention: you need to set an active station location." +msgstr "Внимание: трябва да зададете местоположение на активната станция." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Дневник" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Бележки" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Вие използвате" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "дисково пространство за съхранение на QSL картички" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA референция" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA референция" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF референция" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +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:179 +msgid "Timezone" +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: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 "Избор за колона 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Избор за колона 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Избор за колона 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Избор за колона 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Избор за колона 5 (само за дневника)" + +#: 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: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: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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Честота (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Обхват (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Мощност на предавателя (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Посочете стойността на мощността във ватове. Въведете само цифри." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Например: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Например: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Например: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Например: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Например: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Например: Q03" + +#: 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 "Съдържанието на бележката се използва само в Wavelog и не се експортира в други услуги." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Метод" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Предложения" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL катичка" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "LoTW импорт" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Качване на сертификат" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Налични сертификати" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Дата на създаване" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Дата изтичане" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Изтекъл" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Валиден" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Не е синхронизиран" + +#: application/views/lotw_views/index.php:129 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "Трябва да качите някои LoTW p12 сертификати, за да използвате тази област." + +#: application/views/lotw_views/index.php:144 +msgid "Information" +msgstr "Информация" + +#: application/views/lotw_views/index.php:149 +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 "Качване на Logbook of the World .p12 сертификат" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Инструкции за експортиране на .p12 файл" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Отворете TQSL & отидете на раздела Callsign Certificates" + +#: 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 "Качи файлa" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create 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 "В момента нямате бележки, това е фантастичен начин за съхранение на данни като настройки на ATU, маяци и общи бележки за станции и е по-добре от хартия, тъй като не можете да ги загубите!" + +#: 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: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/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Редактиране на бележката" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +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 "Подробности за QSO" + +#: application/views/view_log/qso.php:29 +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 "Общо разстояние" + +#: 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:366 +msgid "QSL Info" +msgstr "QSL информация" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "QSL картичката е изпратена чрез бюрото" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "QSL картичката е изпратена директно" + +#: 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 "QSL картичката е получена директно" + +#: 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 "Това QSO беше потвърдено на" + +#: 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 "Качване на лице на QSL картичка" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Качване на изображения на QSL картичка" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Качване на гръб на QSL картичка" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Маркирайте получено QSL (електронно)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Маркирайте QSL карта като поискана (Бюро)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Маркирайте QSL карта като поискана(Директно)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.mo b/application/locale/cs_CZ/LC_MESSAGES/messages.mo index fea72135ac..202bc96415 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 59db41fc09..bcac58a9e8 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:12+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,246 +19,6963 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Odesláno" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "Ve frontě" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Vyžádáno" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Neplatné (Ignorováno)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Přímá" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "Přes" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Elektronická" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Přijato" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" msgstr "" +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "Mapa lokátorů" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "Lokátory" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "Potvrzené lokátory" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "Nepotvrzené lokátory" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +msgstr "Celkový počet odpracovaných lokátorů" + +#: application/controllers/Logbook.php:37 +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "Nebyly nalezeny žádné denníky. Musíte definovat denník! Udělejte to zde:" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "Logy stanice" + +#: application/controllers/Logbook.php:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Režim" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Země" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Stát" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" -msgstr "" +msgstr "Locátor" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" -msgstr "" +msgstr "Vzdálenost" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Pásmo" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Frekvence" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Operátor" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" +msgstr "Smazané DXCC" + +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" +msgstr "Tisk žádaných QSL" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: 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/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "Upravit" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "Smazat" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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 "Možnosti Wavelogu" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "Vzhled" + +#: 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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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 "Nastavení rádia" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "Upozornění na časový limit rádia změněno na " + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "E-mail" + +#: 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:7 +msgid "OQRS Options" +msgstr "OQRS možnosti" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "Možnosti OQRS byly uloženy." + +#: 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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Options.php:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" msgstr "" -#: application/views/dashboard/index.php:113 +#: 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/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Umístění stanice" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:229 +#: 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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "Statistiky" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "Kumulativní statistiky" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "Závody" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Datum" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Čas" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Značka" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "Počet QSO spojení" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Rok" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Měsíc" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Počet zemí" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Spojeno" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Potvrzeno" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Potřebuje se" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "QSL karty" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "eQSL karty" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "Značka" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +msgstr "Pásmo" + +#: 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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "Označení okresu USA" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +msgid "API Keys" +msgstr "API klíče" + +#: 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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Kopírovat do schránky" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Stav" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Satelit" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "Zobrazit" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +msgstr "Zálohování" + +#: 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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "Kontinent" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "Vzdálenosti" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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 "Výběr pásma" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +msgstr "" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "Roky" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Prozkoumejte logbook." + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "QSO" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "Jedinečné značky" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "Časová osa" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "CQ zóna" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "Dnes" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Šíření signálu" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelit" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Od data" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Resetovat závod" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Závodní deník" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Typ předávaného kódu" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Číslo spojení" + +#: 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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Název závodu" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "Rádio" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Výměna (S)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Výměna (R)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Komentář" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Smazat QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Uložit QSO" + +#: application/views/contesting/index.php:166 +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 "Lokátor" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Našeptávač značek" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Závodní deník" + +#: 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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Nastavení importu" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Nahraj soubor" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Důležité" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Deník musí být ve formátu .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Vybrat soubor" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Stáhni data z LoTW" + +#: 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 "Wavelog použije uživatelské jméno a heslo LoTW uložené ve vašem uživatelském profilu, aby vám stáhl datz LoTW.Stažen budu data od nastaveného datumu nebo od posledního stažení až do teď." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Import QSL z LoTW" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "Afrika" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "Antarktida" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "Asie" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "Evropa" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "Severní Amerika" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "Oceánie" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +msgstr "Jižní Amerika" + +#: 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 +msgid "Message" +msgstr "" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "Odchozí protokol" + +#: 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 "SMTP šifrování" + +#: 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 "Jméno odesílatele e-mailu" + +#: 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 "Emailová adresa" + +#: 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 "SMTP hostitel" + +#: 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 "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 "" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "SMTP uživatelské jméno" + +#: 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 "SMTP heslo" + +#: 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/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "Upozornění na časový limit rádia" + +#: 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 "Upozornění na časový limit rádia se používá na panelu vstupu QSO k upozornění na odpojení rozhraní rádia." + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "Toto číslo je v sekundách." + +#: 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 "Možnosti Wavelogu jsou globální nastavení používaná pro všechny uživatele instalace, která jsou přepsána, pokud je nastavení na úrovni uživatele." + +#: application/views/options/oqrs.php:38 +msgid "Global text" +msgstr "Globální text" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "Tento text je nepovinný text, který lze zobrazit na horní části stránky OQRS." + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "Seskupené vyhledávání" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "Když je tato možnost zapnutá, budou všechny stanice s aktivním OQRS vyhledávány najednou." + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "Rádia" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "Motiv" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "Globální volba motivu, která se používá, když uživatelé nejsou přihlášeni." + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "Oznámení na palubní desce" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "Tímto lze zakázat globální oznámení na palubní desce." + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "Mapa na palubní desce" + +#: application/views/options/appearance.php:76 +msgid "This allows the map on the dashboard to be disabled or placed on the right." +msgstr "Toto umožňuje zakázat mapu na palubní desce nebo ji umístit na pravou stranu." + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "Mapa v logbooku" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "Toto umožňuje zakázat mapu v logbooku." + +#: 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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Stanice" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Upravit QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Označit QSL odesláno (Bureau)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Označit QSL odesláno (Přímá)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Označit QSL přijato (Bureau)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Označit QSL přijato (Přímá)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Označit QSL kartu požadováno" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Označit QSL lístek není vyžadován" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Smazat QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Ano" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Ne" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "Správce" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Místo" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "Možnosti" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Datum/čas" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +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:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +msgstr "Graf času" + +#: 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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "lokátor" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "Celkový počet" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "Režim vývojáře" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "Přehled" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "Pokročilé zobrazení" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "Zobrazit QSL" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "Zobrazit eQSL" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "Živé QSO" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "Uložit QSO" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "Živé závodní logování" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "Uložit závodní log" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Poznámky" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "Analýza" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "Aktivované lokátory" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "Dny s QSO" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "Kontinenty" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "Diplomy" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "US Okresy" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "Globální nastavení" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "Režimy" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "Témata" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "Aktualizace souborů" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "Informace pro ladění" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "Přihlásit se" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Informace o účtu" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "ADIF import / export" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "DX Atlas export lokátorů" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "OQRS požadavky" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "Štítky" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "eQSL import / export" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "Hardwarové rozhraní" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "Nápověda" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "Fórum" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "Odhlásit se" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Je využito" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "místa pro QSL lístky" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA označení" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA označení" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF označení" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "POTA označení" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "Uživatelské jméno" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "Heslo" + +#: application/views/user/login.php:56 +msgid "Forgot your password?" +msgstr "Zapomněli jste heslo?" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "Vytvořit uživatelský účet" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "Upravit účet" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "Uživatelská role" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "Osobní informace" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "Jméno" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "Příjmení" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "Nastavení Wavelogu" + +#: application/views/user/edit.php:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Obecné" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "Styl" + +#: 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:179 +msgid "Timezone" +msgstr "Časové pásmo" + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "Formát data" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "Vyberte, jak chcete, aby byla data zobrazena při přihlášení do vašeho účtu." + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "Nastavení měření" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "Vyberte, v jakých jednotkách se budou zobrazovat vzdálenosti." + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Pole deníku" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Vybrat sloupec 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Vybrat sloupec 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Vybrat sloupec 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Vybrat sloupec 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Vybrat sloupec 5 (pouze pro deník)" + +#: 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 "Zobrazit profilový obrázek partnera z QSO záznamu z profilu qrz.com/hamqth.com v sekci protokolu QSO." + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "Prosím, nastavte své přihlašovací údaje pro qrz.com/hamqth.com v obecném konfiguračním souboru." + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "Automatické vyhledávání umístění." + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "Pokud je nastaveno, lokátor je získán na základě názvu umístění." + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "Automatické vyhledávání lokátoru a jména pro SOTA vrchol." + +#: 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 "Pokud je nastaveno, jméno a lokátor jsou získány z API a vyplněny do umístění a lokátoru." + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "Automatické vyhledávání lokátoru a jména pro WWFF referenci." + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "Automatické vyhledávání lokátoru a jména pro POTA park." + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "Hlavní menu" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "Zobrazovat poznámky v hlavním menu." + +#: 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: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 "Předchozí typ QSL" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "Vyberte typ QSL k zobrazení v sekci předchozích QSOs." + +#: 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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Výchozí pásma" + +#: 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 "Přihlašovací jméno Logbook of The World (LoTW)" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Heslo Logbook of The World (LoTW)" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "Uživatelské jméno eQSL.cc" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "Heslo eQSL.cc" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "Email nebo značka volacího znaku Club Logu" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "E-mail nebo značka volacího znaku, kterou používáte pro přihlášení do Club Logu" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Heslo Club Logu" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "Nahrávání stavu AMSAT" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "Nahrávání stavu SAT QSOs na" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "Mastodon server" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "URL Mastodon serveru" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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 "Uložit změny účtu" + +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "Obnovit heslo" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "Zde si můžete obnovit heslo." + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "Potvrzení hesla" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "Smazat uživatelský účet" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "Jste si jistí, že chcete smazat uživatelský účet" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "Ano, smazat tohoto uživatele" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "Ne, nevymazávat tohoto uživatele" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "Zapomenuté heslo?" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:694 +msgid "Previous Contacts" +msgstr "Předchozí spojení" + +#: 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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frekvence (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Pásmo (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Vysílací výkon (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Zadej výkon ve Wattech. Jsou povolen pouz čísla" + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Příklad: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Příklad: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Příklad: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Příklad: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Příklad: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Příklad: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Název satelitu" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Režim satelitu" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Obsah je užíván pouze Wavelogu a není exportován do dalších služeb." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Metoda" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Návrhy" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL karta" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "Město" + +#: 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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Import z LoTW" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Nahraj certifikát" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Dostupné certifikáty" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Datum vytvoření" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Datum vypršení" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Vypršel" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Platný" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Není synchronizováno" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "Informace" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Ruční synchronizace" + +#: 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 "Nahraj LoTW .p12 certifikát" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Instrukce k exportu souboru .p12" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Otevři TQSL & bež do záložky Callsign Certificates" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "pravé tlačítko myši na vyprané značce" + +#: 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 "Nahraj soubor níže." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Nahraj soubor" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Vytvoř poznámku" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Tvoje poznámky" + +#: 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 "V současné době nemáte žádné poznámky, jedná se o fantastický způsob ukládání dat, jako je nastavení tuneru, poslechu majáků a další. Je to lepší než papír, protože je nemůžete ztratit!" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Název" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Kategorie" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antény" + +#: 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 "Uložit poznámku" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Editovat poznámku" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Smazat poznámku" + +#: 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 "Detail spojení" + +#: application/views/view_log/qso.php:29 +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" + +#: 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:366 +msgid "QSL Info" +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 "Toto QSO bylo potvrzeno" + +#: 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 "Označit QSL přijato (Elektronicky)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Označit QSL kartu požadováno (Bureau)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Označit QSL kartu požadováno (Přímá)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 130625b6df..20bd5c3f55 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 fcd87c411a..80aaed1cba 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: wavelog-test\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 12:44\n" "Last-Translator: \n" "Language-Team: German\n" @@ -17,241 +17,7009 @@ msgstr "" "X-Crowdin-File: /gettext_po_test/pot/messages.pot\n" "X-Crowdin-File-ID: 66\n" -#: application/views/dashboard/index.php:4 +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Gesendet" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "In Warteschlange" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Angefragt" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Ungültig (Ignorieren)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "Büro" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Direkt" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Elektronisch" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Erhalten" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "QSO konnte nicht gefunden werden" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "bestätigt durch Diplommananger" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "bestätigt durch Cross-Check von DCL-Daten" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "Bestätigung ausstehend" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "nicht bestätigt" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "unbekannt" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "Planquadratkarte" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "Planquadrate" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "Planquadrate bestätigt" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "Unbestätigte Planquadrate" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +msgstr "Summe gearbeiteter Planquadrate" + +#: application/controllers/Logbook.php:37 +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "Keine Logbücher gefunden. Du muss ein Stationslogbuch anlegen! Mach es hier:" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "Stationslogbücher" + +#: application/controllers/Logbook.php:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 msgid "Mode" msgstr "Mode" -#: application/views/dashboard/index.php:5 -msgid "RSTS" -msgstr "RSTS" +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" -msgstr "RSTR" +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "" +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" msgstr "Land" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "IOTA" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "SOTA" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "WWFF" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "POTA" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" msgstr "Staat" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "Planquadrat" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "Distanz" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" msgstr "Band" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" msgstr "Frequenz" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" msgstr "Operator" -#: application/views/dashboard/index.php:18 -msgid "Name" -msgstr "Name" - +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 #: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 msgid "Deleted DXCC" msgstr "Gelöschtes DXCC" -#: application/views/dashboard/index.php:57 -msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" -msgstr "Du musst deine PHP-Version aktualisieren. Die minimale Version ist 7.4. Deine Version ist" +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" +msgstr "Druck angeforderter QSLs" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" -msgstr "Du musst deine Länderdaten erst aktualisieren. Klicke hier, um das zu tun:" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" +msgstr "Stations Setup" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" -msgstr "Länderdaten aktualisieren" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" +msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" -msgstr "Du hast noch keinen Stationsstandort angelegt. Klicke hier, um eine anzulegen:" +#: 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:428 +msgid "Error" +msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" -msgstr "Stations Setup" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" +msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" -msgstr "Du hast noch kein Stationslogbuch angelegt. Klicke hier, um eines anzulegen:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" +msgstr "" -#: application/views/dashboard/index.php:82 -#, 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/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" +msgstr "Erstellung Stationsstandort" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" -msgstr "Wichtig" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" +msgstr "Ausgeschaltet" -#: application/views/dashboard/index.php:86 -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/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "Setze als aktives Logbuch" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." -msgstr "Achtung: Sie müssen einen aktiven Stationsstandort festlegen." +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" +msgstr "Aktives Logbuch" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "Apfel" -msgstr[1] "Äpfel" +#: 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 "Bist du sicher, dass du das folgende Logbuch löschen willst? Du wirst alle Standorte, welche hier verknüpft sind mit einem anderen Logbuch verknüpfen müssen.: " -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" -msgstr "Rufzeichen" +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "Zeige die öffentl. Seite für das Logbuch: " -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." -msgstr "Für weitere Informationen, %s." +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " +msgstr "Bist du sicher, dass du den folgenden Stationsstandort zum aktiven Standort machen möchtest?: " + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "Aktivieren" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "Aktive Station" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "Bearbeiten" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "Lösche Log" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +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?" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "Kopieren" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "Löschen" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "Bist du sicher, dass du diesen Stationsstandort löschen willst?:" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "Es werden alle QSO an diesem Stationsstandort gelöscht!" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" -#: application/views/dashboard/index.php:112 -msgid "Click here" -msgstr "Klicke hier" +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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 "Wavelog Optionen" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "Erscheinungsbild" + +#: 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 "Optionen gespeichert" + +#: application/controllers/Options.php:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +msgstr "" + +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "Spotterkontinent geändert auf " + +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +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 " + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "Funkgeräteeinstellungen" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "Radio Timeout Warnung geändert zu " + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "E-Mail" + +#: application/controllers/Options.php:297 +msgid "The settings were saved successfully." +msgstr "Die Einstellungen wurden erfolgreich gespeichert." + +#: application/controllers/Options.php:299 +msgid "Something went wrong with saving the settings. Try again." +msgstr "Beim Speichern ist was schief gelaufen. Probiere es erneut." + +#: application/controllers/Options.php:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:7 +msgid "OQRS Options" +msgstr "OQRS Optionen" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "OQRS Einstellungen wurden gespeichert." -#: application/views/dashboard/index.php:113 +#: application/controllers/Options.php:373 +#: application/controllers/Options.php:378 +msgid "Testmail failed. Something went wrong." +msgstr "Die Testmail wurde nicht versandt. Da ist was schief gelaufen." + +#: application/controllers/Options.php:375 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "Testmail gesendet. E-Mail Einstellungen scheinen korrekt zu sein." + +#: application/controllers/Options.php:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" +msgstr "Versionsinfo Einstellungen" + +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "Überschrift der Versionsinfo geändert zu" + +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" +msgstr "Versionsinfo-Modus geändert zu" + +#: application/controllers/Options.php:413 +msgid "Version Info Custom Text saved!" +msgstr "Benutzerdefinierter Text der Versionsinfo gespeichert!" + +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" +msgstr "Versionsinfo wird wieder allen Benutzern angezeigt" + +#: application/controllers/Options.php:432 +msgid "Version Info will not be shown to any user" +msgstr "Versionsinfo wird keinem Benutzer angezeigt" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "Anzahl der Tage mit QSOs pro Jahr" + +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "Du hast heute %d Banane gegessen." -msgstr[1] "Du hast heute %d Bananen gegessen." +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." -msgstr "Du hast Themes ohne definierten Theme-Modus. Bitte den Administrator, die Themes zu bearbeiten." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" +msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" -msgstr "Mindestens eines Ihrer LoTW-Zertifikate ist abgelaufen!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" +msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" -msgstr "Mindestens eines Ihrer LoTW-Zertifikate läuft demnächst ab!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Stationsprofil" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " +msgstr "Bearbeite Stationsstandort: " + +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" +msgstr "Benutzerkonten" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" +msgstr "Benutzer" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" +msgstr "bearbeitet" + +#: application/controllers/Distances.php:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "QSOs mit" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "und Band" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "Statistik" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "Kumulierte Statistiken" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "Conteste" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "Aktualisiere Contest" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "Gearbeitete Planquadrate" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "Auf LoTW bestätigte Planquadrate" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "Per Papier QSL bestätigte Planquadrate" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "Aktivierte Planquadrate Karte" -#: application/views/dashboard/index.php:159 +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "Summe aktivierter Planquadrate" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 msgid "Date" msgstr "Datum" -#: application/views/dashboard/index.php:162 +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 msgid "Time" msgstr "Zeit" -#: application/views/dashboard/index.php:225 +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 msgid "QSOs Breakdown" msgstr "QSO Übersicht" -#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "Total" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" msgstr "Jahr" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" msgstr "Monat Tes" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" msgstr "Länder Übersicht" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" msgstr "Gearbeitet" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" msgstr "Bestätigt" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" msgstr "Benötigt" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" msgstr "QSL Karten" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" -msgstr "Heute" +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "eQSL Karten" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" -msgstr "Gesendet" +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" +msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" -msgstr "Erhalten" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" +msgstr "de-DE" -#: application/views/dashboard/index.php:290 -msgid "Requested" -msgstr "Angefragt" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" +msgstr "Suche Rufzeichen" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" -msgstr "Logbook of the World" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" +msgstr "Suche" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" -msgstr "eQSL Karten" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" +msgstr "Weiter" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" -msgstr "QSL Typ" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "Wähle Jahr" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "Wähle Contest" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "Wähle Zeitraum" + +#: application/views/cabrillo/index.php:6 +msgid "No contests were found for this station location!" +msgstr "Für diesen Stationsstandort wurden keine vorhandenen Contests gefunden!" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "Exportiere einen Contest im Cabrillo Format" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "Wähle einen Stationsstandort:" + +#: application/views/cabrillo/index.php:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "Rufzeichen" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "Kategorie Operator" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "Einzel Operator" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "Multi/Team Operator" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "Kategorie 'Assisted'" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "Nicht 'Assisted'" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "'Assisted'" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "Kategorie Band" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +msgstr "Alle" + +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +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)" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "Kategorie Mode" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "Kategorie Sendeleistung" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "Kategorie Station" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "Kategorie Sender" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "Kategorie Overlay" + +#: application/views/cabrillo/index.php:150 +msgid "Operators" +msgstr "Operatoren" + +#: application/views/cabrillo/index.php:155 +msgid "Soapbox" +msgstr "" + +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "Addresse" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "Addresse Stadt" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "Addresse Staat/Provinz" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "Addresse Postleitzahl" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "Addresse Land" + +#: application/views/cabrillo/index.php:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "Exportieren" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "Es wurden keine Contests in deinem Log gefunden." + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +msgstr "Bänder" + +#: application/views/bands/index.php:36 +msgid "Using the band list you can control which bands are shown when creating a new QSO." +msgstr "Mit dieser Bänder-Liste kannst du steuern, welche Bänder beim Erstellen eines neuen QSO angezeigt werden." + +#: application/views/bands/index.php:39 +msgid "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected." +msgstr "Aktive Bänder werden im QSO Band Auswahlfeld angezeigt, während inaktive Bänder ausgeblendet werden und nicht ausgewählt werden können." + +#: application/views/bands/index.php:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "US-County" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "Bandgruppe" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "Bearbeite Band" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "Erstelle ein neues Band" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "Schliessen" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "Warnung! Bist du dir sicher, dass du das folgende Band löschen willst: " + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "Warnung! Bist du sicher, dass du alle Bänder aktivieren willst?" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "Warnung! Bist du sicher, dass du alle Bänder deaktivieren willst?" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "Aktiviere Alle" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +msgstr "Deaktiviere Alle" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "Name des Bandes (z.B. 20m)" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "Name der Bandgruppe (z.B. hf, vhf, uhf, shf)" + +#: 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)" + +#: 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" + +#: 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" + +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "Speichern" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +msgid "API Keys" +msgstr "API-Schlüssel" + +#: 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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "In die Zwischenablage kopieren" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +msgid "Actions" +msgstr "Aktionen" + +#: 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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Satellit" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "Bestätigung" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "Kartieren" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "Lösche Markierungen" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "Breitengrad" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "Längengrad" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "Peilung" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "Anzahl der QSOs" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "Kontinent" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "# gearbeitete QSOs" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "Gearbeitete Entfernungen" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "QSO Daten" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
Your furthest contact was with" +msgstr "Kontakte wurden dargestellt.
Der weiteste Kontakt war" + +#: application/views/distances/index.php:10 +msgid "in gridsquare" +msgstr "im Planquadrat" + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr "Die Distanz betrug" + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "Gearbeitete(s) Rufzeichen (max 5 werden gezeigt)" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "Bandauswahl" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +msgstr "Anzeigen" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "Jahre" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "Anzahl der QSOs gearbeitet pro Jahr" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Logbuch untersuchen." + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "Eindeutige Rufzeichen" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "Zeitleiste" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "Diplom" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "End Datum" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "Zeige QSO's" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "Name" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "Filtern auf" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "Heute" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +msgstr "" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +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!" + +#: application/views/csv/index.php:92 application/views/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Propagation" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satellit" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Ab Datum" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "Bis Datum" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +msgstr "Nicht mehr anzeigen" + +#: 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 "Mit einem öffentlichen Link kannst du dieses Logbuch mit jedem über eine eigene Seite teilen. Dieser Linkzusatz darf jedoch nur Buchstaben & Zahlen enthalten." + +#: application/views/stationsetup/visitor.php:3 +msgid "Later it looks like this:" +msgstr "So wird der Link aussehen:" + +#: application/views/stationsetup/visitor.php:4 +msgid "[your slug]" +msgstr "[dein Link]" + +#: application/views/stationsetup/visitor.php:10 +msgid "Type in Public Slug choice" +msgstr "Gib ein, wie der öffentliche Link lauten soll:" + +#: application/views/stationsetup/visitor.php:17 +msgid "Visit Public Page" +msgstr "Besuche die öffentl. Seite" + +#: application/views/stationsetup/create.php:17 +msgid "Station Logbook Name" +msgstr "Stationslogbuch Name" + +#: application/views/stationsetup/create.php:19 +msgid "You can call a station logbook anything." +msgstr "Du kannst das Stationslogbuch völlig frei benennen." + +#: application/views/stationsetup/linkedlocations.php:13 +msgid "Select Available Station Locations" +msgstr "Wähle verfügbare Stationsstandorte" + +#: application/views/stationsetup/linkedlocations.php:25 +msgid "Link Location" +msgstr "Verknüpfe Standort" + +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "Station Name" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +msgstr "Station Rufzeichen" + +#: application/views/stationsetup/linkedlocations.php:34 +msgid "Unlink Station Location" +msgstr "Entferne Verknüpfung" + +#: 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 "Stationslogbücher ermöglichen es dir, Stationsstandorte zu gruppieren. Dadurch können Sie alle Standorte innerhalb einer Sitzung von den Logbuchbereichen bis zur Analyse sehen. Das ist besonders nützlich, wenn Sie an verschiedenen Standorten arbeiten, die jedoch zu derselben DXCC- oder VUCC-Zone gehören." + +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "Erstelle Stationslogbuch" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "Öffentl. Suche" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "Eingeschaltet" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +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:95 +#: application/views/station_profile/index.php:16 +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:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "Erstelle einen neuen Stationsstandort" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +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:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "Warnung" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +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:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "Bitte mache die Zuordnung in " + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "Wartung" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Beginne neue Contest-Sitzung" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Contest-Logging" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Austauschtyp" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "Nichts" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "(Lauf)-Nummer" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "Serial + Planquadrat" + +#: application/views/contesting/index.php:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "Operator Rufzeichen" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "Funkgerät" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "Nummer (S)" + +#: 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 "Planquadrat (S)" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "Nummer (R)" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "Planquadrat (R)" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Kommentar" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Setze QSO zurück" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Speichere QSO" + +#: application/views/contesting/index.php:166 +msgid "Copy received exchange to" +msgstr "Kopiere Exchange zu" + +#: application/views/contesting/index.php:168 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "Exchange wird nur kopiert, wenn der Wert Regeln für das Zielfeld erfüllt!" + +#: application/views/contesting/index.php:172 +msgid "Age" +msgstr "Alter" + +#: application/views/contesting/index.php:174 +msgid "RX Power (W)" +msgstr "Leistung Gegenstation (W)" + +#: application/views/contesting/index.php:175 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Rufzeichenvorschläge" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Contest-Logbuch" + +#: 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 "Mit dieser Contest-Liste kannst du steuern, welche Contests im Contest-Logging Fenster angezeigt werden." + +#: 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 "Aktivierte Contests können im Contest-Logging Fenster ausgewählt werden, wohingegen deaktivierte ausgeblendet und somit auch nicht auswählbar gemacht werden." + +#: 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:449 +msgid "Active" +msgstr "Aktiv" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "Nicht Aktiv" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 +msgid "Activate" +msgstr "Aktiviere" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +msgid "Deactivate" +msgstr "Deaktiviere" + +#: application/views/contesting/add.php:54 +msgid "DANGER!" +msgstr "ACHTUNG!" + +#: application/views/contesting/add.php:55 +msgid "Warning! Are you sure you want to delete the following contest: " +msgstr "Warnung! Bist du sicher den folgenden Contest zu löschen: " + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "Warnung! Bist du sicher, dass du ALLE Contests aktivieren willst?" + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "Warnung! Bist du sicher, dass du ALLE Contests deaktivieren willst?" + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +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" + +#: 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" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +msgstr "Erstelle" + +#: 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 "Wähle 'Aktiv' um den Contest in der Contest-Liste anzuzeigen" + +#: application/views/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Importoptionen" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Lade eine Datei hoch" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Wichtig" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Logdateien müssen den Dateityp .adi haben" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Datei wählen" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Lade LoTW-Daten für mich" + +#: 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 "Wavelog nutzt Benutzername und Passwort, welche in Deinem Benutzerprofil gespeichert sind, um einen Report vom LoTW zu laden. Der Report, den Wavelog lädt, enthält alle Bestätigungen seit dem gewählten Datum oder seit der letzen LoTW-Bestätigung (wird aus Deinem Log extrahiert) bis jetzt." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Importiere LoTW-Übereinstimmungen" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "Afrika" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "Antarktis" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "Asien" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "Europa" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "Nordamerika" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "Ozeanien" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +msgstr "Südamerika" + +#: application/views/bandmap/list.php:69 +msgid "DXCC-Status" +msgstr "" + +#: application/views/bandmap/list.php:74 +msgid "Not Confirmed" +msgstr "Nicht Bestätigt" + +#: application/views/bandmap/list.php:113 +msgid "Spotter" +msgstr "" + +#: application/views/bandmap/list.php:114 +msgid "Message" +msgstr "Nachricht" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "Protokoll für ausgehende E-Mails" + +#: application/views/options/email.php:50 +msgid "The protocol that will be used to send out emails." +msgstr "Das Protokoll, mit dem E-Mails versendet werden." + +#: application/views/options/email.php:54 +msgid "SMTP Encryption" +msgstr "SMTP Verschlüsselung" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "Wähle ob E-Mails mit TLS oder SSL versendet werden sollen." + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "E-Mail Absendername" + +#: application/views/options/email.php:67 +msgid "The email sender name, e.g. 'Wavelog'" +msgstr "Der Name des Absenders, z.B. 'Wavelog'" + +#: application/views/options/email.php:72 application/views/user/edit.php:58 +#: application/views/user/forgot_password.php:47 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: application/views/options/email.php:75 +msgid "The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgstr "Die E-Mail Adresse von der die Mails versendet werden, z.B. 'wavelog@example.com'" + +#: 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 "Der Hostname des Mailservers, z.B. 'mail.example.com' (ohne 'ssl://' or 'tls://')" + +#: 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 "Der SMTP Port des Mailservers, z.B. für TLS -> '587', für SSL -> '465'" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "SMTP Benutzername" + +#: 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 "Der Benutzername um sich am Mailserver anzumelden. Normalerweise ist dies die E-Mail Adresse." + +#: application/views/options/email.php:104 +msgid "SMTP Password" +msgstr "SMTP Passwort" + +#: application/views/options/email.php:107 +msgid "The password to log in to the mail server." +msgstr "Das Passwort um sich am Mailserver anzumelden." + +#: application/views/options/email.php:116 +msgid "Send Test-Mail" +msgstr "Sende eine Test-Mail" + +#: application/views/options/email.php:117 +msgid "The email will be sent to the address defined in your account settings." +msgstr "Die E-Mail wird an die Adresse versandt, welche in den Account-Einstellungen hinterlegt ist." + +#: application/views/options/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "Funkgeräte Timeout Warnung" + +#: 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 "Die Funkgeräte Timeout Warnung wird im QSOs Eingabepanel verwendet, um anzuzeigen, wenn die Funkgeräteschnittstelle getrennt wurde." + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "Die Angabe erfolgt in Sekunden." + +#: 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 Optionen sind globe 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." + +#: application/views/options/oqrs.php:38 +msgid "Global text" +msgstr "Globaler Text" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "Dies ist ein optionaler Text, der auf oben auf der OQRS Seite angezeigt werden kann." + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "Gruppierte Suche" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "Wenn aktiviert, werden alle Stationsstandorte auf einmal durchsucht." + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "Zeige den Name des Stationsstandorts in der gruppierten Suche" + +#: application/views/options/oqrs.php:58 +msgid "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table." +msgstr "Wenn die gruppierte Suche eingeschaltet ist, kannst du hier entscheiden, ob der Name des Stationsstandortes in der Ergebnistabelle gezeigt werden soll oder nicht." + +#: application/views/options/version_dialog.php:47 +msgid "Version Info Header" +msgstr "Überschrift der Versionsinfo" + +#: application/views/options/version_dialog.php:49 +msgid "You can change the header of the version info dialog." +msgstr "Du kannst die Überschrift des Versionsinfo-Fensters verändern." + +#: application/views/options/version_dialog.php:53 +msgid "Version Info Mode" +msgstr "Versionsinfo-Modus" + +#: application/views/options/version_dialog.php:57 +msgid "Only Release Notes" +msgstr "Nur Versionshinweise" + +#: application/views/options/version_dialog.php:60 +msgid "Only Custom Text" +msgstr "Nur benutzerdefinierter Text" + +#: application/views/options/version_dialog.php:63 +msgid "Release Notes and Custom Text" +msgstr "Versionshinweise und benutzerdefinierter Text" + +#: 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 "Die Versionsinfo wird jedem Benutzer angezeigt. Der Benutzer hat die Möglichkeit, den Dialog zu schließen, nachdem er ihn gelesen hat. Wähle aus, ob nur Versionshinweise (von GitHub abgerufen), nur benutzerdefinierter Text oder beides angezeigt werden soll." + +#: application/views/options/version_dialog.php:72 +msgid "Version Info Custom Text" +msgstr "Versionsinfo - Benutzerdefinierter Text" + +#: application/views/options/version_dialog.php:74 +msgid "This is the custom text which is shown in the dialog." +msgstr "Dies ist der benutzerdefinierte Text, der im Versionsinfo-Fenster angezeigt wird." + +#: application/views/options/version_dialog.php:84 +msgid "Show/Hide Version Info Dialog for all Users" +msgstr "Versionsinfo-Dialog für alle Benutzer ein-/ausblenden" + +#: application/views/options/version_dialog.php:97 +msgid "Show for all Users" +msgstr "Allen Benutzern anzeigen" + +#: application/views/options/version_dialog.php:99 +msgid "This will show the version dialog automatically to all users on their next page reload." +msgstr "Dies zeigt den Versionsdialog automatisch allen Benutzern bei der nächsten Seiten-Aktualisierung an." + +#: application/views/options/version_dialog.php:104 +msgid "Hide for all Users" +msgstr "Allen Benutzern ausblenden" + +#: application/views/options/version_dialog.php:106 +msgid "This will deactivate the automatic popup of the version dialog for all users." +msgstr "Dies deaktiviert das automatische Einblenden des Versionsdialogs für alle Benutzer." + +#: application/views/options/sidebar.php:5 +msgid "Radios" +msgstr "Funkgeräte" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +msgstr "Versionsinfo" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "Thema" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "Globales Thema. Dies wird verwendet, wenn keine Benutzer angemeldet sind." + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "Dashboard Benachrichtigungsbanner" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "Dies ermöglicht es, die globalen Benachrichtigungsbanner auf dem Dashboard zu deaktivieren." + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "Dashboard Karte" + +#: application/views/options/appearance.php:76 +msgid "This allows the map on the dashboard to be disabled or placed on the right." +msgstr "Dies erlaubt es, die Karte auf dem Dashboard rechts anzuzeigen oder zu deaktivieren." + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "Logbook Karte" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "Dies erlaubt, die Karte im Logbuch zu deaktivieren." + +#: application/views/options/appearance.php:89 +msgid "Public Maps" +msgstr "Öffentliche Karten" + +#: 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 "Dies erlaubt die Karten auf der öffentlichen Seite zu deaktivieren. Dies betrifft die Haupt-Karte, als auch die Planquadrat-Karte." + +#: application/views/options/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "Provider des DXClusterCache" + +#: 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:39 +msgid "DXClusterAPI" +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 "Maximales Alter bis zu dem Spots berücksichtigt werden" + +#: 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 "Das Alter von Spots in Minuten, welche im Bandplan/Lookup berücksichtigt werden" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "Nur Spots berücksichtigen, die in folgendem Kontinent erfasst wurden" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "Nur Spots von Spottern dieses Kontinents werden angezeigt" + +#: application/views/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "Exportiere dein Logbuch als KML Datei um diese in Google Earth zu benutzen." + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "Nur QSO mit einem definierten Planquadrat werden auch exportiert!" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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 "Keine bevorstehenden Aktivierungen gefunden. Bitte später noch einmal vorbeischauen." + +#: application/views/components/hamsat/table.php:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "QSO bearbeiten" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Markiere QSL gesendet (Büro)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Markiere QSL gesendet (Direkt)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Markiere QSL erhalten (Büro)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Markiere QSL erhalten (Direkt)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Markiere QSL Karte als angefragt" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Markiere QSL Karte als nicht notwendig" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "Nachschlagen auf QRZ.com" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "Nachschlagen auf HamQTH" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "QSO Löschen" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "Von" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "bis" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "- Kein - (für z.B. /MM, /AM)" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "Ausbreitungsart" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "QSL gesendet" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Ja" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Nein" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "QSL erhalten" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "Verifiziert" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "QSL-Send. Methode" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "QSL-Empf. Methode" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "LoTW gesendet" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "LoTW erhalten" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "eQSL gesendet" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "eQSL erhalten" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "QSL Bilder" + +#: application/views/logbookadvanced/index.php:386 +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:389 +msgid "With selected: " +msgstr "Bei Markierten: " + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "Aktualisieren aus dem Callbook" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "Angefordert (Büro)" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "Angefordert (Direkt)" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "Angefordert (Elektronisch)" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "Gesendet (Büro)" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "Gesendet (Direkt)" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "Gesendet (Elektronisch)" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "Nicht gesendet" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "QSL nicht erforderlich" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "Nicht erhalten" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "Erhalten (Büro)" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "Erhalten (Direkt)" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "Erhalten (Elektronisch)" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "Erstelle ADIF" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "Label drucken" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "QSL Präsentation" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "Schnellsuche in Markierten: " + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "Suche DXCC" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "Suche Staat" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "Suche Planquadrat" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "Suche CQ Zone" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "Suche Mode" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "Suche Band" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "Suche IOTA" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "Suche SOTA" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "Suche POTA" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "Suche WWFF" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "Schnellfilter" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "QSL Filter" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "Filter" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "# Resultate" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Standort" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "Karte" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "Optionen" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Datum/Uhrzeit" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "Mein Refs" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "Spalte" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "Zurück" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "Weiter" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "Mit Planquadrat?" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "Druck starten bei?" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "Drucken" + +#: 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:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "Du musst deine PHP-Version aktualisieren. Die minimale Version ist 7.4. Deine Version ist" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +msgid "Attention: you need to set an active station location." +msgstr "Achtung: Sie müssen einen aktiven Stationsstandort festlegen." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "Du hast Themes ohne definierten Theme-Modus. Bitte den Administrator, die Themes zu bearbeiten." + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "Mindestens eines Ihrer LoTW-Zertifikate ist abgelaufen!" + +#: application/views/dashboard/index.php:126 +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:290 +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:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +msgid "QSOs marked" +msgstr "QSO's markiert" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +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" + +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "ADIF Importiert" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "Yay, Datei importiert!" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "Die ADIF Datei wurde importiert." + +#: 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 "ADIF Fehler" + +#: 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." + +#: application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "Die Log Datei 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össe für Uploads beträgt " + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "Wähle Stationsstandort" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "QSOs zu Contest hinzufügen" + +#: application/views/adif/import.php:71 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "ADIF Datei" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "Doppelte QSO hochladen" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "Markiere hochgeladene QSO 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 +msgid "Select if ADIF being imported does not contain this information." +msgstr "Wähle dies aus, wenn die hochgeladene ADIF-Datei diese Information nicht enthält." + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "Markiere hochgeladene QSO 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" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "Markiere hochgeladene QSO 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" + +#: application/views/adif/import.php:135 +msgid "If not selected, Wavelog will attempt to determine DXCC information automatically." +msgstr "Wenn diese Option nicht ausgewählt ist, wird Wavelog versuchen die DXCC Informationen automatisch zu ermitteln." + +#: 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" + +#: application/views/adif/import.php:152 +#: application/views/interface_assets/footer.php:22 +msgid "DANGER" +msgstr "GEFAHR" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "Ignoriere das Stations Rufzeichen beim Import" + +#: application/views/adif/import.php:154 +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, wirdWavelog versuchen alle QSO hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort zusammenpassen." + +#: application/views/adif/import.php:158 application/views/adif/import.php:273 +msgid "Upload" +msgstr "Hochladen" + +#: application/views/adif/import.php:165 +msgid "Take your logbook file anywhere!" +msgstr "Exportiere deine Logs überall hin!" + +#: 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 "Deine ADIF Logbücher zu exportieren bietet dir die Möglichkeite diese zum Beispiel in Drittanbieter Software (z.B. LoTW) einzubinden oder sie einfach nur als Backup zu speichern." + +#: application/views/adif/import.php:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "Markiere die exportierten QSO als 'zu LoTW hochgeladen'" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "Markiere die exportierten QSO als 'zu LoTW nicht hochgeladen'" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "Exportiere QSO's" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "Exportiere nur Satelliten QSO" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "Exportiere ALLE Satelliten QSO" + +#: 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." + +#: application/views/adif/import.php:220 +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!" + +#: application/views/adif/import.php:228 +msgid "Mark QSOs as exported to LoTW" +msgstr "Markiere die QSO als 'zu LoTW hochgeladen'" + +#: 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 "Importiere nur DOK Informationen 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 DCL nicht bestätig sind." + +#: 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 "Wenn aktiviert, wird Wavelog den existierenden DOK mit dem DOK aus dem DCL überschreiben." + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "Ignoriere QSOs, die nicht eindeutig zugeordnet werden können." + +#: 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/dcl_success.php:12 +msgid "Results of DCL DOK Update" +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." + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "Keine QSOs gefunden, die aktualisiert werden konnten." + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "Aktualisierte QSOs" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "Ignorierte QSOs" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "Nicht gefundene QSOs" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +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" + +#: 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/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 "Exportiere dein Logbuch nach DX Atlas um gearbeitete und bestätigte Planquadrate anzuzeigen." + +#: application/views/timeplotter/index.php:2 +msgid "contacts were plotted" +msgstr "Kontakte wurden geplotted" + +#: application/views/timeplotter/index.php:3 +msgid "Time Distribution" +msgstr "Uhrzeit Verteilung" + +#: application/views/timeplotter/index.php:6 +msgid "Callsign(s) worked (max 5)" +msgstr "gearbeitete Rufzeichen (max 5)" + +#: application/views/timeplotter/index.php:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +msgstr "Zeitplotter" + +#: 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 "Der Zeitplotter wird verwendet, um Ihr Logbuch zu analysieren und herauszufinden, zu welchen Uhrzeiten Sie bestimmte CQ-Zonen oder DXCC-Länder auf einem ausgewählten Band gearbeitet haben." + +#: application/views/accumulate/index.php:2 +msgid "Accumulated Number of DXCCs worked" +msgstr "Kumulierte Statistik gearbeiteter DXCC" + +#: application/views/accumulate/index.php:3 +msgid "Accumulated Number of States worked" +msgstr "Kumulierte Statistik gearbeiteter US Staaten" + +#: application/views/accumulate/index.php:4 +msgid "Accumulated Number of IOTAs worked" +msgstr "Kumulierte Statistik gearbeiteter IOTA" + +#: application/views/accumulate/index.php:5 +msgid "Accumulated Number of CQ Zones worked" +msgstr "Kumulierte Statistik gearbeiteter CQ Zonen" + +#: application/views/accumulate/index.php:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "jährlich" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "monatlich" + +#: application/views/accumulate/index.php:75 +msgid "Period" +msgstr "Zeitraum" + +#: 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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "Abbrechen" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "Achtung" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +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:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "Farben" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "Gearbeitet, nicht bestätigt" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "Nicht gearbeitet" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "Zurücksetzen" + +#: application/views/interface_assets/footer.php:608 +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 "Stoppe hier für einen Moment. Das von dir gewählte DXCC ist abgelaufen und nicht mehr gültig. Überprüfe, welches das richtige DXCC für den Standort der Station ist. Als Beispiel: Deutschland ist nicht mehr 'Germany' sondern 'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese Warnung." + +#: application/views/interface_assets/footer.php:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "Planquadrate" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "Summe" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "Entwickler-Modus" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Logbuch" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "Übersicht" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "Erweitert" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "QSL Ansicht" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "eQSL Ansicht" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "Zeitversetztes QSO" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "Zeitversetztes Contest Logging" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Notizen" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "Analysen" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "Aktivierte Planquadrate" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "Planquadrat-Aktivierer" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "Tage mit QSOs" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "Kontinente" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "Diplome" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "Kanada" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "Deutschland" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "Großbritannien" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "Schweiz" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "SAT Timer" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "Globale Optionen" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "Modi" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "Satelliten" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "Länderdaten aktualisieren" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "Debug Informationen" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "Logge/Suche Call" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "Logge" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "Anmeldung" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Benutzerkonto" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "Andere Export Optionen" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "DX Atlas Planquadrat Export" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "OQRS Anforderungen" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "Etiketten" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "Drittanbieter Dienste" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "HRDLog Logbuch" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "QRZ Logbuch" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "Hardware-Schnittstellen" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "Hilfe" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "Wähle einen Stationsstandort" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Du benutzt" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "an Speicherplatz, um QSL-Karteninformationen zu speichern" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "Station Rufzeichen. Zum Beispiel: HB9HIL/P" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "Station Sendeleistung (W)" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +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 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "Nichts" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "Station Stadt" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +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 +#, 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 +msgid "click here" +msgstr "klicke hier" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "Station Planquadrat" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "Orte mein Planquadrat" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +msgid "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88." +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA Referenznummer" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +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 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA Referenznummer" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF Referenznummer" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "POTA Referenznummer(n)" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "Signatur Bezeichnung" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +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 +msgid "Signature Information" +msgstr "Signatur Information" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "Signatur/Referenz Information der Station (z.B. DA/NW-357)." + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +msgid "The QTH Nickname which is configured in your eQSL Profile" +msgstr "Der 'QTH Nickname' wie er in deinem eQSL Profil konfiguriert ist." + +#: application/views/station_profile/create.php:182 +#: application/views/station_profile/edit.php:286 +msgid "Default QSLMSG" +msgstr "Standard QSLMSG" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +msgid "Define a default message that will be populated and sent for each QSO for this station location." +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 +msgid "Ignore Clublog Upload" +msgstr "Ignoriere Clublog-Upload" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 "Wenn aktiviert, werden die QSOs, die von diesem Standort gemacht wurden, beim Clublog-Upload ignoriert.
Sofern das Feld \"von allein\" auf 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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "HRDLog.net Benutzername" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "HRDLog.net Logbuch Echtzeit Upload" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "Abonnement erforderlich" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "QRZ.com Logbuch Upload" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "QO-100 Dx Club Echtzeit Upload" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "OQRS aktivieren" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "OQRS Email Benachrichtigung" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +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:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +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:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "Aktualisiere" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "Zonen" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +msgstr "Signaturen" + +#: application/views/dayswithqso/index.php:25 +msgid "Days" +msgstr "Tage" + +#: application/views/dayswithqso/index.php:37 +msgid "Longest streak with QSOs in the log" +msgstr "Längste Serie mit QSOs im Logbuch" + +#: application/views/dayswithqso/index.php:38 +msgid "A maximum of the 10 longest streaks are shown!" +msgstr "Es werden maximal die 10 längsten Serien angezeigt!" + +#: application/views/dayswithqso/index.php:56 +msgid "Streak (continuous days with QSOs)" +msgstr "Serie (fortlaufende Tage mit QSOs)" + +#: application/views/dayswithqso/index.php:57 +#: application/views/dayswithqso/index.php:85 +#: application/views/dayswithqso/index.php:107 +msgid "Start Date" +msgstr "Start Datum" + +#: 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 "Aktuelle Serie mit QSOs im Logbuch" + +#: application/views/dayswithqso/index.php:84 +#: application/views/dayswithqso/index.php:106 +msgid "Current streak (continuous days with QSOs)" +msgstr "Aktuelle Serie (fortlaufende Tage mit QSOs)" + +#: 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 "Wenn Sie heute ein QSO machen, können Sie Ihre Serie verlängern... Andernfalls wird Ihre aktuelle Serie unterbrochen!" + +#: application/views/dayswithqso/index.php:122 +msgid "No current streak found!" +msgstr "Keine aktuelle Serie gefunden!" + +#: 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:8 +msgid "Email settings are incorrect." +msgstr "E-Mail Einstellungen sind nicht korrekt." + +#: 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 "Benutzer Liste" + +#: 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:48 +msgid "E-mail" +msgstr "E-Mail" + +#: 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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "Benutzername" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "Passwort" + +#: application/views/user/login.php:56 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "Benutzerkonto anlegen" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "Benutzerkonto editieren" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "Generelle Informationen" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "Benutzerrolle" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "Informationen" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "Vorname" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "Nachname" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "Wavelog Einstellungen" + +#: application/views/user/edit.php:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Allgemeines" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +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" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "Wähle, wie Datumsfelder angezeigt werden sollen, wenn du eingeloggt bist." + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "Entfernungsformat" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "Wähle, in welcher Einheit Entfernungen angezeigt werden sollen." + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Logbuchfelder" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Wähle Spalte 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Wähle Spalte 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Wähle Spalte 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Wähle Spalte 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Wähle Spalte 5 (nur für Logbuch)" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "QSO-Logging Optionen" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "Logge Endzeiten für QSOs separat" + +#: 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 "Wenn aktiviert, werden QSO Endzeiten separat erfasst. Falls nicht, ist die QSO Endzeit gleich der Startzeit." + +#: 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 "Zeige das Profilbild des QSO-Partners aus seinem qrz.com/hamqth.com Profil in der QSO Loggen Sektion." + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "Bitte qrz.com/hamqth.com Zugangsdaten in der Basiskonfigurationsdatei ablegen." + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "Automatische Ermittlung der Lokation." + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "Wenn aktiviert, wird das Planquadrat basierend auf der Lokation ermittelt." + +#: 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." + +#: 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 "Wenn aktiviert, werden Name und Planquadrat über die API ermittelt und gesetzt." + +#: 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 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." + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "Menü Optionen" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "Zeige Notizen im Hauptmenü" + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "Quicklog Feld" + +#: application/views/user/edit.php:433 +msgid "With this feature, you can log callsigns using the search field in the header." +msgstr "Mit dieser Option kannst du Rufzeichen auch direkt aus dem Suchfeld in der Menüleiste heraus loggen." + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "Quicklog - Aktion mit Enter Taste" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "Logge Rufzeichen" + +#: application/views/user/edit.php:443 +msgid "What action should be performed when Enter is pressed in the quicklog field?" +msgstr "Welche Aktion soll ausgeführt werden, wenn Enter gedrückt wird?" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "Karten Einstellungen" + +#: 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 "QSO (standardmässig)" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "QSO (bestätigte)" + +#: 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 "QSL Typ der vorherigen QSOs" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "Wähle den QSL-Typ für die Anzeige der bereits getätigten QSOs." + +#: application/views/user/edit.php:576 +msgid "Show Reference Fields on QSO Tab" +msgstr "Zeige Referenzen auf QSO-Reiter" + +#: application/views/user/edit.php:580 +msgid "The enabled items will be shown on the QSO tab rather than the General tab." +msgstr "Die aktivierten Elemente werden auf dem QSO-Reiter statt des allgemeinen Reiters angezeigt." + +#: application/views/user/edit.php:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +msgstr "" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "Standardwerte / Favoriten" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "Einstellung für Standardband und -bestätigungsmethode" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "Standardband" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "Standard QSL-Methoden" + +#: application/views/user/edit.php:697 +msgid "Third Party Services" +msgstr "Externe Dienste" + +#: application/views/user/edit.php:708 +msgid "Logbook of The World (LoTW) Username" +msgstr "Logbook of The World (LoTW) Benutzername" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Logbook of The World (LoTW) Passwort" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "eQSL.cc Benutzername" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "eQSL.cc Passwort" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "Club Log Email/Rufzeichen" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "Die Emailadresse oder Rufzeichen, das für den Club Log Login verwendet wird" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Club Log Passwort" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: 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 "Status von SAT QSOs hochladen auf" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "URL des Mastodonservers" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "Experimentell" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "Winkeyer Features Eingeschaltet" + +#: 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 "Zeige nur Überflüge an, die gearbeitet werden können" + +#: 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 "Wenn aktiviert, werden nur sichtbare Überflüge basierend auf dem Locator des hams.at Profils angezeigt. Dazu muss der Private Feed Key konfiguriert sein." + +#: application/views/user/edit.php:873 +msgid "Save Account" +msgstr "Speichere Kontoänderungen" + +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "Passwort zurücksetzen" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "Du kannst dein Passwort hier zurücksetzen." + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "Bestätige Passwort" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "Benutzerkonto löschen" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "Bist du sicher, dass du das Benutzerkonto löschen willst" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "Ja, Benutzerkonto löschen" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "Nein, Benutzerkonto nicht löschen" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "Passwort vergessen?" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:694 +msgid "Previous Contacts" +msgstr "Vorherige Kontakte" + +#: application/views/qso/index.php:6 +msgid "times worked before" +msgstr "mal vorher gearbeitet" + +#: application/views/qso/index.php:7 +msgid "Not worked before" +msgstr "Noch nicht gearbeitet" + +#: application/views/qso/index.php:33 +msgid "Sat" +msgstr "" + +#: application/views/qso/index.php:48 +msgid "Add Band/Mode to Favs" +msgstr "Band/Mode zu Favoriten hinzufügen" + +#: application/views/qso/index.php:69 +msgid "Time on" +msgstr "Startzeit" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "Endzeit" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frequenz (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Sendeleistung (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Gib die Ausgangsleistung in Watt an. Erfasse nur Zahlen bei der Eingabe." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Zum Beispiel: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Zum Beispiel: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Zum Beispiel: PA-0150. Mehrere Werte erlaubt." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Zum Beispiel: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Zum Beispiel: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Zum Beispiel: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Satellit" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Satellitenmodus" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Notizeninhalt wird nur innerhalb von Wavelog genutzt und nicht an andere Dienste weitergegeben." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Methode" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "Dieser Notizeninhalt wird an QSL Services wie eqsl.cc exportiert." + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "Setze die eQSL Nachricht auf den Standardtext zurück." + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "Auf Standardwerte zurücksetzen" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Vorschläge" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "Profilbild" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "Es werden maximal 5 Kontakte angezeigt." + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "Minimale Anzahl" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "Zähler" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "Zeige Karte" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "Einfaches Fast Log Entry (FLE)" + +#: application/views/simplefle/index.php:13 +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' oder einfach 'FLE' ist ein System um QSO sehr schnell und effizient zu loggen. Aufgrund seiner Syntax sind nur minimale Eingaben erforderlich, um mit möglichst geringem Aufwand viele QSOs zu erfassen." + +#: application/views/simplefle/index.php:14 +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 wurde ursprünglich von DF3CB geschrieben. Auf seiner Website bietet er ein Programm für Windows an. Simple FLE wurde von OK2CQR auf Basis des FLE von DF3CB geschrieben und bietet eine Webapplikation zum Erfassen von QSOs." + +#: application/views/simplefle/index.php:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "Syntax Hilfe" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "Syntax für FLE" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "Schliesse und Lade Beispiel Daten" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "Band fehlt!" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "Mode fehlt!" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "Zeit nicht gesetzt!" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "Ungültiges Datum" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "Stationsstandort nicht ausgewählt" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "'Operator' Feld ist leer" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "Warnung! Willst du wirklich alles zurücksetzen?" + +#: application/views/simplefle/index.php:31 +msgid "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!" +msgstr "Warnung! Du kannst die QSO Liste nicht loggen, da bei manchen QSO das Band und/oder der Mode fehlt!" + +#: application/views/simplefle/index.php:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "Warnung! Du kannst die QSO Liste nicht loggen, da bei manchen QSO die Zeit fehlt!" + +#: application/views/simplefle/index.php:33 +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!" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "Bist du dir sicher, dass du diese QSO loggen und die Eingabe zurücksetzen willst?" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "QSO geloggt!" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "Die QSO wurden erfolgreich im Logbuch gespeichert!" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "Was ist das?" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "QSO Datum" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "Wenn du kein Datum auswählst, wird das heutige Datum verwendet." + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "Aktuelle UTC Zeit" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "Stationsstandort" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "Die Ref. kann entweder SOTA, IOTA, POTA oder WWFF sein." + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "Aktualisiere QSO Liste" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "Speichere in Wavelog" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +msgstr "Lösche QSO Daten" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "Bevor du ein QSO loggst, beachte bitte die grundlegenden Regeln." + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "- Jedes neue QSO sollte in einer neuen Zeile stehen." + +#: application/views/simplefle/syntax_help.php:3 +msgid "- On each new line, only write data that has changed from the previous QSO." +msgstr "- In jeder neuen Zeile schreibst du nur Daten, die sich vom vorherigen QSO geändert haben." + +#: 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 "Um zu beginnen, stelle sicher, dass du die Felder auf der linken Seite bereits mit Datum, Stationsrufzeichen/-standort und Rufzeichen des Operators ausgefüllt hast. Die wichtigsten Daten umfassen das Band (oder QRG in MHz, z.B. '7.145'), Mode und Zeit. Nach der Zeit gibst du das erste QSO an, was im wesentlichen das Rufzeichen ist." + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "Zum Beispiel ein QSO um 21:34 Uhr (UTC) mit 4W7EST auf 20m SSB." + +#: application/views/simplefle/syntax_help.php:10 +msgid "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO." +msgstr "Wenn du keine RST-Informationen angibst, verwendet die Syntax 59 (599 für Daten). Unser nächstes QSO war nicht auf beiden Seiten 59, also geben wir die Informationen zuerst mit gesendeter RST an. Es war 2 Minuten später als das erste QSO." + +#: 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 "Das erste QSO war um 21:34 Uhr, und das zweite 2 Minuten später um 21:36 Uhr. Wir schreiben '6' für die geänderte Minute, da dies die einzige geänderte Information ist. Die Eingaben zum Band und Mode haben sich nicht geändert, daher entfallen diese Daten hier." + +#: 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 "Für unser nächstes QSO um 21:40 Uhr am 14.05.2021 haben wir das Band auf 40m geändert, sind aber immer noch auf SSB. Wenn keine RST-Informationen angegeben sind, verwendet die Syntax bei jedem neuen QSO 59. Daher können wir ein weiteres QSO hinzufügen welches um die exakt selbe Zeit zwei Tage später stattfand. Das Datum muss im Format YYYY-MM-DD eingegeben werden." + +#: 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 "" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "Exportiere angeforderte QSL-Karten für den Druck" + +#: 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 "Hier können Sie angeforderte QSL-Karten als CSV- oder ADIF-Dateien für den Druck exportieren und sie optional als gesendet markieren." + +#: 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 "Angeforderte QSL-Karten sind alle QSOs mit dem Wert 'Angefordert' oder 'In der Warteschlange' in dem Feld 'QSL gesendet'." + +#: application/views/qslprint/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "Sende Methode" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "Zur Warteschlange hinzufügen" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +msgstr "Es wurden keine zusätzlichen QSO's gefunden. Das bedeutet, dass diese wahrscheinlich schon in der Warteschlange stehen." + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "Markieren als gesendet" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "Entfernen" + +#: application/views/qslprint/qslprint.php:67 +msgid "Mark selected QSOs as printed" +msgstr "Markiere die ausgewählten QSOs als gedruckt" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "Entferne markierte QSOs aus der Warteschlange" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "Exportiere angefragte QSLs als CSV Datei" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "Exportiere angefragte QSLs als ADIF Datei" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "Markiere requested QSLs als gesendet" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "Es wurden keine QSLs zum drucken gefunden!" + +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +msgstr "Diplom Info" + +#: 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 "SOTA (Summits On The Air) ist ein Auszeichnungsschema für Funkamateure, das den portablen Betrieb in bergigen Gebieten fördert." + +#: 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 "Es ist in fast hundert Ländern weltweit voll verfügbar. Jedes Land hat seine eigene Vereinigung, die die anerkannten SOTA-Gipfel innerhalb dieser Vereinigung definiert. Jeder Gipfel verdient den Aktivierenden und Verfolgenden eine Punktzahl, die sich auf die Höhe des Gipfels bezieht. Zertifikate sind für verschiedene Punktzahlen erhältlich und führen zu den renommierten Trophäen 'Mountain Goat' und 'Shack Sloth'. Eine Ehrenrolle für Aktivierende und Verfolgende wird in der SOTA-Online-Datenbank geführt." + +#: application/views/awards/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +msgstr "" + +#: application/views/awards/sig/index.php:7 +msgid "SIG Information" +msgstr "SIG-Information" + +#: 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 "Die SIG- oder Signature-Kategorie ermöglicht die Verwendung beliebiger 'Diplom-Identifikationen' für Diplome, die nicht in Wavelog implementiert sind." + +#: 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 "Der Grund dafür ist, dass das gängige ADIF-Format nur wenige dedizierte Felder für bestimmte Diplome bietet. SIG ermöglicht es dennoch, alle anderen Arten von Signaturmarkierungen zu verwenden und auszuwerten." + +#: 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 "Im QSO-Verarbeitung findest du zwei Felder: 'SIG' enthält die tatsächliche Markierung, die auch in der Auswertung der Auszeichnung sichtbar ist, und 'SIG INFO', das eine Beschreibung der Signatur enthält. Beide Felder sind frei anpassbar." + +#: application/views/awards/sig/index.php:21 +msgid "Award Type" +msgstr "" + +#: application/views/awards/sig/index.php:23 +msgid "Number of Refs" +msgstr "" + +#: application/views/awards/pota/index.php:7 +msgid "POTA Awards" +msgstr "POTA Diplome" + +#: 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) startete Anfang 2017, als das 'National Parks on the Air' - Special Event des ARRL endete. Eine Gruppe von Freiwilligen wollte den Spaß über das einjährige Ereignis hinaus fortsetzen, und so wurde POTA geboren." + +#: 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 funktioniert ähnlich wie SOTA, mit Aktivatoren und Jägern. Für die Diplome gibt es verschiedene Kategorien, die auf der Anzahl der Parks, geografischen Gebieten und mehr basieren." + +#: 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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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 "Die USKA (Union Schweizerischer Kurzwellen Amateure) stiftet zwei Auszeichnungen, den HELVETIA 26 (H26) Award und den SWITZERLAND Award, um 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 +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 "Diese Auszeichnungen gibt es in zwei Versionen: eine für HF-Bänder und eine 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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "Zeige gearbeitete" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "Zeige bestätigte" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "Zeige nicht gearbeitete" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "Tabelle" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "Zusammenfassung" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "Gesamt gearbeitet" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "CQ Magazine WAZ Diplom" + +#: application/views/awards/cq/index.php:19 +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 "Das CQ Magazine befindet sich in den USA und ist eines der beliebtesten Amateurfunkmagazine der Welt. Das Magazin erschien erstmals im Januar 1945 und konzentriert sich auf Diplome und die praktischen Aspekte des Amateurfunks." + +#: application/views/awards/cq/index.php:20 +msgid "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to all 40 CQ Zones along with the corresponding confirmation." +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "Diplome - CQ Magazin WAZ" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL Karte" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "Zeige CQ Zonen Karte" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +msgid "Total confirmed" +msgstr "Gesamt bestätigt" + +#: application/views/awards/dok/index.php:7 +msgid "DOK Award" +msgstr "DOK Diplom" + +#: 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 "Deutschland erstreckt sich über 630 km von Ost nach West und fast 900 km von Nord nach Süd. Etwa 70.000 der 82 Millionen Einwohner Deutschlands sind Funkamateure, und mehr als 40.000 von ihnen sind Mitglieder des DARC. DOK ('Deutscher Ortsverband Kenner') ist ein System, das einzelnen Ortsverbänden eine Kennung gibt." + +#: 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 "Der DOK besteht aus einem Buchstaben für den Distrik und einer zweistelligen Zahl für Ortsverband, wie P03 Friedrichshafen (Stadt der 'Hamradio-Messe') oder F41 Baunatal (Sitz der DARC-Zentrale). Hinweis: Eine Null in einem DOK ist ein häufiger Fehler, der oft als der Buchstabe O erfasst wird." + +#: 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/was/index.php:18 +msgid "WAS Award" +msgstr "WAS Diplom" + +#: application/views/awards/was/index.php:19 +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 "Die beliebteste Auszeichnung des ARRL ist das Worked All States Diplom. Tausende von Diplomen wurden an Funkamateure auf der ganzen Welt verliehen. Im 101. Jahr des ARRL haben sie die Diplome und das Programm in der Hoffnung überarbeitet und verbessert, das Diplomprogramm zu optimieren und zu vereinfachen." + +#: application/views/awards/was/index.php:20 +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 "Das WAS (Worked All States) Diplom steht allen Funkamateuren weltweit zur Verfügung, die den Nachweis mit schriftlicher Bestätigung von Kontakten mit jedem der 50 Bundesstaaten der Vereinigten Staaten von Amerika erbringen. Funkamateure in den USA und ihren angehängten Staaten müssen Mitglieder des 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 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "Zeige Karte der ITU-Zonen" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 prefectures in Amateur Radio', ermutigt lizenzierte Amateurfunkbetreiber dazu, mit allen Präfekturen in Japan zu arbeiten." + +#: application/views/awards/waja/index.php:19 +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 "Du kannst diesen Award beanspruchen, indem du (gehört hast) und eine QSL-Karte von einer Amateurstation in jedem der 47 Präfekturen Japans erhalten 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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +msgstr "" + +#: application/views/awards/counties/index.php:7 +msgid "US County Award" +msgstr "US County Diplom" + +#: 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 "USA-CA steht allen lizenzierten Funkamateuren weltweit zur Verfügung und wird an Einzelpersonen für alle gemachten County-Kontakte verliehen, unabhängig von den verwendeten Rufzeichen, Stationsorten oder Daten." + +#: application/views/awards/counties/index.php:10 +msgid "Special USA-CA awards are also available to SWLs on a heard basis." +msgstr "Spezielle USA-CA-Diplome stehen auch für SWLs auf der Grundlage des Gehörten zur Verfügung." + +#: 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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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 "Kann beantragt werden, wenn Amateurfunkstationen aus mindestens 100 unterschiedlichen Städten Japans gearbeitet bzw. gehört wurden und eine QSL-Karte vorliegt." + +#: 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 und 800 werden als separate Auszeichnungen vergeben. Eine Liste der QSL-Karten sollte in der Reihenfolge der JCC Referenznummern angelegt werden. Die Namen der Städte können ausgelassen werden. Weitere Sticker werden für jeweils 50 weitere Kontakte ausgestellt, z.B 150, 250, 350, 450, 550, 650, 750 Städte." + +#: application/views/awards/jcc/index.php:111 +msgid "Show JCC Map" +msgstr "Zeige Karte der JCCs" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "Stadt" + +#: 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 "Der VHF/UHF Century Club Award wird für eine Mindestanzahl von gearbeiteten und bestätigten Gitterquadraten auf einem gewünschten Band verliehen." + +#: 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 "Nur VHF/UHF-Bänder sind relevant." + +#: 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/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 "WWFF, World Wide Flora and Fauna in Amateur Radio, ermutigt lizenzierte Funkamateure, ihre Funkstationen zu verlassen und in geschützten Flora- und Fauna-Gebieten (PFF) weltweit portabel zu funken." + +#: 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 "Bereits mehr als 26.000 geschützte Flora- und Fauna-Gebiete (PFF) weltweit sind in dem WWFF-Verzeichnis registriert. Jäger und Aktivatoren können bunte Diplome sowohl weltweit als auch national beantragen." + +#: 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 ist ein aufregendes und innovatives Aktivitätsprogramm, das das Interesse von Tausenden von Funkamateuren weltweit geweckt hat. Es wurde 1964 gegründet und fördert Funkkontakte mit Stationen, die sich auf Inseln auf der ganzen Welt befinden, um die Erfahrung aller zu verbessern, die auf den Amateurfunkbändern aktiv sind. Um dies zu erreichen, nutzt es die weit verbreitete Mystik um Inseln." + +#: 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 "Es wird von Islands On The Air (IOTA) Ltd (auch als IOTA Management bezeichnet) in Zusammenarbeit mit der Radio Society of Great Britain (RSGB) verwaltet. IOTA Management hat die Inseln der Welt in etwa 1200 'IOTA-Gruppen' unterteilt, von denen jede eine unterschiedliche Anzahl von 'counters' (z.dt. 'Zählern') hat, die qualifizierende Inseln sind. Diese Listen werden im IOTA-Verzeichnis und auf der IOTA-Website veröffentlicht. Das Ziel für den IOTA Island Chaser besteht darin, Funkkontakt mit mindestens einem Zähler in so vielen dieser Gruppen wie möglich aufzunehmen. Das Programm hat klare Regeln und fördert den freundlichen Wettbewerb unter den Verfolgern, indem es die Leistungen der Teilnehmer in einer Ehrenrolle und jährlichen Listen veröffentlicht und sie mit Zertifikaten und renommierten Diplomen auszeichnet." + +#: 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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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 "Der Fred Fish Memorial Award wurde zu Ehren von Fred Fish, W5FF (SK), geschaffen, dem ersten Funkamateur, der alle 488 Maidenhead-Planquadrate in den 48 zusammenhängenden Bundesstaaten der USA auf 6 Metern gearbeitet und bestätigt hat." + +#: application/views/awards/ffma/index.php:10 +msgid "The award will be given to any amateur who can duplicate W5FF's accomplishment." +msgstr "Der Preis wird an jeden Funkamateur verliehen, der die Leistung von W5FF nachahmen kann." + +#: 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 "US Gridmaster Diplom" + +#: 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 "Der GridMaster Award ist die renommierteste AMSAT-Auszeichnung, die erstmals 2014 von der Star Comm Group eingeführt wurde. Sie steht allen Funkamateuren weltweit zur Verfügung, die es schaffen, alle 488 Planquadrate in den USA via Satellit zu arbeiten und für jeden Kontakt QSL-Bestätigungen vorlegen können." + +#: 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 "Diese Karte zeigt nur QSOs, die über SAT gearbeitet wurden." + +#: application/views/awards/dxcc/index.php:14 +msgid "DXCC Award" +msgstr "DXCC Diplom" + +#: 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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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 "Wichtiger Hinweis: Im Laufe der Zeit haben sich die Kriterien für die DXCC-Liste geändert. Die Liste bleibt unverändert, bis eine Einheit die Kriterien nicht mehr erfüllt, woraufhin sie in die Gelöschte Liste verschoben wird. Du findest gelöschte DXCC-Einheiten auch in den Listen in Wavelog. Beachte, dass diese DXCC-Einheiten veraltet und nicht mehr gültig sind." + +#: application/views/awards/dxcc/index.php:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +msgstr "" + +#: application/views/lotw_views/index.php:4 +msgid "Upload folder is not writable. Please contact your admin." +msgstr "Das Upload-Verzeichnis ist nicht beschreibbar. Bitte kontaktiere den Administrator." + +#: application/views/lotw_views/index.php:10 +msgid "LoTW Import" +msgstr "LoTW-Import" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Zertifikats-Upload" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Verfügbare Zertifikate" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "QSO Startdatum" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "QSO Enddatum" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Ausstellungsdatum" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Ablaufdatum" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Letzter Upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Abgelaufen" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "Läuft ab" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Gültig" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Nicht synchronisiert" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Manuelle Synchronisation" + +#: 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 "Lade LoTW .p12-Zertifikat hoch" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Anleitung für den Export einer .p12 Datei" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Öffne TQSL und gehe zum 'Rufzeichen-Zertifikate'-Reiter" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Klicke links auf das gewünschte Rufzeichen" + +#: 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 "Lade untenstehende Datei hoch." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Lade Datei hoch" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Lege Notiz an" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Deine Notizen" + +#: 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 "Du hast derzeit keine Notizen. Diese sind eine fantastische Methode, Informationen wie Tunereinstellungen, Baken und allgemeine Stationsinformationen zu speichern. Und sie sind besser als Papier, da du sie nicht verlieren kannst!" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Titel" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Kategorie" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antennen" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Notizeninhalt" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Speichere Notiz" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Editiere Notiz" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Lösche Notiz" + +#: application/views/view_log/index.php:4 +msgid "Displaying all QSOs of station locations which are linked to this logbook" +msgstr "Es werden alle QSO von Stationsstandorten angezeigt, welche mit diesem Logbuch verknüpft sind." + +#: application/views/view_log/qso.php:6 +msgid "QSO Details" +msgstr "" + +#: application/views/view_log/qso.php:29 +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" + +#: application/views/view_log/qso.php:221 +msgid "Antenna Azimuth" +msgstr "Antennenazimut" + +#: application/views/view_log/qso.php:228 +msgid "Antenna Elevation" +msgstr "Antennenelevation" + +#: application/views/view_log/qso.php:366 +msgid "QSL Info" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +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" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +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" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +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" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +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" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +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" + +#: application/views/view_log/qso.php:404 +msgid "This station uses LoTW." +msgstr "Diese Station nutzt LoTW." + +#: application/views/view_log/qso.php:409 +#: application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:419 +#: application/views/view_log/qso.php:424 +msgid "This QSO was confirmed on" +msgstr "Dieses QSO wurde bestätigt am" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "Mehr QSOs" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "QSL Kartenfront hochgeladen" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Bild der QSL Karte hochladen" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "QSL Kartenrückseite hochgeladen" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +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)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Markiere QSL Karte als angefragt (Direkt)" + +#~ msgid "Apple" +#~ msgid_plural "Apples" +#~ msgstr[0] "Apfel" +#~ msgstr[1] "Äpfel" + +#, php-format +#~ msgid "For more information, %s." +#~ msgstr "Für weitere Informationen, %s." + +#~ msgid "Click here" +#~ msgstr "Klicke hier" + +#, php-format +#~ msgid "You have eaten %d Banana today." +#~ msgid_plural "You have eaten %d Bananas today." +#~ msgstr[0] "Du hast heute %d Banane gegessen." +#~ msgstr[1] "Du hast heute %d Bananen gegessen." + +#~ msgid " Dupes were inserted!" +#~ msgstr " Duplikate wurden ebenfalls importiert!" + +#~ msgid " Dupes were skipped." +#~ msgstr " Duplikate wurden übersprungen." + +#~ msgid "Go to" +#~ msgstr "Gehe zum" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Überschreibe existierende DOK im Logbuch durch DCL (wenn unterschiedlich)." + +#~ msgid "If unchecked information about QSO which could not be found in Wavelog will be displayed." +#~ msgstr "Wenn deaktiviert, werden auch Infos zu QSOs angezeigt, die im Logbuch nicht gefunden werden konnten." + +#~ msgctxt "Dashboard Warning" +#~ msgid "You need to update country files! Go here to do it:" +#~ msgstr "Du musst deine Länderdaten erst aktualisieren. Klicke hier, um das zu tun:" + +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station locations. Go here to do it:" +#~ msgstr "Du hast noch keinen Stationsstandort angelegt. Klicke hier, um eine anzulegen:" + +#~ msgid "Stationsetup" +#~ msgstr "Stations Setup" + +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station logbook. Go here to do it:" +#~ msgstr "Du hast noch kein Stationslogbuch angelegt. Klicke hier, um eines anzulegen:" +#~ msgid "QSL Type" +#~ msgstr "QSL Typ" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.mo b/application/locale/el_GR/LC_MESSAGES/messages.mo index 9f7a1fe976..40bfd78075 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 a65032603f..2ec6fc77e6 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:13+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,243 +19,6961 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Απεσταλμένα" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "Σε ουρά" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Έχει ζητηθεί" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Μη έγκυρο (Αγνόησή)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Απευθείας" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "Μέσω" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Ηλεκτρονική" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Ελήφθη" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" msgstr "" +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +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:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Τρόπος" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Χώρα" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Επαρχία" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Ζώνη" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Συχνότητα" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Χειριστής" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: 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/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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:7 +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Τοποθεσία Σταθμού" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:229 +#: 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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Ημερομηνία" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Ωρα" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Δια" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "QSOs Αναλυτικά" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Ετος" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Μήνας" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Χώρες Αναλυτικά" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" msgstr "" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Επιβεβαιωμένο" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Απαιτείται" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "Κάρτες QSL" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "Κάρτες eQSL" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "Κομητεία ΗΠΑ " + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Αντιγραφή στο πρόχειρο" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Κατάσταση" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Δορυφόρος" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Λειτουργία διάδοσης" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Δορυφόρος" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Από την ημερομηνία" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Επαναφορά Session διαγωνισμού" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Αρχείο διαγωνισμού" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Είδος Ανταλλαγής" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Ονομα Διαγωνισμού" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "Ραδιόφωνο" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +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 +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:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Σχόλιο" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Επαναφορά QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Aποθήκευση QSO" + +#: application/views/contesting/index.php:166 +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/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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +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 +#, 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Σημαντικό" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Τα αρχεία καταγραφής πρέπει να έχουν τον τύπο αρχείου .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Επιλογή αρχείου" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Τραβήξτε δεδομένα LoTW για μένα" + +#: 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 "Το Wavelog θα χρησιμοποιήσει το όνομα χρήστη και τον κωδικό πρόσβασης LoTW που είναι αποθηκευμένα στο προφίλ χρήστη σας για να πραγματοποιήσει λήψη μιας αναφοράς από το LoTW για εσάς. Οι λήψεις αναφοράς Wavelog θα έχουν όλες τις επιβεβαιώσεις από την επιλεγμένη ημερομηνία ή από την τελευταία επιβεβαίωση LoTW (που ελήφθη από το αρχείο καταγραφής σας), μέχρι τώρα." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Εισαγωγή αντιστοιχιών LoTW" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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: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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Σταθμός" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Επεξεργασία QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Σημείωση QSL ως απεσταλμένο (Bureau)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Σημείωση QSL ως απεσταλμένο (Απευθείας)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Σημείωση QSL ως Ελήφθη (Bureau)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Σημείωση QSL ως Ελήφθη (Απευθείας)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Σημείωση QSL ζητήθηκε" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Σημείωση QSL μη απαραίτητο" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Διαγραφή QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Ναι" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Οχι" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "Διευθυντής" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Τοποθεσία" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Ημερομηνία/Ωρα" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "Δεν έχετε κάνει κανένα QSO σήμερα. ώρα να ανοίξετε τον ασύρματο!" + +#: application/views/dashboard/index.php:105 +msgid "Attention: you need to set an active station location." +msgstr "Προσοχή: πρέπει να ορίσετε μια ενεργή θέση σταθμού." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "Τουλάχιστον ένα από τα πιστοποιητικά LoTW σας έχει λήξει!" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "Τουλάχιστον ένα από τα πιστοποιητικά LoTW πρόκειται να λήξει!" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Αρχείο επαφών" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Σημειώσεις" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Χρησιμοποιεις" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "χώρου στο δίσκο για την αποθήκευση στοιχείων της κάρτας QSL" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "Παραπομπή IOTA" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "Παραπομπή SOTA" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "Παραπομπή WWFF" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "Παραπομπή POTA" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +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:179 +msgid "Timezone" +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: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 "Επιλογή στήλης 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Επιλογή στήλης 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Επιλογή στήλης 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Επιλογή στήλης 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Επιλογή στήλης 5 (Μόνο για αρχείο)" + +#: 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: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: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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Συχνότητα (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Ζώνη (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Ισχύ διαβίβασης (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Δώστε τιμή ισχύος σε Watts. Συμπεριλάβετε μόνο αριθμούς στην εισαγωγή." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Για παράδειγμα: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Για παράδειγμα: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Για παράδειγμα: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Για παράδειγμα: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Για παράδειγμα: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Για παράδειγμα: Q03" + +#: 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 "Το περιεχόμενο σημείωσης χρησιμοποιείται μόνο στο Wavelog και δεν εξάγεται σε άλλες υπηρεσίες." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Μέθοδος" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "Αυτό το περιεχόμενο σημείωσης εξάγεται σε υπηρεσίες QSL όπως το eqsl.cc." + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Εισήγησης" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "Εικόνα προφίλ" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "Κάρτa QSL" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Εισαγωγή LoTW" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Ανέβασμα Πιστοποιητικού" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Διαθέσιμα Πιστοποιητικά" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "Ημερομηνία έναρξης QSO" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "Ημερομηνία λήξης QSO" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Ημερομηνία Δημιουργίας" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Ημερομηνία Λήξης " + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Τελευταία μεταφόρτωση" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Ληγμένο" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "Λήγει" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Εγκυρος" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Μη συγχρονισμένο" + +#: application/views/lotw_views/index.php:129 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "Πρέπει να ανεβάσετε ορισμένα πιστοποιητικά LoTW p12 για να χρησιμοποιήσετε αυτήν την περιοχή." + +#: application/views/lotw_views/index.php:144 +msgid "Information" +msgstr "Πληροφορίες" + +#: application/views/lotw_views/index.php:149 +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 "Μεταφόρτωση Πιστοποιητικou Logbook of the World .p12" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Εξαγωγή Οδηγίες αρχείου .p12 " + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Ανοίξτε το TQSL & μεταβείτε στην καρτέλα Πιστοποιητικά διακριτικού κλήσης" + +#: 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/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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create 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 "Αυτήν τη στιγμή δεν έχετε σημειώσεις, αυτος είναι ένας φανταστικός τρόπος αποθήκευσης δεδομένων όπως ρυθμίσεις ATU, beacons και γενικές σημειώσεις σταθμών και είναι καλύτερο από χαρτί, καθώς δεν μπορείτε να τα χάσετε!" + +#: 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: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/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Επεξεργασία Σημείωσης" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +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 "Στοιχεία QSO" + +#: application/views/view_log/qso.php:29 +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 "Συνολική Απόσταση" + +#: 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:366 +msgid "QSL Info" +msgstr "Πληροφορίες QSL" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "Η κάρτα QSL έχει σταλεί μέσω του γραφείου" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "Η κάρτα QSL έχει σταλεί απευθείας" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "Η κάρτα QSL έχει σταλεί ηλεκτρονικά" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "Η κάρτα QSL έχει σταλεί μέσω του διαχειριστή" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "Η κάρτα QSL έχει σταλεί" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "Η κάρτα QSL έχει παραληφθεί μέσω του γραφείου" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "Η κάρτα QSL έχει παραληφθεί απευθείας" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "Η κάρτα QSL έχει παραληφθεί ηλεκτρονικά" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "Η κάρτα QSL έχει παραληφθεί μέσω του διαχειριστή" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "Η κάρτα QSL έχει παραληφθεί" + +#: 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 "Αυτό το QSO επιβεβαιώθηκε στις" + +#: 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 "Μεταφορτώθηκε η μπροστινή εικόνα της κάρτας QSL" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Μεταφόρτωση εικόνας κάρτας QSL" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Μεταφορτώθηκε η πίσω εικόνα της κάρτας QSL" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Σημείωση QSL ως Ελήφθη (Ηλεκτρονικός)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Σημείωση QSL ζητήθηκε (Bureau)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Σημείωση QSL ζητήθηκε (Απευθείας)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.mo b/application/locale/es_ES/LC_MESSAGES/messages.mo index 821fd9b663..a7c28fab33 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 343b071015..947e7519c2 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: wavelog-test\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 12:34\n" "Last-Translator: \n" "Language-Team: Spanish\n" @@ -17,241 +17,6973 @@ msgstr "" "X-Crowdin-File: /gettext_po_test/pot/messages.pot\n" "X-Crowdin-File-ID: 66\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Enviado" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "En Cola" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Solicitadas" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Inválidas (ignorar)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "Buró" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Directo" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "Vía" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Electrónico" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Recibido" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "QSOs que no concuerdan" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "confirmados por LoTW/Clublog/eQSL/Concurso" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "confirmados por el administrador del premio" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "confirmados al hacer chequeo cruzadoc on datos de DCL" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "pendiente de confirmación" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "sin confirmar" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "desconocido" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "Mapa de Gridsquares" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "Gridsquares confirmados" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "Gridsquares sin confirmación" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +msgstr "Total de gridsquares trabajados" + +#: application/controllers/Logbook.php:37 +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "No se encontraron libros de guardia. ¡Debe definir un libro de guardia en Libros de Guardia de Estación! Hágalo aquí:" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "" + +#: application/controllers/Logbook.php:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" msgstr "" +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Modo" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "RST (Enviada)" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "RST (Recibida)" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "País" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Estado" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" -msgstr "" +msgstr "Distancia" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Banda" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Frecuencia" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Operador" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" +msgstr "DXCC Eliminado" + +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" +msgstr "Crear Localización de Estación" + +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" +msgstr "Desactivado" + +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "Establecer como Libro de Guardia Activo" + +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: 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 "¿Está seguro que desea eliminar el libro de guardia de estación a continuación? Deberá re-enlazar todas las localizaciones enlazadas aquí a otro Libro de Guardia: " + +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "Ver Página Pública para el Libro de Guardia: " + +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +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:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "Poner como Activa" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "Estación Activa" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "Editar" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "Libro Vacío" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +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:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "Copiar" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "Eliminar" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "¿Está seguro que desea eliminar el perfil de estación " + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "? Esto eliminará todos los QSOs dentro este perfil de estación." + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: 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 "Opciones de Wavelog" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "Apariencia" + +#: 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/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Options.php:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" -msgstr "Rufzeichen" +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "de continente cambiado a " -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +msgstr "Máxima edad de spots cambiada a " + +#: application/controllers/Options.php:175 +msgid "DXCluster Cache URL changed to " +msgstr "URL del DXCluster-Cache cambiada a " + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "Configuración de Radio" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "Advertencia de Tiempo de Espera de Radio cambiada a " + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" msgstr "" -#: application/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Options.php:297 +msgid "The settings were saved successfully." +msgstr "Las configuraciones fueron guardadas exitosamente." + +#: application/controllers/Options.php:299 +msgid "Something went wrong with saving the settings. Try again." +msgstr "Algo salió mal guardando las configuraciones. Intente de nuevo." + +#: application/controllers/Options.php:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:7 +msgid "OQRS Options" +msgstr "Opciones OQRS" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "Las opciones de OQRS se han guardado." + +#: application/controllers/Options.php:373 +#: application/controllers/Options.php:378 +msgid "Testmail failed. Something went wrong." +msgstr "El correo de prueba ha fallado. Algo salió mal." + +#: application/controllers/Options.php:375 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "El correo de prueba fue enviado. La configuración de correo electrónico parece correcta." + +#: application/controllers/Options.php:388 +#: application/controllers/Options.php:398 +msgid "Version Info Settings" +msgstr "Configuración de Información de Versión" + +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "El Encabezado de Información de Versión cambió a" + +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" +msgstr "Modo de Información de Versión ha cambiado a" + +#: application/controllers/Options.php:413 +msgid "Version Info Custom Text saved!" +msgstr "¡Texto Personalizado de la Información de Versión guardado!" + +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" +msgstr "La Información de Versión será mostrada a todos los usuarios de nuevo" + +#: application/controllers/Options.php:432 +msgid "Version Info will not be shown to any user" +msgstr "La Información de Versión no será mostrada a nadie" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" - -#: application/views/dashboard/index.php:121 -msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgid "You have no station locations. Go %s to create it!" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:159 +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Perfil de estación" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " +msgstr "Editar Localización de Estación: " + +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" +msgstr "Cuentas de Usuario" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" +msgstr "Usuario" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" +msgstr "editado" + +#: application/controllers/Distances.php:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "QSOs con" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "y banda" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "Estadísticas" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "Estadísticas Acumuladas" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "Concursos" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "Actualizar Concurso" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "Gridsquares trabajados" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "Gridsquares confirmados en LoTW" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "Gridsquares confirmados por QSL físicas" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "Mapa de Gridsquares Activados" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "Total de gridsquares activados" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 msgid "Date" msgstr "Fecha" -#: application/views/dashboard/index.php:162 +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 msgid "Time" msgstr "Tiempo Test" -#: application/views/dashboard/index.php:225 +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Indicativo" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 msgid "QSOs Breakdown" -msgstr "" +msgstr "Desglose de QSO" -#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Año" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Mes" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Desglose por Países" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Realizados" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Confirmados" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Solicitadas" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "Tarjetas QSL" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "Tarjetas eQSL" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" +msgstr "es-ES" + +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" +msgstr "Guardar Indicativo" + +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" +msgstr "Buscar" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" +msgstr "Continuar" + +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "Seleccione año" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "Seleccione concurso" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "Seleccione rango de fechas" + +#: application/views/cabrillo/index.php:6 +msgid "No contests were found for this station location!" +msgstr "¡No se encontraron concursos para esta localización de estación!" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "Exportar un concurso a un registro Cabrillo" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "Seleccione la localización de la estación:" + +#: application/views/cabrillo/index.php:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "Rufzeichen" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "Categoría - Operador" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "Operador Único" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "Operador Múltiple" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "Categoría - Asistida" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "No Asistida" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "Asistida" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "Categoría - Banda" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +msgstr "Luz/Láser" + +#: application/views/cabrillo/index.php:90 +msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "Categoría - Modo" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "Categoría - Potencia" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "Categoría - Estación" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "Categoría - Transmisor" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "Categoría - Overlay" + +#: application/views/cabrillo/index.php:150 +msgid "Operators" +msgstr "Operadores" + +#: application/views/cabrillo/index.php:155 +msgid "Soapbox" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "Dirección" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "Dirección - Ciudad" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "Dirección - Estado/Provincia" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "Dirección - Código Postal" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "Dirección - País" + +#: application/views/cabrillo/index.php:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "Exportar" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "No se encontraron concursos en tu registro." + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/bands/index.php:36 +msgid "Using the band list you can control which bands are shown when creating a new QSO." +msgstr "Usando la lista de bandas puede controlar qué bandas se muestran cuando se crea un nuevo QSO." + +#: application/views/bands/index.php:39 +msgid "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected." +msgstr "Las bandas activas se mostrarán en la lista desplegable de 'Bandas' en QSO, mientras que las bandas inactivas se ocultarán y no pueden ser seleccionadas." + +#: application/views/bands/index.php:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "Señal" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "Condado USA" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "Grupo de Bandas" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "Editar Banda" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "Crear una Banda" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "Cerrar" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "¡Advertencia! ¿Está seguro que desea eliminar la banda a continuación: " + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "¡Advertencia! ¿Está seguro que desea activar todas las bandas?" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "¡Advertencia! ¿Está seguro que desea desactivar todas las bandas?" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "Activar Todo" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +msgstr "Desactivar Todo" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "Nombre de la Banda (ej. 20m)" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "Nombre del grupo de bandas (ej. hf, vhf, uhf, shf)" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "Frecuencia para el QRG de SSB en la banda (debe ser en Hz)" + +#: application/views/bands/create.php:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +msgstr "Frecuencia para el QRG de DATA en la banda (debe ser en Hz)" + +#: application/views/bands/create.php:46 application/views/bands/edit.php:28 +msgid "Frequency for CW QRG in band (must be in Hz)" +msgstr "Frecuencia para el QRG de CW en la banda (debe ser en Hz)" + +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "Guardar" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "Info" +msgstr "Información" + +#: 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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Estado" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +msgid "Actions" +msgstr "Actiones" + +#: 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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Satélite" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "Confirmación" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "Dibujar" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "Borrar marcadores" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "Latitud" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "Longitud" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "Dirección" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +msgstr "Copia de Seguridad" + +#: 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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "Número de QSOs" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "Reinicializar" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "Continente" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "# de QSOs logradas" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "Distancias Trabajadas" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +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" + +#: application/views/distances/index.php:10 +msgid "in gridsquare" +msgstr "en gridsquare" + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr "la distancia fue" + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "Indicativo(s) trabajados (se muestran máximo 5)" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "Selección de Banda" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +msgstr "Mostrar" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "Años" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "Número de QSOs logradas cada año" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Explore el libro de guardia." + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "Indicativos únicos" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "Línea de Tiempo" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "Premio" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "Prefijo" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "Fecha de fin" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "Ver QSOs" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "Nombre" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "Zona CQ" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "Filtrado por" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "Hoy" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +msgstr "Exportación CSV de SOTA" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "Exporte su libro de guardias para subirlo en SOTA." + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "¡Solo se exportarán QSOs con información SOTA!" + +#: application/views/csv/index.php:92 application/views/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Modo de propagación" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satélite" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Desde la fecha" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "Hasta la fecha" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +msgstr "No mostrar de nuevo" + +#: 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 "El configurar una abreviatura pública le permite compartir su libro de guardia con cualquier persona usando una dirección personalizada del sitio web, esta abreviatura debe contener solo letras y números." + +#: application/views/stationsetup/visitor.php:3 +msgid "Later it looks like this:" +msgstr "Después se verá de esta manera:" + +#: application/views/stationsetup/visitor.php:4 +msgid "[your slug]" +msgstr "[su abreviatura]" + +#: application/views/stationsetup/visitor.php:10 +msgid "Type in Public Slug choice" +msgstr "Introduzca la elección de Abreviatura Pública" + +#: application/views/stationsetup/visitor.php:17 +msgid "Visit Public Page" +msgstr "Visitar Página Pública" + +#: application/views/stationsetup/create.php:17 +msgid "Station Logbook Name" +msgstr "Nombre del Libro de Guardia de Estación" + +#: application/views/stationsetup/create.php:19 +msgid "You can call a station logbook anything." +msgstr "Puede llamar el libro de guardia de estación como desee." + +#: application/views/stationsetup/linkedlocations.php:13 +msgid "Select Available Station Locations" +msgstr "Seleccionar Localizaciones de Estación Disponibles" + +#: application/views/stationsetup/linkedlocations.php:25 +msgid "Link Location" +msgstr "Enlazar Localización" + +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "Nombre de Perfil" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +msgstr "Indicativo de la Estación" + +#: application/views/stationsetup/linkedlocations.php:34 +msgid "Unlink Station Location" +msgstr "Desenlazar la Localización de la Estación" + +#: 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 "Los Libros de Guardia de Estación le permiten agrupar Localizaciones de Estación, observando todas las localizaciones en una sola sesión, desde las áreas del libro de guardia hasta las analíticas. Muy útil cuando está operando en múltiples localizaciones, pero que son parte del mismo Círculo DXCC o VUCC." + +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "Crear Libro de Guardia de Estación" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "Búsqueda Pública" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "Activado" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +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:95 +#: application/views/station_profile/index.php:16 +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:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "Crear una Localización de Estación" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +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:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "Advertencia" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +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:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "Por favor, reasignelas en " + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "Administrador" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "Mantenimiento" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Reinicializar la sesión del concurso" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Registro de concurso" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Tipo de intercambio" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "Ninguno" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "Intercambio" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Por No. de Serie" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "En Serie + Intercambio" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "En Serie + Gridsquare" + +#: application/views/contesting/index.php:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Nombre del concurso" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "Indicativo del Operador" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "Por No. de Serie (E)" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Intercambio (Env)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "Gridsquare (E)" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "Por No. de Serie (R)" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Intercambio (Recib)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Comentario" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Reinicializar QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Guardar QSO" + +#: application/views/contesting/index.php:166 +msgid "Copy received exchange to" +msgstr "¡Copiar intercambio recibido al campo" + +#: 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 "Localizador" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Indicativos sugeridos" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Libro de guardia del concurso" + +#: 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 "Usando la lista de concursos, puede controlar qué Concursos se muestran cuando se registran QSOs en un concurso." + +#: 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 "Los concursos activos se mostrarán en la lista desplegable de Nombre de Concurso, sin embargo los inactivos están ocultos y no se pueden seleccionar." + +#: application/views/contesting/add.php:26 +#: application/views/contesting/create.php:30 +msgid "ADIF Name" +msgstr "Nombre 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:449 +msgid "Active" +msgstr "Activo" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "Inactivo" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 +msgid "Activate" +msgstr "Activar" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +msgid "Deactivate" +msgstr "Desactivar" + +#: application/views/contesting/add.php:54 +msgid "DANGER!" +msgstr "¡PELIGRO!" + +#: application/views/contesting/add.php:55 +msgid "Warning! Are you sure you want to delete the following contest: " +msgstr "¡Advertencia! ¿Está seguro que desea eliminar el siguiente concurso: " + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "¡Advertencia! ¿Está seguro que desea activar todos los concursos?" + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "¡Advertencia! ¿Está seguro que desea desactivar todos los concursos?" + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +msgstr "Añadir un concursos" + +#: application/views/contesting/create.php:26 +#: application/views/contesting/edit.php:33 +msgid "Name of the Contest" +msgstr "Nombre del Concurso" + +#: application/views/contesting/create.php:32 +#: application/views/contesting/edit.php:39 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +msgstr "Crear" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "Nombre ADIF del Concurso" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "Configurar en activo si desea que esté en la lista de Concursos" + +#: application/views/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "Importar ADIF" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Opciones de importación" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Subir un archivo" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Importante" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Los archivos de registro deben ser del tipo .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Elegir archivo" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Extraer los datos LoTW por mí" + +#: 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 "Wavelog usará el usuario y contraseña de LoTW guardado en su perfil para descargar un informe de LoTW por usted. El informe contendrá todas las confirmaciones desde la fecha elegida o desde su última confirmación LoTW hasta ahora." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Importar coincidencias LoTW" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "África" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "Antártida" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "Europa" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "América del Norte" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "Oceanía" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +msgstr "América del Sur" + +#: 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 +msgid "Message" +msgstr "" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "Protocolo de Salida" + +#: application/views/options/email.php:50 +msgid "The protocol that will be used to send out emails." +msgstr "El protocolo que será usado para enviar los correos electrónicos." + +#: application/views/options/email.php:54 +msgid "SMTP Encryption" +msgstr "Encriptación SMTP" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "Escoja si los correos electrónicos serán enviados con TLS o SSL." + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "Nombre de remitente de Email" + +#: application/views/options/email.php:67 +msgid "The email sender name, e.g. 'Wavelog'" +msgstr "El nombre de quien envía los correos, ej. 'Wavelog'" + +#: application/views/options/email.php:72 application/views/user/edit.php:58 +#: application/views/user/forgot_password.php:47 +msgid "Email Address" +msgstr "Dirección de Email" + +#: application/views/options/email.php:75 +msgid "The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgstr "La dirección desde la cual se enviarán los correos electrónicos, ej. 'wavelog@example.com'" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "Servidor SMTP" + +#: application/views/options/email.php:83 +msgid "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')" +msgstr "El nombre de dominio del servidor de correo, ej. 'mail.example.com' (sin 'ssl://' o 'tls://')" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "Puerto SMTP" + +#: 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 "El puerto SMTP del servidor de correo, ej. si está usando TLS -> '587', si está usando SSL -> '465'" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "Nombre de usuario SMTP" + +#: 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 "El nombre de usuario para iniciar sesión en el servidor de correo, usualmente esta es la dirección de correo electrónico a usar." + +#: application/views/options/email.php:104 +msgid "SMTP Password" +msgstr "Contraseña SMTP" + +#: application/views/options/email.php:107 +msgid "The password to log in to the mail server." +msgstr "La contraseña para iniciar sesión en el servidor de correo." + +#: application/views/options/email.php:116 +msgid "Send Test-Mail" +msgstr "Enviar correo de prueba" + +#: application/views/options/email.php:117 +msgid "The email will be sent to the address defined in your account settings." +msgstr "El correo será enviado a la dirección definida en su configuración de cuenta." + +#: application/views/options/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "Advertencia de Tiempo de Espera de Radio" + +#: 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 "La Advertencia de Tiempo de Espera de Radio se usa en el panel de entrada de QSO para alertarlo de desconexiones de la interfaz de radio." + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "Este número es en segundos." + +#: 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 "Las Opciones de Wavelog son configuraciones globales, configuradas para todos los usuarios de la instalación, que se sobreescribirán si alguna configuración se activa a nivel de usuario." + +#: application/views/options/oqrs.php:38 +msgid "Global text" +msgstr "Texto global" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "Este texto es un texto opcional que se mostrará en la parte superior de la página de OQRS." + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "Búsqueda agrupada" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "Cuando está activo, se buscarán en simultáneo todas las localizaciones de estación con OQRS activo" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "Mostrar localización de la estación en los resultados de búsqueda agrupados" + +#: application/views/options/oqrs.php:58 +msgid "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table." +msgstr "Si la búsqueda agrupada esta ACTIVA, puede decidir si el nombre de la localización de la estación se mostrará en la tabla de resultados." + +#: application/views/options/version_dialog.php:47 +msgid "Version Info Header" +msgstr "Cabecera de la Información de Versión" + +#: application/views/options/version_dialog.php:49 +msgid "You can change the header of the version info dialog." +msgstr "Puede cambiar el encabezado del diálogo de información de versión." + +#: application/views/options/version_dialog.php:53 +msgid "Version Info Mode" +msgstr "Modo de Información de Versión" + +#: application/views/options/version_dialog.php:57 +msgid "Only Release Notes" +msgstr "Solo Notas de la Versión" + +#: application/views/options/version_dialog.php:60 +msgid "Only Custom Text" +msgstr "Solo Texto Personalizado" + +#: application/views/options/version_dialog.php:63 +msgid "Release Notes and Custom Text" +msgstr "Notas de la Versión y Texto Personalizado" + +#: 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 "La Información de Versión es mostrada a todos los usuarios. El usuario tiene la opción de cerrar el diálogo después de leerlo. Seleccione si solo quiere mostrar las notas de la versión (extraídas de GitHub), solo texto personalizado o ambos." + +#: application/views/options/version_dialog.php:72 +msgid "Version Info Custom Text" +msgstr "Texto Personalizado de la Información de Versión" + +#: application/views/options/version_dialog.php:74 +msgid "This is the custom text which is shown in the dialog." +msgstr "Este es el texto personalizado que se muestra en el diálogo." + +#: application/views/options/version_dialog.php:84 +msgid "Show/Hide Version Info Dialog for all Users" +msgstr "Mostrar/Ocultar el Diálogo de Información de Versión para todos los Usuarios" + +#: application/views/options/version_dialog.php:97 +msgid "Show for all Users" +msgstr "Mostrar a todos los Usuarios" + +#: application/views/options/version_dialog.php:99 +msgid "This will show the version dialog automatically to all users on their next page reload." +msgstr "Esto mostrará el diálogo de versión automáticamente a todos los usuarios la próxima vez que recarguen la página." + +#: application/views/options/version_dialog.php:104 +msgid "Hide for all Users" +msgstr "Ocultar a todos los Usuarios" + +#: application/views/options/version_dialog.php:106 +msgid "This will deactivate the automatic popup of the version dialog for all users." +msgstr "Esto desactivará que se muestre automáticamente el diálogo de versión para todos los usuarios." + +#: application/views/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +msgstr "Información de Versión" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "Tema" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "Elección global de Tema, se utiliza cuando ningún usuario ha iniciado sesión." + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "Marquesina de Notificación en la Vista General" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "Esto permite deshabilitar la marquesina de notificaciones globales que se muestra en la Vista General." + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "Mapa en la Vista General" + +#: application/views/options/appearance.php:76 +msgid "This allows the map on the dashboard to be disabled or placed on the right." +msgstr "Esto permite que el mapa de la vsita general no aparezca o se muestre a la derecha." + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "Mapa en Libro de Guardia" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "Esto pemrite deshabilitar el mapa en el libro de guardia." + +#: 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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "Proveedor de DXClusterCache" + +#: 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:39 +msgid "DXClusterAPI" +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 "Máxima edad de spots a tomarse en cuenta" + +#: 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 "La edad en minutos de los spots que se tomarán en cuenta en el plan de bandas/búsqueda" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "Mostrar spots que se observen en el siguiente continente" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "Solo se muestran spots por observadores de este continente" + +#: application/views/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "Exportación KML" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "Exporte su libro de guardias a un archivo KML para su uso en Google Earth." + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "¡Solo se exportarán QSOs con un gridsquare definido!" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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 "No hay activaciones próximas. Por favor vuelve a revisar más tarde." + +#: application/views/components/hamsat/table.php:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Estación" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Editar QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Marcar QSL como Enviada (Buró)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Marcar QSL como Enviada (Directa)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Marcar QSL como Recibida (Buró)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Marcar QSL como Recibida (Directa)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Marcar QSL como Solicitada" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Marcar QSL como no Requerida" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "Buscar en QRZ.com" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "Buscar en HamQTH" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Eliminar QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "Desde" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "a" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "- Ninguno - (ej. /MM, /AM)" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "Propagación" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "QSL enviadas" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Si" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "QSL recibidas" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "Verificado" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "Método de Envío de QSL" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "Método de Recepción de QSL" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "Enviado por LoTW" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "Recibido por LoTW" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "Enviado por eQSL" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "Recibido por eQSL" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "Imágenes QSL" + +#: application/views/logbookadvanced/index.php:386 +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:389 +msgid "With selected: " +msgstr "Con los seleccionados: " + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "Actualizar de Callbook" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "En Cola por Buró" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "En Cola por Directa" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "En Cola por Electrónico" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "Enviado (Buró)" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "Enviado (Directa)" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "Enviado (Electrónico)" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "No Enviado" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "QSL no Requerida" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "Recibido (Buró)" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "Recibido (Directa)" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "Recibido (Electrónico)" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "Crear ADIF" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "Imprimir Etiqueta" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "Presentación QSL" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "Búsqueda rápida con seleccionados: " + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "Buscar DXCC" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "Buscar Estado" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "Buscar Gridsquare" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "Buscar Zona CQ" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "Buscar Modo" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "Buscar Banda" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "Buscar IOTA" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "Buscar SOTA" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "Buscar POTA" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "Buscar WWFF" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "Buscar Operador" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "Filtros rápidos" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "Filtros QSL" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "Filtros" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "No. Resultados" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Localización" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "Duplicados" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "Mapa" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "Opciones" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Fecha/Hora" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "Mensaje QSL" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "Zona ITU" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "Mis Refs" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "Columna" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "Anterior" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "Siguiente" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "Incluir Vía" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "¿Iniciar impresión desde?" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "Imprimir" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "Necesita actualizar su versión de PHP. La versión mínima es 7.4. Su versión es " + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +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:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +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:126 +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:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +msgid "QSOs marked" +msgstr "QSOs marcados" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +msgstr "¡Bien, hemos terminado!" + +#: application/views/adif/mark_lotw.php:16 +msgid "The QSOs are marked as exported to LoTW." +msgstr "Los QSOs fueron marcados como exportados a LoTW." + +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "ADIF Importado" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "¡Bien, lo hemos importado!" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "El archivo ADIF fue importado." + +#: 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 "Errores ADIF" + +#: 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 "Tiene errores en su archivo ADIF. Los QSOs han sido adicionados, pero estos campos no han sido importados." + +#: application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "Exportar ADIF" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "Los archivos de registro deben tener el tipo de archivo *.adi" + +#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +msgid "Maximum file upload size is " +msgstr "El tamaño máximo del archivo subido es " + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "Seleccione la Localización de la Estación" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "Archivo ADIF" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "Importar QSOs duplicadas" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "Marcar QSOs importadas como subidas a LoTW" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +msgid "Select if ADIF being imported does not contain this information." +msgstr "Seleccione si el archivo ADIF que se va a importar no incluye esta información." + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "Marcar QSOs importadas como subidas al libro de guardia de HRDLog.net" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "Marcar QSOs importadas como subidas al libro de guardia de QRZ Logbook" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "Marcar QSOs importadas como subidas al libro de guardia de Clublog Logbook" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "Usar la información DXCC del ADIF" + +#: application/views/adif/import.php:135 +msgid "If not selected, Wavelog will attempt to determine DXCC information automatically." +msgstr "Si no se selecciona, Wavelog intentará determinar la información DXCC automáticamente." + +#: application/views/adif/import.php:143 +msgid "Always use login-callsign as operator-name on import" +msgstr "Siempre use el indicativo usado para iniciar sesión como el nombre de operador al importar" + +#: application/views/adif/import.php:152 +#: application/views/interface_assets/footer.php:22 +msgid "DANGER" +msgstr "PELIGRO" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "Ignorar el indicativo de la Estación al importar" + +#: application/views/adif/import.php:154 +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." + +#: application/views/adif/import.php:158 application/views/adif/import.php:273 +msgid "Upload" +msgstr "Subir" + +#: application/views/adif/import.php:165 +msgid "Take your logbook file anywhere!" +msgstr "¡Lleve su archivo de libro de guardia a cualquier lugar!" + +#: 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 "Exportar archivos ADIF le permite importar contactos en aplicaciones de terceros como LoTW, Diplomas o para simplemente tener una copia de seguridad." + +#: application/views/adif/import.php:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "Marcar QSOs exportados como subidos a LoTW" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "Exportar QSOs que no se hayan subido a LoTW" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "Exportar QSOs" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "Exportar solo QSOs de satélite" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "Exportar todos los QSOs de satélite" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "Exportar todos los QSOs de satélite confirmados en LoTW" + +#: application/views/adif/import.php:220 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "¡Si no selecciona un rango de fechas entonces todos los QSOs serán marcados!" + +#: application/views/adif/import.php:228 +msgid "Mark QSOs as exported to LoTW" +msgstr "Marcar QSOs como exportados a 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 "" + +#: application/views/adif/import.php:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "Solo importar datos DOK de los QSO confirmados en DCL." + +#: application/views/adif/import.php:251 +msgid "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL." +msgstr "Si se deja desactivado, se actualizarán los datos DOK con datos de los QSO no confirmados en DCL." + +#: application/views/adif/import.php:258 +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 "Si está activo, Wavelog forzará la sobreescritura de los DOK existentes con los DOK desde el libro de DCL." + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "Ignorar QSOs que no concuerden" + +#: 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/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "Resultados de la actualización DOK de DCL" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "Se ha actualizado la información para DOKs desde DCL." + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "No se encontraron QSOs a actualizar." + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "QSOs actualizados" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "QSOs ignorados" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "QSOs que no concuerdan" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "Errores DOK" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "Hay datos diferentes para DOKs en su libro comparados con DCL" + +#: 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/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "Exportación DX Atlas" + +#: application/views/dxatlas/index.php:7 +msgid "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares." +msgstr "Exporte su libro de guardias para su uso en DX Atlas para mostrar gridsquares trabajados / confirmados." + +#: 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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +msgstr "Gráfico de Tiempo" + +#: 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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "Cancelar" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "Atención" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +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:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "Colores" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "Trabajados no confirmados" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "No logrados" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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." + +#: application/views/interface_assets/footer.php:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "grid squares" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "Cuenta total" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "Modo Desarrollador" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Libro de Guardia" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "Vista General" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "Avanzado" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "Ver Tarjetas QSL" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "Ver Tarjetas eQSL" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "QSO en vivo" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "Registrar QSO" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "Entrada Rápida Simple" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "Registros de Concurso en Vivo" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "Registrar Entrada de Concurso" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Notas" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "Analíticas" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "Gridsquares Activadas" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "Activadores de Gridsquare" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "Días con QSOs" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "Continentes" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "Diplomas" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "mapa de Bandas" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "Opciones Globales" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "Modos" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "Temas" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "Actualizar Archivos de Países" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "Información de Depuración" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "Iniciar Sesión" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Información de la Cuenta" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "Exportación Cabrillo" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Está usando" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "de espacio en disco para almacenar recursos relacionados con las tarjetas QSL" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +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 +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 +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 +msgid "Station DXCC" +msgstr "DXCC de la Estación" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "Ninguno" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "Ciudad de la Estación" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "Condado de la Estación" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +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 +#, 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 +msgid "click here" +msgstr "haga clic aquí" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "Gridsquare de la Estación" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "Obtener Gridsquare" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +msgid "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88." +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "Referencia IOTA" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +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 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "Referencia SOTA" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "Referencia WWFF" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "Referencia POTA" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "Nombre de la Firma" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +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 +msgid "Signature Information" +msgstr "Información de la Firma" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +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 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "QSLMSG por Defecto" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +msgid "Define a default message that will be populated and sent for each QSO for this station location." +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +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 +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 +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 +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 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +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 +msgid "Subscription Required" +msgstr "Requiere Suscripción" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +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 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +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:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "Activar OQRS" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "Alerta de Email de OQRS" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +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:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "Texto OQRS" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +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:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "Actualizar" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "Zonas" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +msgstr "Firma" + +#: 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 "Fecha de inicio" + +#: 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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +msgstr "Email" + +#: 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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "Nombre de Usuario" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "Contraseña" + +#: application/views/user/login.php:56 +msgid "Forgot your password?" +msgstr "¿Olvidó su contraseña?" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "Crear Cuenta de Usuario" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "Editar Cuenta" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "Información General" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "Rol del Usuario" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "Información Personal" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "Nombre" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "Apellidos" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "Información de Radioaficionado" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "Preferencias de Wavelog" + +#: application/views/user/edit.php:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "Hoja de estilo" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "Lenguaje de Wavelog" + +#: application/views/user/edit.php:176 +msgid "Choose Wavelog language." +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" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "Seleccione cómo le gustaría ver las fechas cuando inicie sesión en su cuenta." + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "Preferencias de Medidas" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "Seleccione qué unidad de distancia usar y mostrar cuando inicie sesión en su cuenta." + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Campos a mostrar en el Libro de Guardia" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Columna 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Columna 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Columna 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Columna 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Columna 5 (solo en libro de guardia)" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "Opciones del Registro de QSO" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "Guardar Hora de Finalización para QSOs Separadamente" + +#: 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 "Escoja 'Si' aquí si desea guardar la hora de inicio y fin del QSO por separado. Si se configura como 'No' la hora de fin y de inicio será la misma." + +#: 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 "Mostrar imágenes de perfil del corresponsal de QSO desde su perfil qrz.com/hamqth.com en la sección de registro de QSL." + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "Por favor configure sus credenciales de qrz.com/hamqth.com en el archivo de configuración general." + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "Obtener automáticamente la Localización." + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "Si está activo, el gridsquare se obtiene basado en el nombre de la localización." + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "Obtener automáticamente gridsquare y nombre de SOTA para la cumbre." + +#: 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 "Si está activo, el nombre y gridquare se obtienen a través de la API y se rellenan en localización y locator." + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "Obtener automáticamente gridsquare y nombre de WWFF para la referencia" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "Obtener automáticamente gridsquare y nombre de POTA para el parque." + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "Opciones de Menú" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "Mostrar notas en el Menú Principal." + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "Campo Registro Rápido" + +#: application/views/user/edit.php:433 +msgid "With this feature, you can log callsigns using the search field in the header." +msgstr "Con esta característica, puedes registrar indicativos usando el campo de búsqueda en el encabezado." + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "Registro Rápido - Acción al presionar Intro" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "Registrar Indicativo" + +#: application/views/user/edit.php:443 +msgid "What action should be performed when Enter is pressed in the quicklog field?" +msgstr "¿Qué acción se debe ejecutar al presionar Intro en el campo Registro Rápido?" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "Configuración de Mapa" + +#: application/views/user/edit.php:481 +msgid "Icon" +msgstr "Icono" + +#: application/views/user/edit.php:484 application/views/user/edit.php:488 +msgid "Not display" +msgstr "No mostrar" + +#: application/views/user/edit.php:497 +msgid "QSO (by default)" +msgstr "QSO (por defecto)" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "QSO (confirmadas)" + +#: 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 "Mostrar Localizador" + +#: application/views/user/edit.php:555 +msgid "Previous QSL Type" +msgstr "Tipo de QSL previo" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "Selecciona el tipo de QSL a mostrar en la sección de QSO previo." + +#: 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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +msgstr "Información de señal" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "Valores por Defecto" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "Configuración para Banda por Defecto y Confirmación" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "Banda por Defecto" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "Métodos de QSL por Defecto" + +#: application/views/user/edit.php:697 +msgid "Third Party Services" +msgstr "Servicios de Terceros" + +#: application/views/user/edit.php:708 +msgid "Logbook of The World (LoTW) Username" +msgstr "Nombre de Usuario Logbook of The World (LoTW)" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Contraseña Logbook of The World (LoTW)" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "Nombre de Usuario eQSL.cc" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "Contraseña eQSL.cc" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "Correo/Indicativo de Club Log" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "El Correo o el Indicativo que utiliza para iniciar sesión en Club Log" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Contraseña de Club Log" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "Otras Opciones" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "Subida de estados AMSAT" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "Subir los estados de QSOs de SAT QSOs a" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "Servidor de Mastodon" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "URL del Servidor de Mastodon" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "Características de Winkeyer Activadas" + +#: 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 "Guardar Cambios de la Cuenta" + +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "Restablecer Contraseña" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "Puede reinicializar su contraseña aquí." + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "Confirmar Contraseña" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "Eliminar Cuenta de Usuario" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "¿Está seguro que desea eliminar la cuenta de usuario" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "Si, eliminar este usuario" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "No, no eliminar este usuario" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "¿Olvidó su contraseña?" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "TimeOff es menor que TimeOn" + +#: application/views/qso/index.php:5 application/views/qso/index.php:694 +msgid "Previous Contacts" +msgstr "Contactos previos" + +#: 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:33 +msgid "Sat" +msgstr "" + +#: application/views/qso/index.php:48 +msgid "Add Band/Mode to Favs" +msgstr "Añadir Banda/Modo a Favoritos" + +#: application/views/qso/index.php:69 +msgid "Time on" +msgstr "Hora inicio" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "Hora fin" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frecuencia (Recepción)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Banda (Recepción)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Potencia de transmisión (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Especifique el valor de potencia en Watios (W). Incluya solo números." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Por ejemplo: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Por ejemplo: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Por ejemplo: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Por ejemplo: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Por ejemplo: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Por ejemplo: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Nombre del Satélite" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Modo del Satélite" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "El contenido es usado solo dentro de Wavelog y no es exportado a otros servicios." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Método" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "El contenido de esta nota es exportado a servicios QSL como eqsl.cc." + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "Obtener el mensaje por defecto para eQSL, para esta estación." + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Sugerencias" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "Imagen de Perfil" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "Se muestra máx. de 5 contactos previos" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "Cuenta Mínima" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "Conteo" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "Mostrar Mapa" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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', o simplemente 'FLE' es un sistema para registrar QSO muy rápida y eficientemente. Debido a su sintaxis, solo se requieren pocos campos para introducir muchos QSOs con la menor cantidad de esfuerzo posible." + +#: application/views/simplefle/index.php:14 +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 fue escrito originalmente por DF3CB. Él ofreció un programa para Windows en su sitio. Simple FLE fue escrito por OK2CQR basado en el FLE de DF3CB y provee una interfaz web para registrar QSOs." + +#: application/views/simplefle/index.php:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "Ayuda de Sintaxis" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "Sintaxis para FLE" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "Cerrar y Cargar Datos de Muestra" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "¡Falta la Banda!" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "¡Falta el Modo!" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "¡No se configuró la Hora!" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "Fecha inválida" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "El Indicativo de la Estación no fue seleccionado" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "El campo 'Operador' está vacío" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "¡Advertencia! ¿Está seguro que desea reinicializar todo?" + +#: application/views/simplefle/index.php:31 +msgid "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!" +msgstr "¡Advertencia! ¡No puede registrar la lista de QSOs, porque algunos QSO no tienen banda y/o modo definido!" + +#: application/views/simplefle/index.php:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "¡Advertencia! ¡No puede registrar la lista de QSOs, porque algunos QSO no tienen hora definida!" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "¡Atención! ¡El campo Datos contiene datos de muestra. Primero Limpie la Sesión de Registro!" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "¿Está seguro que desea añadir estos QSOs al Libro de Guardia y limpiar la sesión?" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "¡QSOs Registradas!" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "¡Las QSOs fueron satisfactoriamente guardadas en el Libro de Guardia!" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "¿Qué es esto?" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "Fecha de QSO" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "Si no escoge una fecha, se usará la fecha de hoy." + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "Hora UTC Actual" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "Indicativo/Localización de la Estación" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "Las Referencias deben ser SOTA, IOTA, POTA o WWFF" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "Recargar Lista de QSO" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "Guardar en Wavelog" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +msgstr "Limpiar Sesión de Registro" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "Antes de empezar a registrar un QSO, observe las reglas básicas." + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "- Cada QSO nuevo debe estar en una línea nueva." + +#: application/views/simplefle/syntax_help.php:3 +msgid "- On each new line, only write data that has changed from the previous QSO." +msgstr "- En cada nueva línea, solo escriba datos que hayan cambiado desde el QSO anterior." + +#: 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 "Para comenzar, asegúrese que ya ha rellenado el formulario en la izquierda con la fecha, el indicativo de la estación y el indicativo del operador. Los datos principales incluyen la banda (o QRG en MHz, ej., '7.145'), modo, y hora. Después de la hora, usted debe introducir el primer QSO, que es esencialmente el indicativo." + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "Por ejemplo, un QSO que ha iniciado a las 21:34 (UTC) con 4W7EST en 20m SSB." + +#: application/views/simplefle/syntax_help.php:10 +msgid "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO." +msgstr "Si no introduce ninguna información RST, la sintaxis usará 59 (o 599 para datos). Nuestro siguiente QSO no era 59 en ambos lados, así que proveemos la información con el RST enviado primero. Fue 2 minutos después del primer QSO." + +#: 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 "El primer QSL fue a las 21:34, y el segundo 2 minutos después a las 21:36. Escribimos 6 porque fue el único dato que cambió. La información de banda y modo no cambió, así que estos datos se omiten." + +#: 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 "Para nuestro siguiente QSO a las 21:40 el 14 de mayo de 2021, cambiamos la banda a 40m pero seguimos en SSB. Si no se ingresa datos de RST, la sintaxis usará 59 para cada nuevo QSO. Por lo tanto podemos añadir un nuevo QSO que ocurrió a la misma hora dos días después. La fecha debe estar en el formato YYYY-MM-DD." + +#: 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 "" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "Exportar QSL Solicitadas para Imprimirse" + +#: 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 "Aquí puede exportar las QSL solicitadas como CSV o archivos ADIF para imprimir y, opcionalmente, marcarlas como enviadas." + +#: 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 "Las QSL solicitadas con todas las QSO con un valor de 'Solicitada' o 'En Cola' en su campo 'QSL Enviada'." + +#: application/views/qslprint/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "Método de Envío" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "Añadir a la cola de impresión" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +msgstr "No se encontraron QSOs adicionales. Esto significa que probablemente ya están en la cola." + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "Marcar como enviada" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "Remover" + +#: application/views/qslprint/qslprint.php:67 +msgid "Mark selected QSOs as printed" +msgstr "Marcar QSOs seleccionadas como imprimidas" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "Eliminar las QSOs seleccionadas de la cola" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "Exportar las QSLs solicitadas a un archivo CSV" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "Exportar las QSLs solicitadas a un archivo ADIF" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "Marcar las QSLs solicitadas como enviadas" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "¡No se encontraron QSLs para imprimir!" + +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "Tabla" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "Tarjeta QSL" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "Ciudad" + +#: 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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Importar LoTW" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Subir certificado" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Certificados disponibles" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "Fecha de Inicio de QSO" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "Fecha Fin de QSO" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Fecha de creación" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Fecha de caducidad" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Última subida" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Caducado" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "Caduca pronto" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Válido" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "No sincronizado" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "Información" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Sincronización manual" + +#: 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 "Subir certificado LoTW .p12" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Instrucciones para exportar archivos .p12" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Abrir TQSL e ir a la pestaña 'Callsign Certificates'." + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Clic derecho en el indicativo deseado." + +#: 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 "Subir aquí el archivo descargado." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Subir archivo" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Crear nota" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Sus notas" + +#: 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 "Actualmente no tiene notas, las cuales son un buen recurso para guardar datos e información general. Además, son mejores que el papel ya no las perderá con facilidad :)" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Título" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Categoría" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antenas" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Contenido de la nota" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Guardar nota" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Editar nota" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Borrar nota" + +#: 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 "Detalles de QSO" + +#: application/views/view_log/qso.php:29 +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" + +#: 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:366 +msgid "QSL Info" +msgstr "Información QSL" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "La QSL se envió vía buró" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "La QSL se envió via directa" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "La QSL fue enviada electrónicamente" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "La QSL fue enviada vía manager" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "La QSL se envió" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "La QSL se recibió via buró" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "La QSL se recibió vía directa" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "La QSL fue recibida electrónicamente" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "La QSL fue recibida vía manager" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "La QSL fue recibida" + +#: application/views/view_log/qso.php:404 +msgid "This station uses LoTW." +msgstr "Esta estacion usa LoTW." + +#: application/views/view_log/qso.php:409 +#: application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:419 +#: application/views/view_log/qso.php:424 +msgid "This QSO was confirmed on" +msgstr "Esta QSO fue confirmada en" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "Más QSOs" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "Detalles" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "Imagen delantera de la QSL subida" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Subir QSL" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Imagen trasera de la QSL subida" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Marcar QSL como Recibida (Electrónico)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Marcar QSL como Solicitada (Buró)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Marcar QSL como Solicitada (Directa)" + +#~ msgid " Dupes were inserted!" +#~ msgstr " ¡Se insertaron registros duplicados!" + +#~ msgid " Dupes were skipped." +#~ msgstr " Se descartaron registros duplicados." + +#~ msgid "Go to" +#~ msgstr "Vaya a" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Sobreescribir los DOK existentes en el registro por DCL (si son diferentes)" + +#~ msgid "If unchecked information about QSO which could not be found in Wavelog will be displayed." +#~ msgstr "Si se deja desactivado, se mostrará la información de QSOs que no se encuentren en Wavelog." diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.mo b/application/locale/fi_FI/LC_MESSAGES/messages.mo index 00b222ca06..8db5157578 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 bcf9e9dc50..16f9dc89e0 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:14+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,243 +19,6961 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Lähetetyt" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Pyydetyt" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Virheellinen (Ohita)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Vastaanotetut" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" msgstr "" +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "Gridsquare-kartta" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +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:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Lähetelaji" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Maa" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "osavaltio" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" -msgstr "" +msgstr "Etäisyys" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Bandi" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Taajuus" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" -msgstr "" - +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 #: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 msgid "Deleted DXCC" +msgstr "Poistettu DXCC" + +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" +msgstr "Tulosta pyydetyt QSL:t" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: 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/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "Muokkaa" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "Poista" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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 "Ulkoasu" + +#: 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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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 "Radion asetukset" + +#: 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:7 +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Asemaprofiili" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:229 +#: 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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "Statistiikkaa" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "Kertyneet tilastot" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "Kontestit" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Päivä" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Aika" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Kutsu" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "Yhteystilasto" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Vuosi" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Kuukausi" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Maatilasto" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Workittu" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Kuitattu" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Tarvittu" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "QSL-kortit" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "Radioamatöörikutsu" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +msgstr "Bandit" + +#: 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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "USA lääni" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Kopioi leikepöydälle" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Satelliitti" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "Merkitse" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +msgstr "Varmuuskopiot" + +#: 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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "Workitut etäisyydet" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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 "Bandin valinta" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +msgstr "" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "Vuodet" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Uppoudu lokiisi tarkemmin" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "QSO:t" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "Erillisiä kutsuja" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "Aikajana" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Propagaatiomuoto" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelliitti" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "päivämäärästä" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Nollaa kilpailuloki" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Kilpailuloki" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Annettava sanoma" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Sarjanumero" + +#: 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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Kilpailun nimi" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +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 +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:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Kommentti" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Nollaa QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "TALLENNA QSO" + +#: application/views/contesting/index.php:166 +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 "Lokaattori" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Ehdotettu kutsu" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Kilpailussa pidetyt yhteydet" + +#: 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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Tuonnin asetukset" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Lataa tiedosto" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Tärkeää" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Lokitiedoston pitää olla ADI-tiedosto --> .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Valitse tiedosto" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Lataa ja tuo LoTW:n data" + +#: 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 "Wavelog käyttää profiiliisi tallennettuja LoTW:n käyttäjätietoja lokikoosteen lataamiseen. Lokikooste sisältää tähän päivään asti kaikki kuitatut yhteydet, alkaen valitsemastasi päivästä tai siitä päivästä kun olet viimeksi ne palvelusta ladannut ." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Tuo LoTW:n osumat" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "Afrikka" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "Antarktis" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "Aasia" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "Eurooppa" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "Pohjois-Amerikka" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "Oseania" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +msgstr "Etelä-Amerikka" + +#: 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 +msgid "Message" +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:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "" + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "Lähettäjän nimi" + +#: 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 "Email" + +#: 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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "Radiot" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "Teema" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "Yleisen teeman valinta, joka vaikuttaa sivuston vierailijoihin. " + +#: 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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Asema" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Muokkaa QSO:a" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Merkitse QSL lähetetyksi (Bureau)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Merkitse QSL lähetetyksi (Direct)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Merkitse QSL vastaanotetuksi (Bureau)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Merkitse QSL vastaanotetuksi (Direct)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Merkitse QSL-kortti pyydetyksi" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Merkitse QSL-kortti tarpeettomaksi" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Poista QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Kyllä" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Ei" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "Manageri" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Sijainti" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "Valinnat" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Päivä/Aika" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +msgid "Attention: you need to set an active station location." +msgstr "Varoitus: sinun täytyy valita aktiivinen asemaprofiili." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +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:126 +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:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +msgstr "Aikajana" + +#: 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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "Kehittäjätila" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Lokikirja" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "Yleiskatsaus" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "Näytä QSL" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "Näytä eQSL" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Muistiinpanot" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "Analyysit" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "Aktivoidut ruudut" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "QSO:llsia päiviä" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "Mantereet" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "Awardit" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "Bandikartta" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "Yleiset asetukset" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "Modet" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "Teemat" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "Päivitä Country Files" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "Kirjaudu" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "ADIF Tuonti / Vienti" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "DX Atlas Gridsquare Vienti" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "OQRS Pyynnöt" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "Tarrat" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "eQSL Tuonti / Vienti" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "HRDLog Logi" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "QRZ Logi" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "QO-100 Dx Club Lähetys" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "Foorumi" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "Kirjaudu ulos" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Käytät" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "levytilaa QSL-korteille" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA ref.nro" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA ref.nro" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF ref.nro" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "POTA ref.nro" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "käyttäjänimi" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "Salasana" + +#: application/views/user/login.php:56 +msgid "Forgot your password?" +msgstr "Salasana unohtunut?" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "Luo käyttäjätili" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "Muokkaa käyttäjätiliä" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "Käyttäjän rooli" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "Henkilötiedot" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "Etunimi" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "Sukunimi" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "Wavelog Asetukset" + +#: application/views/user/edit.php:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Yleinen" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "Tyylisivu" + +#: 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:179 +msgid "Timezone" +msgstr "Aikavyöhyke" + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "Päivämäärämuoto" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "Valitse, miten haluat päivämäärät näkyvän, kun olet kirjautunut tilillesi." + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "Mittayksikkömuoto" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "Valitse, mitä mittayksikkömuotoa käytetään" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Lokin sarakkeiden sisältö" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Sarake 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Sarake 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Sarake 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Sarake 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Sarake 5 (vain lokikirjassa)" + +#: 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 "Näytä kusokumppanin profiilikuva qrz.com/hamqth.com -profiilista lokin QSO:n kirjausikkunassa." + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "Anna qrz.com/hamqth.com tunnustiedot in the general config file." + +#: 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 "Näytä 'Muistio' päävalikossa." + +#: 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: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: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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Oletusbandi" + +#: 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 "Logbook of The World (LoTW) Käyttäjänimi" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Logbook of The World (LoTW) Salasana" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "eQSL.cc Käyttäjänimi" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "eQSL.cc Salasana" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "Club Log Sähköposti/Kutsu" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "Sähköposti tai kutsu, jota käytät kirjautuessasi Club Log:iin" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Club Log Salasana" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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 "Tallenna käyttäjätilin muutokset" + +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "Resetoi salasana" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "Voit resetoida salasanasi tästä" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "Vahvista salasana" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "Poista käyttäjätili" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "Oletko varma, että haluat poistaa käyttäjätilin" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "Kyllä, poista tämä käyttäjätili" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "En, älä poista tätä käyttäjätiliä" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "Salasana unohtunut?" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:694 +msgid "Previous Contacts" +msgstr "Edelliset yhteydet" + +#: 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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Taajuus (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Bandi (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Lähetysteho (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Anna teholukema Watteina käyttäen vain numeroita." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Esimerkiksi: OH/JS-004." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Esimerkiksi: OHFF-1234." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Esimerkiksi: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Esimerkiksi: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Esimerkiksi: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Esimerkiksi: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Satelliitti" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Satelliitin Mode" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Muistio tallentuu vain logiin, tähän yhteydeen, eikä siirry eteenpäin muihin palveluihin." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Method / tapa" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "Tämä viestisi siirtyy myös QSL-palveluihin, kuten eqsl.cc." + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Kutsumerkkiehdotukset" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "Profiilikuva" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL-kortti" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "LoTW Tuonti" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Lataa ja tuo kutsumerkin varmenne" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Kutsumerkin varmenteet" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "QSO aloituspäivä" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "QSO lopetuspäivä" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Päivä jolloin luotu" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Päivä joloin vanhenee" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Vanhentunut" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "Vanhenee" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Voimassa" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Ei synkronoitu" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "Info" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Synkronoi yhteydet manuaalisesti" + +#: 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 "Tuo palveluun LoTW:n .p12 kutsumerkin varmenne" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Vie .p12 tiedoston ohjeistus" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Avaa TQSL & ja siirry kutsumerkin varmeenteen / Callsign Certificates välilehdelle" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Klikkaa hiiren oikealla näppäimella haluamaasi kutsua" + +#: 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 "Lataa ja tuo äsken tallentamasi tiedosto tänne." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Lataa tiedosto" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Luo uusi muistiinpano" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Muistiinpanosi" + +#: 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 "Näyttää siltä, ettei sinulla ole vielä yhtään muistiinpanoa. Tämä Wavelogin muistio ovat kätevä tapa tallentaa vaikka ATU:n asetukset, taajuudet. Muistiinpanosi säilyvät täällä tallessa, eikä sinun tarvitse etsiä niitä paperipinojesi alta. Näin aika säästyy workkimiseen --... ...-- " + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Otsikko" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Kategoria" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antennit" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Muistiinpanon teksti:" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Tallenna muistiinpano" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Muokkaa muistiinpanoa" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Poista muistiinpano" + +#: 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 "QSO:n tiedot" + +#: application/views/view_log/qso.php:29 +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" + +#: 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:366 +msgid "QSL Info" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "QSL-kortti on lähetty buron kautta" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "QSL-kortti on lähetetty direktinä" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "QSL-kortti on lähetetty sähköisesti" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "QSL-kortti on lähetetty managerin kautta" + +#: 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 "QSL-kortti on vastaanotettu buron kautta" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "QSL-kortti on vastaanotettu direktinä" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "QSL-kortti on vastaanotettu sähköisesti" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "QSL-kortti on vastaanotettu managerin kautta" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "QSL-kortti on vastaanotettu" + +#: application/views/view_log/qso.php:404 +msgid "This station uses LoTW." +msgstr "Tämä asmea käyttää LoTW-palvelua. Viimeinen yhteyksien lähetys oli" + +#: application/views/view_log/qso.php:409 +#: application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:419 +#: application/views/view_log/qso.php:424 +msgid "This QSO was confirmed on" +msgstr "Tämä QSO vahvistettiin" + +#: 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 "QSL-kortin ladattu etukuva" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Lähetä QSL-kortin kuva" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "QSL-kortin ladattu takakuva" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Merkitse QSL vastaanotetuksi (Electronic)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Merkitse QSL-kortti pyydetyksi (Bureau)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Merkitse QSL-kortti pyydetyksi (Direct)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.mo b/application/locale/fr_FR/LC_MESSAGES/messages.mo index 231301179a..b132986b17 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 b09dea0dd0..21b662c329 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: wavelog-test\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 12:34\n" "Last-Translator: \n" "Language-Team: French\n" @@ -17,241 +17,6973 @@ msgstr "" "X-Crowdin-File: /gettext_po_test/pot/messages.pot\n" "X-Crowdin-File-ID: 66\n" -#: application/views/dashboard/index.php:4 +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Envoyées" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "En attente" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Demandées" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Invalide (Ignoré)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Numérique" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Reçues" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "pas de correspondance pour le QSO" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "confirmé par LoTW/Clublog/eQSL/Contest" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "confirmé par le manager de l'Award" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "confirmé par recoupement des données DCL" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "confirmation en attente" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "non confirmé" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "inconnu" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "Carte des Locator" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "Locator" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "Locator confirmés" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "Locator non confirmés" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +msgstr "Total des Locator réalisés" + +#: application/controllers/Logbook.php:37 +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "Aucun journal de trafic n'a été trouvé. Vous devez en définir un via le menu 'Station Logbooks' ! Faites-le ici :" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "" + +#: application/controllers/Logbook.php:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 msgid "Mode" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" msgstr "" +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Pays" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Etat" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" -msgstr "" +msgstr "Locator" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Bande" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Frequence" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Opérateur" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" +msgstr "DXCC Supprimé" + +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" +msgstr "Désactivé" + +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "Activer ce journal" + +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: 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/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "Editer" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "Copier" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "Supprimer" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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:7 +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Profil de la Station" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" +msgstr "Compte des utilisateurs" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" +msgstr "Compte" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" +msgstr "mis à jour" + +#: application/controllers/Distances.php:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "QSOs avec" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "et bandes" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "Mettre à jour" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "Locator réalisés" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "Locator confirmés par LoTW" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "Locator confirmé par Carte QSL" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "Carte des Locator activatés" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "Total des Locator activatés" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 msgid "Date" msgstr "" -#: application/views/dashboard/index.php:162 +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 msgid "Time" -msgstr "" +msgstr "Heure" -#: application/views/dashboard/index.php:225 +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "QRZ" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 msgid "QSOs Breakdown" -msgstr "" +msgstr "QSO Breakdown" -#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Année" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Mois" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Pays Breakdown" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Réalisés" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Confirmés" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Demandés" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "Cartes QSL" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "Cartes eQSL" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" +msgstr "fr-FR" + +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" +msgstr "Recherche l'indicatif" + +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" +msgstr "Rechercher" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" +msgstr "Démarrer" + +#: application/views/cabrillo/index.php:3 +msgid "Select Year" +msgstr "Sélectionner l'année" + +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" +msgstr "Sélectionner le concours" + +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" +msgstr "Sélectionner la période (date début/fin)" + +#: application/views/cabrillo/index.php:6 +msgid "No contests were found for this station location!" +msgstr "Aucun concours trouvé pour cet emplacement de station!" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "Exporter un concours au format de fichier \"Cabrillo\"" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "Sélectionner le lieu de la Station :" + +#: application/views/cabrillo/index.php:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "Indicatif" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "Catégorie - Opérateur" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "Mono-Opérateur (SINGLE)" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "Multi-Opérateur (MULTI)" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "Catégorie - Assistance" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "Non Assisté" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "Assisté" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "Bandes" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +msgstr "Tout" + +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +msgstr "Lumière/Laser" + +#: application/views/cabrillo/index.php:90 +msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" +msgstr "VHF-3-BAND et VHF-FM-ONLY (Concours ARRL VHF seulement)" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "Catégorie - Mode" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "Catégorie - Puissance" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "Catégorie - Station" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "Catégorie - Emetteur" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "Catégorie - Overlay" + +#: application/views/cabrillo/index.php:150 +msgid "Operators" +msgstr "Operateurs" + +#: application/views/cabrillo/index.php:155 +msgid "Soapbox" +msgstr "Message" + +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "Adresse" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "Adresse - Ville" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "Adresse - State/Province" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "Adresse - Code Postal" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "Adresse - Pays" + +#: application/views/cabrillo/index.php:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "Aucun concours trouvé dans votre journal de trafic" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: 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/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/bands/index.php:39 +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/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/bands/index.php:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "Compté USA" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" msgstr "" +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "Groupe de Bandes" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "Fermer" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "Activer tout" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +msgstr "Désactiver tout" + +#: 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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "Enregistrer" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Copier dans le presse-papier" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "Info" +msgstr "Information" + +#: 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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Statut" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "Afficher" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "Effacer marqueurs" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "Azimut" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "Nombre de QSOs" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "Réinitialiser" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "QSOs réalisés" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "Données du QSO" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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" +msgstr ", avec le locator : " + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr ", pour une distance de : " + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "Indicatif(s) contacté(s) (liste de 5 max)" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "Bandes sélectionnées" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +msgstr "Afficher" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "Nb QSOs /An" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "Nombre de QSOs réalisés par an" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Informations sur le journal de trafic" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "Nb QSOs /Bandes /Modes" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "Indicatif unique /Bandes /Modes" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "Préfix" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "Date fin" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "Afficher les QSO" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "Nom" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "Zone CQ " + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "Filtré sur" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "Aujourd'hui" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +msgstr "SOTA - Export CSV" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "Exporter votre journal de trafic pour le télécharger sur le site SOTA." + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "Seuls les QSO avec un Locator défini seront exportés !" + +#: application/views/csv/index.php:92 application/views/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Mode Propagation" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Date, du " + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "au " + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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 "Les \"journaux de trafic\" des stations vous permettent de regrouper les emplacements des stations.
Cela vous permet d'avoir tous les emplacements au sein d'une même session ; visible dans le journal de trafic, jusqu'aux statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais qu'ils font partie du même cercle DXCC ou VUCC." + +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "Ajouter un nouveau" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "Recherche publique" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "Activé" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "Attention" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Réinitialiser la session du concours" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Concours - enregistrement des QSO" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Type d'échange" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "Aucun" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "Echange" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "N° QSO" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "N° QSO + Echange" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "N° QSO + Locator" + +#: application/views/contesting/index.php:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Nom du concours" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "Indicatif de l'opérateur" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "N° QSO (S)" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Ech (S)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "Locator (S)" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "N° QSO (R)" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Ech (R)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "Locator (R)" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Commentaire" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Réinitialiser QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Sauvegarder QSO" + +#: application/views/contesting/index.php:166 +msgid "Copy received exchange to" +msgstr "Copiez l'échange reçu dans le champ" + +#: 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 "Âge" + +#: application/views/contesting/index.php:174 +msgid "RX Power (W)" +msgstr "Puissance RX (W)" + +#: application/views/contesting/index.php:175 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Suggestion d'indicatif" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Journal de trafic du concours" + +#: 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 "En utilisant la liste des concours, vous pouvez contrôler quels concours sont affichés lors de l'enregistrement des QSO dans un concours." + +#: 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 "Les concours actifs seront affichés dans la liste déroulante 'Nom du concours' sur les pages 'Contest Logging" + +#: application/views/contesting/add.php:26 +#: application/views/contesting/create.php:30 +msgid "ADIF Name" +msgstr "Nom 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:449 +msgid "Active" +msgstr "Activé" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "Désactivé" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 +msgid "Activate" +msgstr "Activer" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +msgid "Deactivate" +msgstr "Désactiver" + +#: 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 "ATTENTION ! Etes vous certain de vouloir supprimer le concours : " + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "ATTENTION ! Etes vous certain de vouloir activer tous les concours ? " + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "ATTENTION ! Etes vous certain de vouloir désactiver tous les concours ? " + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +msgstr "Ajouter un concours" + +#: application/views/contesting/create.php:26 +#: application/views/contesting/edit.php:33 +msgid "Name of the Contest" +msgstr "(Nom du concours)" + +#: application/views/contesting/create.php:32 +#: application/views/contesting/edit.php:39 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +msgstr "Créer" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "Nom ADIF du concours" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "(Si 'Activer', le concours sera affiché dans la liste des concours)" + +#: application/views/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "Importer ADIF" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Options d'import" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Envoyer un fichier" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Les fichiers de log doivent être au format .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Sélectionner un fichier" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Récuperer mes données LoTW" + +#: 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 "Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.
Les téléchargements du journal Wavelog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Import LoTW correspondants" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "Afrique" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "Antarctique" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "Asie" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "Amérique du Nord" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "Océanie" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +msgstr "Amérique du Sud" + +#: 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 +msgid "Message" +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: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 "Email" + +#: 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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "Thème" + +#: 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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "KML - Export" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "Exportez votre journal de trafic vers un fichier KML pour l'utiliser dans Google Earth." + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "Seuls les QSO avec un Locator défini seront exportés !" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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 "Aucune activation à venir trouvée. Veuillez revenir plus tard." + +#: application/views/components/hamsat/table.php:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Editer QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Marquer QSL Envoyée (Bureau)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Marquer QSL Envoyée (Direct)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Marquer QSL Reçue (Bureau)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Marquer QSL Reçue (Direct)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Marquer Carte QSL comme demandé" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Marquer Carte QSL comme non requise" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "Rechercher sur QRZ.com" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "Rechercher sur HamQTH" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Effacer QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "Date, du" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "au" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "- AUCUN - (ex: /MM, /AM)" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "QSL Envoyée" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Oui" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Non" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "QSL Reçue" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "Vérifiée" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "QSL Méthode (envoi)" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "QSL Méthode (reçue)" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "LoTW Envoyé" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "LoTW Reçu" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "eQSL Envoyée" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "eQSL Reçue" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +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:389 +msgid "With selected: " +msgstr "Action pour lignes sélectionnées :" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "Mise à jour depuis Callbook" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "En attente (Bureau)" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "En attente (Direct)" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "En attente (Electronic)" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "Envoyée (Bureau)" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "Envoyée (Direct)" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "Envoyée (Electronic)" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "Non envoyée" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "QSL Non requis" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "Reçue (Bureau)" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "Reçue (Direct)" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "Reçue (Numérique)" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "Exporter en ADIF" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "Imprimer Etiquette" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "Diaporama QSL" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "Recherche rapide (avec infos de la ligne sélectionnée) : " + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "Même DXCC" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "Même Etat" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "Même Locator" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "Même Zone CQ" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "Même Mode" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "Même Band" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "Même IOTA" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "Même SOTA" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "Même POTA" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "Même WWFF" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "Filtres rapides" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "Filtres QSL" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "Filtres" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "Nb lignes" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Lieu" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "Doublon(s)" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "Carte" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Date/Heure" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "Zone ITU" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "Ma Refs" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "Colonne" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "Précédent" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "Suivant" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "Ajouter Locator" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "Ajouter Via" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "Commencer à imprimer à" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "Imprimer" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "Vous devez mettre à jour votre version PHP. La version minimale est 7.4. Votre version est" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +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:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +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:126 +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:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +msgid "QSOs marked" +msgstr "QSO marqués" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +msgstr "Ok, réalisé !" + +#: application/views/adif/mark_lotw.php:16 +msgid "The QSOs are marked as exported to LoTW." +msgstr "Les QSO ont été marqués comme téléchargés sur LoTW." + +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "ADIF importé" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "Ok, c'est importé !" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "Le fichier ADIF a été importé." + +#: 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 "Erreurs ADIF " + +#: 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 "Vous avez des erreurs ADIF, les QSO ont quand même été ajoutés mais ces champs n'ont pas été renseignés." + +#: application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "Exporter ADIF" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "Les fichiers de Log doivent avoir l'extention : *.adi" + +#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +msgid "Maximum file upload size is " +msgstr "La taille maximum d'un fichier à télécharger est" + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "Sélectionner une Localisation" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "Fichier ADIF" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "Importer les QSO en double" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "Indiquer que les QSO importés ont été téléchargés sur LoTW" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +msgid "Select if ADIF being imported does not contain this information." +msgstr "(A cocher, si l'ADIF à importer ne contient pas ces informations)" + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal HRDLog.net" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal QRZ.com" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal Clublog" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "Utiliser l'information du DXCC issue du fichier ADIF" + +#: application/views/adif/import.php:135 +msgid "If not selected, Wavelog will attempt to determine DXCC information automatically." +msgstr "(Si cochée, Wavelog tentera de déterminer automatiquement les informations DXCC.)" + +#: application/views/adif/import.php:143 +msgid "Always use login-callsign as operator-name on import" +msgstr "Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de l'import" + +#: application/views/adif/import.php:152 +#: application/views/interface_assets/footer.php:22 +msgid "DANGER" +msgstr "" + +#: 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 +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)" + +#: application/views/adif/import.php:158 application/views/adif/import.php:273 +msgid "Upload" +msgstr "Importer" + +#: application/views/adif/import.php:165 +msgid "Take your logbook file anywhere!" +msgstr "Emportez votre fichier journal de trafic partout !" + +#: 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 "L'export de fichier ADIF vous permet d'importer vos QSO dans des applications tierces comme LoTW, Awards ou simplement pour conserver une sauvegarde." + +#: application/views/adif/import.php:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "Indiquer que les QSO exportés ont été téléchargés sur LoTW" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "Exporter les QSO non téléchargés sur LoTW" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "Exporter" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "Export des QSO par Satellite seulement" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "Exporter tous les QSO par satellite" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "Exporter tous les QSO par satellite et confirmés sur LoTW" + +#: application/views/adif/import.php:220 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "Si aucune date n'est renseignées, tous les QSO seront marqués !" + +#: application/views/adif/import.php:228 +msgid "Mark QSOs as exported to LoTW" +msgstr "Marquer les QSO comme étant \"téléchargé sur 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 "" + +#: application/views/adif/import.php:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "Importez uniquement les données DOK des QSO confirmés sur DCL" + +#: application/views/adif/import.php:251 +msgid "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL." +msgstr "(Décoché, si vous souhaitez également mettre à jour DOK, avec les données des QSO non confirmés dans DCL)" + +#: application/views/adif/import.php:258 +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 "(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal DCL)" + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "Ignorer les QSO qui ne correspondent pas" + +#: 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/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "Résultats de la mise jour pour DCL DOK" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "Les informations DCL pour les DOK ont été mis à jours." + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "Aucun QSO trouvé qui pourrait être mis à jour." + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "QSO mis à jour" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "QSO ignorés" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "QSO sans correspondance" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "Erreurs DOK" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "Différence de données DOK entre votre journal de travail et DCL" + +#: 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/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "DX Atlas - Export" + +#: application/views/dxatlas/index.php:7 +msgid "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares." +msgstr "Exportez votre journal de trafic pour l'utiliser dans DX Atlas et afficher les Locator réalisés/confirmés." + +#: 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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "Annuler" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "Couleurs" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "Réalisés non confirmés" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "Non réalisés" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "Grilles des Locators" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "Total" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Journal de trafic" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "Activateur de Locator" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Compte" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "Cabrillo - Export" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Vous utilisez" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "d'espace disque pour stocker les actifs des cartes QSL" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "Aucun" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "cliquer ici" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "Trouver le Locator" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "Référence IOTA" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "Référence SOTA" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "Référence WWFF" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: 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/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "Message (QSLMSG) par défaut" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +msgid "Define a default message that will be populated and sent for each QSO for this station location." +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "Mettre à jour" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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 "Date début" + +#: 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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "Utilisateur" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "Mot de passe" + +#: application/views/user/login.php:56 +msgid "Forgot your password?" +msgstr "Mot de passe oublié ?" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "Créer un compte" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "Editer un compte" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "Informations Générales" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "Rôle de l'utilisateur" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "Informations personnelles" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "Nom" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "Prénom" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "Préférences Wavelog" + +#: application/views/user/edit.php:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Général" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "Nom du thème" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "Langue utilisée par Wavelog" + +#: application/views/user/edit.php:176 +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" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "(Sélectionnez le format de date à afficher)" + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "Unité de mesure" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "(Sélectionner l'unité de mesure à afficher)" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Champs du journal (1ère page)" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Contenu colonne 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Contenu colonne 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Contenu colonne 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Contenu colonne 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Contenu colonne 5 (uniquement pour logbook)" + +#: 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 "Enregistrer les heures de fin des QSO séparément" + +#: 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 "(Choisissez 'oui', si vous souhaitez enregistrer les heures de début et de fin des QSO séparément. Si la valeur est 'Non', l'heure de fin sera la même que l'heure de début)" + +#: 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 "Affiche l'image de profil du contact (depuis qrz.com/hamqth.com) dans la session QSO" + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "(Indiquer les éléments d'authentification pour qrz.com/hamqth.com dans le fichier de configuration (config.php))" + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "Recherche automatique de lieu" + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "(Si 'oui', le Locator est récupéré en fonction du nom du lieu)" + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "SOTA : Renseigner automatiquement le Locator et le nom du sommet" + +#: 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 "(Si 'oui', le nom et le Locator seront récupérés depuis l'API et renseignés)" + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "WWFF : Renseigner automatiquement le Locator et le nom de la référence" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "POTA : Renseigner automatiquement le Locateur et le nom du parc" + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "Menu principal" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "Voir les notes dans le main principal" + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "Champ Quicklog" + +#: application/views/user/edit.php:433 +msgid "With this feature, you can log callsigns using the search field in the header." +msgstr "(Si 'oui', vous pouvez enregistrer les indicatifs d'appel en utilisant le champ de recherche dans la barre du haut)" + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "Quicklog - Action sur la touche 'Entrée'" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "Enregistre l'indicatif" + +#: application/views/user/edit.php:443 +msgid "What action should be performed when Enter is pressed in the quicklog field?" +msgstr "(Action effectuée lorsque vous appuyez sur 'Entrée' dans le champ quicklog ?)" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "Paramètre de la carte" + +#: application/views/user/edit.php:481 +msgid "Icon" +msgstr "Icône" + +#: application/views/user/edit.php:484 application/views/user/edit.php:488 +msgid "Not display" +msgstr "Ne pas afficher" + +#: application/views/user/edit.php:497 +msgid "QSO (by default)" +msgstr "QSO (par défaut)" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "QSO (confirmé)" + +#: 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 "Afficher les Locator" + +#: application/views/user/edit.php:555 +msgid "Previous QSL Type" +msgstr "Type de QSL pour le statut" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "Sélectionner le type de QSL pour le statut à afficher dans la session 'Contacts précédents'" + +#: 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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +msgstr "" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "Valeur par défaut" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "Paramètres par défaut" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "Bandes" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "Méthode QSL" + +#: 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 "Utilisateur" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Mot de passe" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "Utilisateur" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "Mot de passe" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "Email/Callsign" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "(Renseigner l'email ou l'indicatif pour se connecter à Club Log)" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Mot de passe" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "Divers" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "Envoi du statut AMSAT" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "Envoi des statuts des QSO par Satellite sur" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "Mastodon Serveur" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "URL du serveur Mastodon" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "Expérimental" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "Activer Winkeyer" + +#: 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 "Sauvegarder" + +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "Mot de passe réinitialisé" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "Vous pouvez réinitialiser votre mot de passe ici" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "Mot de passe confirmé" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "Supprimer l'utilisateur" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "Etes-vous certain de supprimer le compte de l'utilisateur ?" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "Oui, supprimer l'utilisateur" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "Non, ne pas supprimer l'utilisateur" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "Mot de passe oublié ?" + +#: application/views/qso/index.php:4 +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 +msgid "Previous Contacts" +msgstr "Contacts précédents" + +#: 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: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 "Heure début" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "Heure fin" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frequence (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Bande (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Puissance Emission (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Saisissez la ouissance en Watts en utilisant uniquement des chiffres." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Par exemple: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Par exemple: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Par exemple: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Par exemple: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Par exemple: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Par exemple: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Nom du Satellite" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Mode du Satellite" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "A noter : le contenu est utilisé par Wavelog uniquement et n'est pas exporté vers d'autre services" + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Méthode" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "Récupérer le message par défaut pour ce lieu de station." + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "Nbre d'activation minimum" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "Nombre" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "Afficher la carte" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +msgstr "" + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "Enlever" + +#: 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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +msgstr "Informations complémentaires" + +#: 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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "Voir les \"réalisés\"" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "Voir les \"confirmés\"" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "Voir les \"non réalisés\"" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "Résumé" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "Total \"réalisés\"" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "Carte QSL" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "Voir la carte" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +msgid "Total confirmed" +msgstr "Total \"confirmés\"" + +#: 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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "Ville" + +#: 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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Import LoTW" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Envoyer un certificat" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Certificats disponibles" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "Date de début des QSO" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "Date de fin des QSO" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Date de création" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Date d'expiration" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Dernier téléchargement" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Expiré" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "Expiration" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Valide" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Non synchronisé" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Synchro manuelle" + +#: 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 "Envoyer certificat .p12 de LoTW" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Instruction pour l'export des fichiers .p12" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Ouvrir TQSL et aller à l'onglet Certificats Indicatifs" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Click droit sur l'indicatif désiré" + +#: 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 "Envoyer le fichier ci-dessous" + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Envoyer le fichier" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Création d'une nouvelle Note" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Vos Notes" + +#: 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 "Vous n'avez actuellement aucune note.
C'est une manière fantastique de conserver vos données comme les réglages de boite d'accord, balises, notes sur les stations etc. et c'est bien mieux que des notes papiers que vous finirez par perdre." + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Titre" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Catégorie" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antennes" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Contenu de la note " + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Enregistrer" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Edition d'une Note" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Supprimer" + +#: 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 "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" + +#: 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:366 +msgid "QSL Info" +msgstr "Info QSL" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "La carte QSL a été envoyée via le bureau" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "La carte QSL a été envoyée en direct" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "La carte QSL a été envoyée numériquement" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "La carte QSL a été envoyée via QSL Manager" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "La carte QSL a été envoyée" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "La carte QSL a été reçue via le bureau" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "La carte QSL a été reçue en direct" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "La carte QSL a été reçue numériquement" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "La carte QSL a été reçue via QSL Manager" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "La carte QSL a été reçue" + +#: application/views/view_log/qso.php:404 +msgid "This station uses LoTW." +msgstr "Cette station utilise LoTW" + +#: application/views/view_log/qso.php:409 +#: application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:419 +#: application/views/view_log/qso.php:424 +msgid "This QSO was confirmed on" +msgstr "Ce QSO est confirmé depuis le" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "Autres QSO" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "Détails" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "Sélectionner l'image \"recto\" de la QSL" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Télécharger le(s) image(s) de la QSL" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Sélectionner l'image \"verso\" de la QSL" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Marquer QSL Reçue (Electronic)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Marquer Carte QSL comme demandé (Bureau)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Marquer Carte QSL comme demandé (Direct)" + +#~ msgid " Dupes were inserted!" +#~ msgstr "Des doublons ont été insérés !" + +#~ msgid " Dupes were skipped." +#~ msgstr "Les doublons ont été ignorés." + +#~ msgid "Go to" +#~ msgstr "Allez sur " + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Remplacer le DOC existant dans le journal par DCL (si différent)" + +#~ msgid "If unchecked information about QSO which could not be found in Wavelog will be displayed." +#~ msgstr "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Wavelog seront affichées)" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.mo b/application/locale/it_IT/LC_MESSAGES/messages.mo index 31656a5b8d..b779d9454a 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 9fea1d217e..10256d140d 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: wavelog-test\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 12:34\n" "Last-Translator: \n" "Language-Team: Italian\n" @@ -17,241 +17,6961 @@ msgstr "" "X-Crowdin-File: /gettext_po_test/pot/messages.pot\n" "X-Crowdin-File-ID: 66\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Inviata" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "In coda" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Richiesta" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Invalido (Ignora)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Diretta" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Elettronica" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Ricevuta" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +msgstr "" + +#: application/controllers/Logbook.php:37 +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "Non è stato trovato nessun logbook. È necessario definire un logbook in Logbooks di Stazione! Vai qui:" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" msgstr "" +#: application/controllers/Logbook.php:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Modo" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "RST (I)" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Paese" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Stato" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Banda" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Frequenza" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Operatore" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: 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/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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:7 +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Luogo Stazione" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:229 +#: 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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Data" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Orario" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Nominativo" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "Riepilogo QSO" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Anno" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Mese" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Riepilogo Paesi" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Lavorato" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Confermato" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Necessario" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "Cartoline QSL" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "Cartoline eQSL" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" +msgstr "it-IT" + +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:5 +msgid "Select Date Range" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "Seg" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "Contea USA" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Copia" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Stato" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "Zona CQ" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Modo di Propagazione" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Dalla data" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Azzera Sessione Contest" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Log per Contest" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Tipologia Scambio" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Seriale" + +#: 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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Nome Contest" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Scambio (I)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Scambio (R)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Commento" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Salva QSO" + +#: application/views/contesting/index.php:166 +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 "Locatore" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Suggerimenti Nominativi" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Log del Contest" + +#: 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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Importa Opzioni" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Carica un File" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Importante" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "I file di log devono essere di tipo .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Scegli file" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Ottieni dati da LoTW per me" + +#: 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 "Wavelog userà il nome utente e password LoTW memorizzato nel tuo profilo per scaricare un report da LoTW per te. Il report scaricato da Wavelog avrà tutte le conferme fino alla data scelta, o fino alla ultima conferma su LoTW (recuperato dal tuo log), fino ad ora." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Importa Combinazioni LoTW" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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: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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Stazione" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Modifica QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Segna QSL Inviata (Bureau)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Segna QSL Inviata (Direct)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Segna QSL Ricevuta (Bureau)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Segna QSL Ricevuta (Diretta)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Segna QSL come richiesto" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Segna QSL non come richiesto" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Cancella QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Si" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Luogo" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Data/Orario" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +msgid "Attention: you need to set an active station location." +msgstr "Attenzione: devi impostare un luogo di stazione attiva." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Note" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Stai usando" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "di spazio sul disco per memorizzare le cartoline QSL" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "Referenza IOTA" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "Referenza SOTA" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "Referenza WWFF" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "Referenza POTA" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Generale" + +#: 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:179 +msgid "Timezone" +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:212 +msgid "Choose which unit distances will be shown in" +msgstr "" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Campi Logbook" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Scegli colonna 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Scegli colonna 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Scegli colonna 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Scegli colonna 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Scegli colonna 5 (solo per il logbook)" + +#: 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: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: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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +msgstr "Info Seg" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +msgid "Previous Contacts" +msgstr "Contatti Precedenti" + +#: 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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frequenza (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Banda (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Potenza di Trasmissione (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Dare valore di potenza in Watt. Includere solo numeri nell input." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Per esempio: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Per esempio: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Per esempio: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Per esempio: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Per esempio: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Per esempio: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Nome Satellite" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Modo Satellite" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Il contenuto della nota viene utilizzato solo all interno di Wavelog e non viene esportato in altri servizi." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Metodo" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "Il contenuto di questa nota è esportato a servizi QSL come eqsl.cc." + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "Immagine Profilo" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "Cartolina QSL" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Importa LoTW" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Carica Certificato" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Certificati Disponibili" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "Data di inizio QSO" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "Data di fine QSO" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Data di Creazione" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Data di Scadenza" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Scaduto" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Valido" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Non Sincronizzato" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "Informazione" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Sincronizzazione Manuale" + +#: 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 "Carica Certificato .p12 Logbook of the World" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Esporta Istruzioni File .p12" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Apri TQSL e vai sulla schermata Callsign Certificates" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Clicca con tasto destro sul Nominativo desiderato" + +#: 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 "Carica file qui sotto." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Carica File" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Crea Nota" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Le tue Note" + +#: 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 "Al momento non hai note, queste sono un modo fantastico per archiviare dati come impostazioni ATU, beacon e note generali della stazione ed è meglio della carta perché non puoi perderle!" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Titolo" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Categoria" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antenne" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Contenuti Nota" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Salva Nota" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Modifica Nota" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Cancella Nota" + +#: 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 "Dettagli QSO" + +#: application/views/view_log/qso.php:29 +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" + +#: 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:366 +msgid "QSL Info" +msgstr "Info QSL" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "La cartolina QSL è stata inviata via bureau" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "La cartolina QSL è stata inviata via diretta" + +#: 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 "La cartolina QSL è stata ricevuta via bureau" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "La cartolina QSL è stata ricevuta via diretta" + +#: 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 "Questo QSO è stato confermato il" + +#: 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 "Carica immagine fronte cartolina QSL" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Carica immagine cartolina QSL" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Carica immagine retro cartolina QSL" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Segna QSL Ricevuta (Elettronico)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Segna QSL come richiesto (Bureau)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Segna QSL come richiesto (Diretta)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index 2a768d2168..800994bea0 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 e8bde47b97..0d17cc1f5d 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,243 +19,6961 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Aangevraagd" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Ontvangen" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +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:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 msgid "Mode" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" msgstr "" +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Land" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" msgstr "" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" msgstr "" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Frequentie" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" -msgstr "" - +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 #: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 msgid "Deleted DXCC" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: 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/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " +msgstr "" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" msgstr "" -#: application/views/dashboard/index.php:113 +#: 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:7 +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/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Station Profiel" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" +msgstr "" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" +msgstr "" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" +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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" msgstr "" -#: application/views/dashboard/index.php:162 +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Datum" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 msgid "Time" +msgstr "Tijd" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" msgstr "" -#: application/views/dashboard/index.php:225 +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 msgid "QSOs Breakdown" -msgstr "" +msgstr "QSOs overzicht" -#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Jaar" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Maand" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Landen overzicht" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Gewerkt" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Bevestigd" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Nodig" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "QSL kaarten" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Satelliet" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Propagattie Mode" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelliet" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Herstel Contest Sessie" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Soort uitwisseling" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Volgnummer" + +#: 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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Contest Naam" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Verz (S)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Ontv (R)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Opmerking" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Wis QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Bewaar QSO" + +#: application/views/contesting/index.php:166 +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 "Roepnaam suggesties" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Contest Logboek" + +#: 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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +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 +#, 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Belangrijk" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +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/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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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: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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Wijzig QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Markeer QSL udsendt (Bureau)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Markeer QSL udsendt (Direct)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Markeer QSL ontvangen (Bureau)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Markeer QSL ontvangen (Direct)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Markeer QSL Kort anmodet om" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Markeer QSL Kort ikke påkrævet" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Wis QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Locatie" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +msgid "Attention: you need to set an active station location." +msgstr "Let op: Activeer een station profiel." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Logboek" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Aantekeningen" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Je gebruikt" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "diskruimte om QSL kaarten op te slaan" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA Referentie" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA Referentie" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF Referentie" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "POTA Referentie" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Algemeen" + +#: 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:179 +msgid "Timezone" +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: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: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: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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +msgid "Previous Contacts" +msgstr "Eerdere verbindingen" + +#: 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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frequentie (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Vermogen (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Geef vermogen in Watt. Vermeld alleen cijfers." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Bijvoorbeeld: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Bijvoorbeeld: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Bijvoorbeeld: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Bijvoorbeeld: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Bijvoorbeeld: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Bijvoorbeeld: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Satelliet Naam" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Satelliet Mode" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Notities worden alleen in Wavelog gebruikt en worden niet geexporteerd naar andere diensten." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Suggesties" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "By" + +#: 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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Upload Certificate" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "" + +#: application/views/lotw_views/index.php:129 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "" + +#: application/views/lotw_views/index.php:144 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:149 +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/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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create 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/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: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/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +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:42 +msgid "eQSL Card" +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:366 +msgid "QSL Info" +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 "Markeer QSL ontvangen (Electronic)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Markeer QSL Kort anmodet om (Bureau)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Markeer QSL Kort anmodet om (Direct)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index 758889ebfa..03f662b2e3 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 08bb5dd858..7e33b373b4 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:16+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -16,250 +16,6966 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 " -"|| n%100>14) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Wysłane" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Poproszone" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "Biuro" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Odebrane" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" msgstr "" +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +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:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Modulacja" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Kraj" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Stan" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Pasmo" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Częstotliwość" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" -msgstr "" - +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 #: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 msgid "Deleted DXCC" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: 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/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " +msgstr "" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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:7 +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Lokalizacja stacji" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:229 +#: 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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Data" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Godzina" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Znak" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "Rozkład QSO" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Rok" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Miesiąc" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Rozkład na kraje" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Pracowane" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Potwierdzone" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Wymagane" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "Karty QSL" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "Hrabstwo USA" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "Info" +msgstr "Informacja" + +#: 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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Satelita" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "Strefa CQ" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Typ propagacji" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelita" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Od daty" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Wyczyść sesje" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Logowanie Zawodów" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Typ wymiany" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Numeracja" + +#: 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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Nazwa Zawodów" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Wymiana (S)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Wymiana (R)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Komentarz" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Wyczyść łączność" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Zapisz łączność" + +#: application/views/contesting/index.php:166 +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 "Lokator" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Podpowiadanie znaków" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Log zawodów" + +#: 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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Opcje wysyłania" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Prześlij plik" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Ważne" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Pliki logu muszą mieć rozszerzenie .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Wybież plik" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Pobierz dane z LoTW za mnie" + +#: 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 "Wavelog będzie używał loginu i hasła podanego w profilu, aby pobierać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia od wybranej daty, lub ostatniej potwierdzonej łączności z LoTW (wybranej z logiu), do teraz." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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: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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Stacja" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Edytuj QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Zaznacz QSL jako wysłaną przez (Biuro)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Zaznacz QSL jako wysłaną przez (Bezpośredni)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Zaznacz QSL jako odebraną przez (Biuro)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Zaznacz QSL jako odebraną przez (Bezpośredni)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Zaznacz QSL zgodnie z żądaniem" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Zaznacz QSLjako niewymagane" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Usuń QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Tak" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Nie" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Lokalizacja" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Data/Godzina" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "Strefa ITU" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +msgid "Attention: you need to set an active station location." +msgstr "Uwaga: musisz ustawić aktywną lokalizacje stacji." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Log" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Notatki" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Używasz" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "żeby przechować dane kart QSL" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "Podmiot IOTA" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "Podmiot SOTA" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "Podmiot WWFF" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Główne" + +#: 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:179 +msgid "Timezone" +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:212 +msgid "Choose which unit distances will be shown in" +msgstr "" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Pola logu" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Kolumna 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Kolumna 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Kolumna 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Kolumna 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Kolumna 5 (tylko dla logu)" + +#: 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: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: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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +msgid "Previous Contacts" +msgstr "Poprzednie łączności" + +#: 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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Częstotliwość (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Pasmo (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Moc nadajnika (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Wpisz wartość mocy w watach. W polu podaj same cyfry." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Na przykład: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Na przykład: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Na przykład: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Na przykład: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Na przykład: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Na przykład: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Nazwa satelity" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "modulacja satelity" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Notatka jest widoczna tylko w Wavelog, nie jest wysyłana z potwierdzeniami." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Sposób" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Sugestie" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "Karta QSL" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Upload Certificate" +msgstr "Wyślij certyfikat" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Dostępne certyfikaty" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Data utworzenia" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Data wygaśnięcia" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "wygaśnięty" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Ważny" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Nie zsynchronizowany" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "Informacje" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Ręczna synchronizacja" + +#: 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 "Wyślij certyfikat .p12 Logbook of the World" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Pobierz instrukcje pliku .p12" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Otwórz aplikacje TQSL & przejdź dp zakładki Callsign Certificates" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Naciśnij prawym klawiszem myszny na żądany znak" + +#: 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 "Wyślij plik poniżej." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Wyślij plik" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Utwórz notatkę" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Twoje notatki" + +#: 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 "Nie masz jeszcze żadnej notatki, są one fantastyczną drogą do przechowywana pomocnych danych takich jak np. ustawienia skrzynki antenowej, bikony, i ogólne notatki. Są lepsze niż papierowe, bo nigdy nie giną. !" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Tyuł" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Kategoria" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antenowe" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Zawartość notatki" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Zapisz notatkę" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Edytuj notatkę" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Usuń notatkę" + +#: 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 "Szczegóły QSO" + +#: application/views/view_log/qso.php:29 +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" + +#: 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:366 +msgid "QSL Info" +msgstr "" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "Karta QSL została wysłana przez biuro" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "Karta QSL została wysłana bezpośrednio" + +#: 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 "Karta QSL została otrzymana przez biuro" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "Karta QSL została otrzymana bezpośrednio" + +#: 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 "Ta łączność została potwierdzona" + +#: 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 "Wyślij awers karty QSL" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Wyślij informacje." + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Wyślij rewers karty QSL" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Zaznacz QSL jako odebraną przez (Elektroniczny)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Zaznacz QSL zgodnie z żądaniem (Biuro)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Zaznacz QSL zgodnie z żądaniem (Bezpośredni)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index f6a768b282..a282e4f4a5 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 5f2f7289ba..21ad397f99 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:17+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -16,250 +16,6978 @@ msgstr "" "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<12 || n%100>14) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Отправлено" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "В очереди" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Запрошено" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Некорректно (Игнорировать)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "Бюро" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Напрямую" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "через" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Электронное" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Принято" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "QSO не может быть сопоставлено" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "подтверждено LoTW/Clublog/eQSL/Contest" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "подтверждено менеджером диплома" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "подтверждено кросс-проверкой с данными DCL" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "подтверждение ожидается" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "не подтверждено" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "неизвестно" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "Карта квадратов" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "Квадраты" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "Подтверждёно квадратов" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "Не подтверждёно квадратов" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +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:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" msgstr "" +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Вид модуляции" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "RST (отправлено)" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "RST (принято)" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Страна" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Штат" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" -msgstr "" +msgstr "QTH локатор" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" -msgstr "" +msgstr "Дистанция" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Диапазон" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Частота" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Оператор" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" +msgstr "Удалённые DXCC" + +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" +msgstr "Распечатать запрошенные QSL" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" +msgstr "Создать расположение станции" + +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +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/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: 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:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " +msgstr "Вы уверены, что хотите сделать эту станцию активой: " + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "Установить активной" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "Активная станция" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "Редактировать" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "Очистить лог" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "Вы уверены, что хотите удалить все QSO из этого профиля станции?" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "Удалить" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "Вы уверены, что хотите удалить профиль станции " + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr ", это удалит все QSO, содержащиеся в этом профиле станции?" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: 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/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Options.php:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: 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 "URL кэша DXCluster изменён на " + +#: 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:7 +msgid "OQRS Options" +msgstr "OQRS" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "Настройки OQRS сохранены." + +#: 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/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: application/controllers/Options.php:404 +msgid "Version Info Header changed to" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Options.php:408 +msgid "Version Info Mode changed to" msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: 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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Месторасположение станции" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " +msgstr "Редактировать расположение станции: " + +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" +msgstr "Аккаунты пользователей" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/Distances.php:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "QSOs с" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "и диапазоне" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "Статистика" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "Объединённая статистика" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "Соревнования" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "Обновить контест" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" msgstr "" -#: application/views/dashboard/index.php:225 +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "Квадраты, подтверждённые на LoTW" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "Квадраты, подтверждённые бумажными QSL" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "Карта активированных квадратов" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "Всего квадратов активировано" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Дата" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Время" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Позывной" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 msgid "QSOs Breakdown" -msgstr "" +msgstr "Статистика QSO" -#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" -msgstr "" +msgstr "Всего" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Год" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Месяц" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Статистика по странам" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Сработано" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Подтверждено" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Необходимо" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "QSL карточки" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "eQSL" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" +msgstr "Поиск позывного" + +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" +msgstr "Поиск" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +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 "Экспорт журнала контеста в формате Cabrillo" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "Выберите расположение станции:" + +#: application/views/cabrillo/index.php:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "Позывной" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "Категория оператора" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "Один оператор" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "Много операторов" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "Категория Assisted" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/cabrillo/index.php:59 +msgid "Assisted" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "Категория диапаон" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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/dashboard/index.php:321 -msgid "eQSL Cards" +#: 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/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "Экспорт" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "В вашем логе конест-сессий не найдено." + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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 "Используя список диапазонов, вы можете контролировать, какие диапазоны будут отображены при заполнении данных о новом QSO." + +#: application/views/bands/index.php:39 +msgid "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected." +msgstr "Активные диапазоны будут показаны в выпадающем списке 'Диапазон' формы ввода данных QSO, неактивные диапазоны будут скрыты и не смогут быть выбраны." + +#: application/views/bands/index.php:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "Графство США" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "Редактировать диапазон" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "Создать диапазон" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "Предупреждение! Вы уверены в том, что хотите удалить следующий диапазон: " + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "Предупреждение! Вы уверены в том, что хотите активировать все диапазоны?" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "Предупреждение! Вы уверены в том, что хотите деактивировать все диапазоны?" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "Активировать все" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +msgstr "Деактивировать все" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "Название диапазона (к прмиеру, 20м)" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "Название группы диапазонов (к примеру, hf, vhf, uhf, shf)" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "Частота SSB 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 "Частота DATA 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 "Частота CW QRG в диапазоне (в Гц)" + +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +msgid "API Keys" +msgstr "ключи API" + +#: 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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Скопировать в буфер обмена" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Статус" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Спутник" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "Пожтверждение" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "Отобразить" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "Очистить маркеры" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "Широта" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "Долгота" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "Направление" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "Количество QSO" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "Сброс" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "Континент" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "# QSO проведено" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "Сработанные дистанции" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "Данные QSO" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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 "Сработанные позывные(ной) (максимально 5 показано)" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "Выбор диапазона" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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 "Количество QSO проведённых в каждом году" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Статистика журнала." + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "по QSO" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "по уникальным позывным" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "Лента событий" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "Диплом" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "Префикс" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "Дата окончания" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "Показать QSO" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "Название" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "Зона CQ" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "Отфильтровано по" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "Сегодня" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +msgstr "Экспорт SOTA CSV" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "Экспорт вашего журнала для загрузки в SOTA." + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "Только QSO с информацией SOTA будут экспортированы!" + +#: application/views/csv/index.php:92 application/views/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Тип прохождения" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Спутник" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Начиная с даты" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "Название профиля" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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 "Журналы станции позволяют вам группировать расположения станции, это позволяет вам видеть все расположения станции в одном журнале для аналитики. Удобно если вы работает из нескольких расположений, но все они -- часть одного и того же DXCC или VUCC Circle." + +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "Создать журнал станции" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "Публичный поиск" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "Включено" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "Расположения станции определяют места работы, например, ваш QTH, QTH друзей или портативная станция." + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "Также, как и журнал, профиль станции хранит в одном месте набор QSO." + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "Создать расположение станции" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "Внимание. Вам нужно установить активное расположение станции. Перейдите в меню Позывной->Расположение станции, чтобы выбрать." + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "Предупреждение" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим профилям станции." + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "Пожалуйста, переназначьте их в " + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "Обслуживание" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Сбросить контест-сессию" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Журнал контеста" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Тип обмена" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Название контеста" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "Позывной оператора" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "Радио" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "Номер (TX)" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Обмен (TX)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "Квадрат (TX)" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "Номер (RX)" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Обмен (RX)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "Квадрат (RX)" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Комментарий" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "Сбросить QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Сохранить QSO" + +#: application/views/contesting/index.php:166 +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/add.php:16 +msgid "Using the contest list, you can control which Contests are shown when logging QSOs in a contest." +msgstr "Используя список контестов, вы можете котролировать, которые контесты будут показаны при записи QSO в контесте." + +#: 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 "название для 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:449 +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 +msgid "Activate" +msgstr "Активировать" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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 "Название контеста в спецификации ADIF" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +msgstr "" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "Название контеста для ADIF" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "Активируйте для отображения в списке контестов" + +#: application/views/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "Импорт ADIF" + +#: 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 +#, 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Важно" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Файлы журнала должны быть с расширением .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Выберите файл" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Подтянуть мои данные из LoTW" + +#: 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 "Wavelog использует логин и пароль для LoTW, сохранённые в вашем профиле, для того чтобы скачивать ваши журналы с LoTW. Журнал, скачанный в Wavelog будет содержать все подтверждения, начиная с выбранной даты, или начиная с последнего подтверждения в LoTW (загруженного из вашего журнала), до настоящего момента." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Импортировать совпадения с LoTW" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "Африка" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "Антарктика" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "Азия" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "Европа" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "Северная Америка" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "Океания" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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 "Шифрование SMTP" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "Выберите, что будет использоваться при отправке емэйл: TLS или SSL." + +#: 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 "Имя отправителя, к примеру, 'Wavelog'" + +#: 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 "Адрес, с которого будет отправляться емэйл, к примеру, 'wavelog@example.com'" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "SMTP хост" + +#: application/views/options/email.php:83 +msgid "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')" +msgstr "Адрес почтового сервера, к примеру, 'mail.example.com' (без 'ssl://' или 'tls://')" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "SMTP порт" + +#: 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 порт почтового сервера, к примеру, при использовании TLS -> '587', при использовании SSL -> '465'" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "SMTP логин" + +#: 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 "SMTP пароль" + +#: 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/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 "Используется для отображения на панели ввода QSO предупреждения об отключении радиоинтерфейса." + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +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:38 +msgid "Global text" +msgstr "Сообщение на странице OQRS" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "Необязательный текст, который может быть отображён в верхней части страницы OQRS." + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "Объединённый поиск" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "Если включено, то поиск будет осуществляться во всех местоположениях станций, где активен OQRS." + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "Радиоинтерфейсы" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "Провайдер кэша DXCluster" + +#: 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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "Экспорт KML" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "Экспорт вашего журнала в файл KML для использования в Google Earth." + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "Только QSO с заполненным полем 'квадрат' будут экспортированы!" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "Станция" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Редактировать QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Отметить QSL отправленной (через бюро)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Отметить QSL отправленой (напрямую)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Отметить QSL полученной (через бюро)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Отметить QSL полученной (напрямую)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Отметить запрос QSL-карточки" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Отметить QSL-карточка не требуется" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "Поиск в QRZ.com" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "Поиск в HamQTH" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Удалить QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "От" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "к" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "DX" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "- без - (т.е. /MM, /AM)" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "Распространение" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "QSL отправлено" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Да" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Нет" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "QSL получено" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "Верифицировано" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "Способ отправки QSL" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "Менеджер" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "Способ получения QSL" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "LoTW отправлен" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "LoTW получен" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "eQSL отправлено" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "eQSL получено" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "QSL через" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "Изображения QSL" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "Предупреждение! Вы уверены, что хотите удалить отмеченные QSO?" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "С выбранными: " + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "Обновить из колбука" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "В очередь (бюро)" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "В очередь (напрямую)" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "В очередь (электронно)" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "Отправлено (бюро)" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "Отправле (напрямую)" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "Отправлено (электронно)" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "Не отправлено" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "QSL не требуется" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "Получено (бюро)" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "Получено (напрямую)" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "Получено (электронно)" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "Создать ADIF" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "Напечатать наклейки" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "Слайдшоу QSL" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "Быстрый поиск с выбранными: " + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "Поиск DXCC" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "Поиск штата" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "Поиск квадрата" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "Поиск зоны CQ" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "Поиск вида модуляции" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "Поиск диапазона" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "Поиск IOTA" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "Поиск SOTA" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "Поиск POTA" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "Поиск WWFF" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "Быстрые фильтры" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "QSL фильтры" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "Фильтры" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "# Результаты" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "QTH" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "Дубликаты" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "Карта" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "Опции" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Дата/Время" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "от" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "сообщение QSL " + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "Зона ITU" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "Столбец" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "Пред." + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "След." + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "Включить квадрат?" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "Включить через?" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "Начать печать в?" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "Печать" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "Вам нужнго обновить версию PHP. Минимальная версия 7.4. Ваша версия" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "За сегодня ни одного QSO, время вернуться к радио!" + +#: application/views/dashboard/index.php:105 +msgid "Attention: you need to set an active station location." +msgstr "Внимание: вам нужно назначить активный профиль месторасположения станции." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "Один из ваших сертификатов LoTW истёк!" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "Как минимум, один из ваших сертификатов LoTW скоро истечёт!" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +msgid "QSOs marked" +msgstr "QSO отмечены!" + +#: 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 "QSO были отмечены, как экспортированные в LoTW." + +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "ADIF импортирован" + +#: 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 "ADIF файл импортирован." + +#: 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 "Ошибки ADIF" + +#: 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 "В ADIF присутствуют ошибки, QSOs добавлены, но эти поля не заполнены." + +#: application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "Экспорт ADIF" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "Лог-файлы должны иметь расширение .adi" + +#: 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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "Выберите расположение станции" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "Файл ADIF" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "Импортировать дубликаты QSO" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "Отметить импортированные QSO, как загруженные в LoTW" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +msgid "Select if ADIF being imported does not contain this information." +msgstr "Отметьте, если импортируемый ADIF не сожержит этой информации." + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "Отметить импортированные QSO, как загруженные в журнал HRDLog.net" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "Отметить импортированные QSO, как загруженные в журнал QRZ" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "Отметить импортированные QSO, как загруженные в журнал Clublog" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "Использовать информацию о DXCC из ADIF" + +#: application/views/adif/import.php:135 +msgid "If not selected, Wavelog will attempt to determine DXCC information automatically." +msgstr "Если не отмечено, Wavelog будет пытаться определить информацию о DXCC автоматически." + +#: 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:22 +msgid "DANGER" +msgstr "ОПАСНО" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "Игнорировать позывной станции при импорте" + +#: application/views/adif/import.php:154 +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, независимо от соответствия из выбранному расположению станции." + +#: application/views/adif/import.php:158 application/views/adif/import.php:273 +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 "Экспорт ADIF позволяет импортировать QSO в различные приложения (сервисы), такие как LoTW, Awards или просто сохранить, как резервную копию." + +#: application/views/adif/import.php:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "Отметить экспортированные QSO как загруженные в LoTW" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "Отметить экспортированные QSO как незагруженные в LoTW" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "Экспорт QSO" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "Экспортировать QSO, проведённые через спутник" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "Экспортировать все QSO, проведённые через спутник" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "Экспортировать все QSO, проведённые через спутник, подтверждённые на LoTW" + +#: application/views/adif/import.php:220 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "Если диапазон дат не выбран, то будут отмечены все QSO!" + +#: application/views/adif/import.php:228 +msgid "Mark QSOs as exported to LoTW" +msgstr "Отметить QSO как экспортированные в 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 "" + +#: application/views/adif/import.php:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "Импортировать только данные DOK из QSO, подтверждённых на DCL." + +#: application/views/adif/import.php:251 +msgid "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL." +msgstr "Снисите отметку, если вы также хотите обновить данные DOK из QSO, не подтверждённых на DCL." + +#: 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 "Если отмеченно, то Wavelog принудительно перезапишет имеющиемя данные DOK данными из журнала DCL." + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "Игнорировать несовпадающиe QSO" + +#: 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/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "Результаты обновления DCL DOK" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "Информация DCL для DOK была обновлена." + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "Не найдено QSO, которые могут быть обновлены." + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "QSO обновлены" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "QSO игнорированы" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "QSO не совпадают" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "Ошибки DOK" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "Данные DOK в вашем логе отличаются от DCL" + +#: 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/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "Экспорт DX Atlas" + +#: application/views/dxatlas/index.php:7 +msgid "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares." +msgstr "Экспорт вашего журнала для использования в DX Atlas, чтобы отобразить сработанные/подтверждённые квадраты." + +#: 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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "Отмена" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "Внимание" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "ОК" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "Предупреждение! Вы уверены в том, что хотите удалить QSO c " + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "Цвета" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "Сработано, не подтверждено" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "Не сработано" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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 "Остановитесь на мгновение. Выбранный вами DXCC устарел и больше не действителен. Проверьте, какой DXCC для данного конкретного места является правильным. Если вы уверены, проигнорируйте это предупреждение." + +#: application/views/interface_assets/footer.php:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "квадрат(/-а/-ов)" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "Всего" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "Режим разработчика" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Журнал" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "Обычный вид" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "Расширенный вид" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "Просмотр QSL" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "Просмотр eQSL" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "добавить QSO" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "добавить прошедшее QSO" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "Журнал соревнований" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "Журнал прошедших соревнований" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Заметки" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "Аналитика" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "Активированные квадраты" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "Активаторы квадратов" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "Дней с QSO" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "Континенты" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "Дипломы" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "План диапазонов" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "Общие настройки" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "Виды модуляции" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "Темы оформления" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "Обновить файлы стран" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "Отладочная информация" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "Вход" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Информация об аккаунте" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "Импорт / экспорт ADIF" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "Экспорт квадратов DX Atlas" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "Экспорт Cabrillo" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "Запросы OQRS" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "Наклейки" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "Импорт / экспорт eQSL" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "Загрузка в QO-100 Dx Club" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "Аппаратные интерфейсы" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "Помощь" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "Форум" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "Выход" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Использовано" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "дискового пространства для храниения данный QSL карточек." + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "Позывной станции, например: 4W7EST/P" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "Мощность станции (Вт)" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +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 +msgid "Station DXCC" +msgstr "DXCC" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "нет" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "город" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "Графство" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "Графство станции (Используется только для США/Аляски/Гавайев)." + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "кликните здесь" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "Квадрат" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "Получить квадрат" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA справочник" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +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 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA Справочник" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF справочник" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "POTA справочник" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "Имя подписи" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "Подпись станции (т.е. GMA).." + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "Информация о подписи" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +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 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "Загрузка в журнал HRDLog.net в реальном времени" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "Требуется подписка" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "Загрузка в журнал QRZ.com" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "Загрузка QO-100 Dx Club в реальном времени" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "OQRS включен" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "Оповещение о OQRS о емэйл" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "Убедитесь, что емэйл сконфигурирован администратором в общих настройках." + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "Текст OQRS" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "Информация, которую вы хотите добавить, касающаяся QSL." + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "Зоны" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "Имя пользователя" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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 "Настройки Wavelog" + +#: application/views/user/edit.php:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Общее" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "Шаблон" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "Язык Wavelog" + +#: application/views/user/edit.php:176 +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 "Формат даты" + +#: 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: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 "Выберите столбец 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Выберите столбец 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Выберите столбец 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Выберите столбец 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Выберите столбец 5 (только для журнала)" + +#: 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 "Записывать время завершения QSO отдельно" + +#: 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 "Отметьте, если вы хотите записывать время начала и завершения QSO раздельно. Если будет выбрано 'Нет' то время завершения QSO будет совпадать с временм начала." + +#: 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 "Показать изображение профиля партнера по QSO из его профиля на qrz.com/hamqth.com в разделе QSO журнала." + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "Пожалуйста, укажите свои учетные данные для qrz.com/hamqth.com в общем файле конфигурации." + +#: 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 "Если включено, QTH локатор будет определён на основе имени местоположения." + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "Автозаполнение QTH локатора и названия саммита по SOTA" + +#: 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 "Если включено, называние и квадрат запрашиваются по API и заполняются в поля местоположение и QTH локатор." + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "Автозаполнение QTH локатора и названия референции по WWFF" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "Автозаполнение QTH локатора и названия парка по POTA" + +#: 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: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 "Тип предыдущего QSL" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "Выберите тип QSL для отобрашения в секции предыдущих QSO." + +#: 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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Настройки для диапазона и способ подтверждения (QSL) по умолчанию" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "Диапазон по умолчанию" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "Способы подтверждения (QSL) по умолчанию" + +#: 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 "Емэйл или позывной, которые вы используете для логина в Club Log" + +#: 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 "Загрузка статуса AMSAT" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "Загружать статус QSO через спутники в" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "Сервер Mastodon" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "URL профиля пользователя Mastodon" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "Экспериментально" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "Функционал Winkeyer включен" + +#: 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/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "Сбросить пароль" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "Вы можете сбросить свой пароль здесь." + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "Да, удалить этого пользователя" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "Нет, не удалять этого пользователя" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Частота (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Диапазон (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Мощность передачи (Вт)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Укажите мощность в Ваттах (только цифры)." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Например: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Например: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Например: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Например: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Например: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Например: Q03" + +#: 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 "Содержание заметки используется только Wavelog и не экспортируется на другие сервисы." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Способ" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "СОдержимое этой заметки экспортируется в QSL сервисы, к примеру, eqsl.cc и т.п." + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Предложения" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "Минимальное количество" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "Счётчик" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "Показать карту" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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, или просто FLE, - это система, позволяющая очень быстро и эффективно регистрировать QSO. Благодаря своему синтаксису, для регистрации большого количества QSO требуется минимум вводных данных при минимальных усилиях." + +#: application/views/simplefle/index.php:14 +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 была написана DF3CB. На своем сайте он предлагает программу для Windows. Программа Simple FLE была написана OK2CQR на основе FLE от DF3CB и предоставляет веб-интерфейс для регистрации QSO." + +#: application/views/simplefle/index.php:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "Помощь по синтаксису" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "Синтакс FLE" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "Закройте и загрузите образец данных" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "Отсутствует диапазон!" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "Отсутствует вид модуляции!" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "Время не установлено!" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "Некорректная дата" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "Позывной не выбран" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "Поле 'Оператор' пусто" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "Предупреждение! Вы уверены, что хотите всё сбросить?" + +#: application/views/simplefle/index.php:31 +msgid "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!" +msgstr "Предупреждение! Вы не можете записать в журнал список QSO потому, что для некоторых QSO не указаны диапазон и/или вид модуляции!" + +#: application/views/simplefle/index.php:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "Предупреждение! Вы не можете записать в журнал список QSO потому, что для некоторых QSO не определено время!" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "Внимание! Поле данных содержит пример данных. Сначала очистите сессию логгирования!" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "Вы уверены, что хотите записаь данные QSO в журнал и очистить сессию?" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "QSO записаны!" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "QSO были успешно записаны в журнал!" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "Что это?" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "Дата QSO" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "Если вы не выберете дату, будет использована сегодняшняя." + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "Текущее время UTC" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "Позывной/расположение станции" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "Референции могут быть: SOTA, IOTA, POTA или WWFF" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "Перезагрузить список QSO" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "Сохранить в Wavelog" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +msgstr "Очистить сессию логгирования" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "Прежде чем начать регистрировать QSO, обратите внимание на основные правила:" + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "- Каждое новое QSO должно проводиться на новой строке." + +#: application/views/simplefle/syntax_help.php:3 +msgid "- On each new line, only write data that has changed from the previous QSO." +msgstr "- На каждой новой строке записывайте только те данные, которые изменились по сравнению с предыдущим QSO." + +#: 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 "Для начала убедитесь, что вы уже заполнили форму слева, указав дату, позывной станции и позывной оператора. Основные данные включают диапазон (или QRG в МГц, например, '7.145'), режим и время. После времени указывается первое QSO, которое, по сути, является позывным." + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "Например, QSO, начавшееся в 21:34 (UTC) с 4W7EST на 20 м SSB." + +#: application/views/simplefle/syntax_help.php:10 +msgid "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO." +msgstr "Если вы не предоставите никакой RST-информации, синтаксис будет использовать 59 (599 для данных). В нашем следующем QSO не было 59 с обеих сторон, поэтому мы предоставляем информацию с отправленным RST первыми. Это произошло на 2 минуты позже, чем первое QSO." + +#: 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 "Первое QSO состоялось в 21:34, а второе - на 2 минуты позже, в 21:36. Мы записываем 6, потому что это единственные данные, которые здесь изменились. Информация о диапазоне и режиме не изменилась, поэтому эти данные опущены." + +#: 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 "Для следующего QSO в 21:40 14 мая 2021 года мы сменили диапазон на 40 м, но по-прежнему на SSB. Если информация о RST не указана, то синтаксис будет использовать 59 для каждого нового QSO. Поэтому мы можем добавить еще одно QSO, состоявшееся точно в это же время двумя днями позже. Дата должна быть в формате YYYY-MM-DD." + +#: 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 "" + +#: 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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "Показать сработанные" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "Показать подтверждённые" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "Показать не сработанные" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "Таблица" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "Сводка" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "Всего сработано" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "Дипломы - CQ Magazine WAZ" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL карточка" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "Показать карту зон CQ" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "Импорт LoTW" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Загрузить сертификат" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Имеющиеся сертификаты" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "Дата начала QSO" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "Дата окончания QSO" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Дата создания" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Дата окончания срока действия" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Последняя загрузка" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Истёк" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "Истекает" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Действует" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Не синхронизирован" + +#: application/views/lotw_views/index.php:129 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "Вам необходимо загрузить сертификат LoTW в формате p12 для использования этих функций." + +#: application/views/lotw_views/index.php:144 +msgid "Information" +msgstr "Информация" + +#: application/views/lotw_views/index.php:149 +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 "Загрузка LotW .p12 сертификата" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Инструкции по экспорту .p12 файла" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Откройте TQSL & перейдите на вкладку 'Сертификаты позывных'" + +#: 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/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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create 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/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: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/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Редактировать" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +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 "Детали QSO" + +#: application/views/view_log/qso.php:29 +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 "Суммарная дистанция" + +#: 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:366 +msgid "QSL Info" +msgstr "QSL" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "QSL карточка была отправлена через бюро" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "QSL карточка была отправлена напрямую" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "Электронная QSL карточка была отправлена" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "QSL карточка была отправлена через QSL-менеджера" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "QSL карточка была отправлена" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "QSL карточка была получена через бюро" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "QSL карточка была получена напрямую" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "Электронная QSL карточка была получена" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "QSL карточка была получена через QSL-менеджера" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "QSL карточка была получена" + +#: application/views/view_log/qso.php:404 +msgid "This station uses LoTW." +msgstr "Эта станция использует LoTW." + +#: application/views/view_log/qso.php:409 +#: application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:419 +#: application/views/view_log/qso.php:424 +msgid "This QSO was confirmed on" +msgstr "Это QSO было подтверждено:" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "Больше QSO" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "Подробно" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "Загруженное изображение лицевой стороны QSL карточки" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Загрузить изображение для QSL карточки" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Загруженное изображение оборотной стороны QSL карточки" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Отметить QSL полученной (электронно)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Отметить запрос QSL-карточки (через бюро)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Отметить запрос QSL-карточки (напрямую)" + +#~ msgid " Dupes were inserted!" +#~ msgstr " Добавлены дубликаты!" + +#~ msgid " Dupes were skipped." +#~ msgstr " Дубликаты игнорированы." + +#~ msgid "Go to" +#~ msgstr "Перейдите на" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Перезаписать имеющиеся данные в журнале DOK данными из DCL (если они различны)" + +#~ msgid "If unchecked information about QSO which could not be found in Wavelog will be displayed." +#~ msgstr "Если не отмечено, будет отображена информация о QSO, не найденных в Wavelog." diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.mo b/application/locale/sv_SE/LC_MESSAGES/messages.mo index be45962ad1..d9e55232b0 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 688c742ec3..59cc32faa5 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:19+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,243 +19,6961 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Skickad" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "Köad" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "Begärd" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "Byrå" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Direkt" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Elektronisk" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Mottagen" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" +msgstr "" + +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" +msgstr "" + +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "Gridsquare karta" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "Gridsquares bekräftad" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "Gridsquares inte bekräftat" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +msgstr "Totala gridsquares arbetade" + +#: application/controllers/Logbook.php:37 +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "Ingen loggbok hittades. Du måste konfigurera en loggbok under Station Logbooks. Gör det här:" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "Stationsloggböcker" + +#: application/controllers/Logbook.php:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 msgid "Mode" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" msgstr "" +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Land" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" msgstr "" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" msgstr "" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Frekvens" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Operatör" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" +msgstr "Struket DXCC" + +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" +msgstr "Skriv ut begärda QSL" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: 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/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "Redigera" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "Radera" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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 "Wavelog-alternativ" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "Utseende" + +#: 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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +msgstr "" + +#: application/controllers/Options.php:165 +msgid "de continent changed to " +msgstr "kontinenten ändrats till " + +#: application/controllers/Options.php:170 +msgid "Maximum age of spots changed to " +msgstr "Maximal ålder för fläckar ändrad till " + +#: application/controllers/Options.php:175 +msgid "DXCluster Cache URL changed to " +msgstr "DXCluster Cache URL ändrad till " + +#: application/controllers/Options.php:185 +#: application/controllers/Options.php:196 +msgid "Radio Settings" +msgstr "Radioinställningar" + +#: application/controllers/Options.php:217 +msgid "Radio Timeout Warning changed to " +msgstr "Radio Timeout Warning ändras till " + +#: application/controllers/Options.php:229 +#: application/controllers/Options.php:240 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "E-post" + +#: 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:7 +msgid "OQRS Options" +msgstr "OQRS Alternativ" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "OQRS-alternativ har sparats." + +#: 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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Options.php:424 +msgid "Version Info will be shown to all users again" msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Options.php:432 +msgid "Version Info will not be shown to any user" +msgstr "" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "Stationsplats" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" +msgstr "" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" +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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "Statistik" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "Ackumulerad statistik" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "Tävlingar" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" msgstr "" -#: application/views/dashboard/index.php:225 +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Datum" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Tid" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Signal" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "I år" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Denna månad" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Länder Breakdown" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Körda" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Bekräftade" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "Behövs" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "QSL-kort" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Kopiera till clipboard" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Satellit" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "Kontinent" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "Arbetade avstånd" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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 "Band val" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +msgstr "" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "år" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Utforska loggboken." + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "Unika callsigns" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "Tidslinje" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satellit" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Från datum" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Nollställ denna contest-session" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Contest-loggning" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Exchange-typ" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Seriell" + +#: 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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Contest-namn" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +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 +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:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Notering" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "Spara QSO" + +#: application/views/contesting/index.php:166 +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 "Lokator" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Signal-förslag" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Contest loggbok" + +#: 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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Importinställningar" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Ladda upp en fil" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Viktigt" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Loggfil måste vara av format .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Välj fil" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Hämta LoTW data" + +#: 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 "Wavelog använder LoTW användarnamn och lösenord som är sparat i din användarprofil för att ladda ner repport från LoTW. Rapporten Wavelog kommer att ladda ner kommer att ha alla bekräftelser sedan valt datum, eller sedan din senaste LoTW-bekräftelse (hämtad från din logg), fram till nu." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Importera LoTW Matches" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "Afrika" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "Antarktis" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "Asien" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "Europa" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "Nordamerika" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "Oceanien" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +msgstr "Sydamerika" + +#: 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 +msgid "Message" +msgstr "" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "Utgående protokoll" + +#: 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 "SMTP-kryptering" + +#: 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 "E-postavsändarens namn" + +#: 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 "E-postadress" + +#: 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 "SMTP Användarnamn" + +#: 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 "SMTP Lösenord" + +#: 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/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "Radio Timeout Varning" + +#: 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 "Radiotimeout-varningen används på QSO-ingångspanelen för att uppmärksamma dig på frånkopplingar av radiogränssnittet." + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "Detta nummer är i sekunder." + +#: 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-alternativ är globala inställningar som används för alla användare av installationen, som åsidosätts om det finns en inställning på användarnivå." + +#: application/views/options/oqrs.php:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "Denna text är en valfri text som kan visas överst på OQRS-sidan." + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "Grupperad sökning" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "När detta är på kommer alla stationsplatser med OQRS aktiv att sökas på en gång." + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "Tema" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "Globalt temaval, detta används när användare inte är inloggade." + +#: 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 "Dashboard karta" + +#: 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 "Loggbok Karta" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "Detta gör det möjligt att inaktivera kartan i loggboken." + +#: 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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "Leverantör av DXClusterCache" + +#: 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:39 +msgid "DXClusterAPI" +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 "Maximal ålder för fläckar som tas om hand" + +#: 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 "Åldern i minuter av fläckar, som kommer att tas om hand vid bandplan/uppslag" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "Visa fläckar som ses från följande kontinent" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "" + +#: application/views/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "Redigera QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "Ange QSL skickad (Byrå)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "Ange QSL skickad (Direkt)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "Ange QSL mottagen (Byrå)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "Ange QSL mottagen (Direkt)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "Ange QSL Karta Begärda" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "Ange QSL Karta Inte Nödvändig" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "Radera QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Ja" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Nej" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "QTH" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "Alternativ" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Datum/Tid" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +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:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +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:126 +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:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +msgstr "Tidplotter" + +#: 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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "Totalt antal" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Loggbok" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "Översikt" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "Avancerad" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "Se QSL" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "Se eQSL" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "Live Tävlingsloggning" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "Post Tävlingsloggning" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Anteckningar" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "Analyser" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "Aktiverad Gridsquares" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "Dagar med QSOs" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "Kontinenter" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "Bandkarta" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "Globala alternativ" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "Teman" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "Uppdatera landsfiler" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "Debug Info" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Användarkontoinformation" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "OQRS Förfrågningar" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "Etiketter" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "HRDLog Loggbok" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "QRZ Loggbok" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "QO-100 Dx Club Ladda upp" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "Hårdvarugränssnitt" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "Hjälp" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "Logga ut" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "Du använder" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "av diskutrymme för sparade QSL-kort" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +msgstr "E-post" + +#: 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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "Användarnamn" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "Lösenord" + +#: application/views/user/login.php:56 +msgid "Forgot your password?" +msgstr "Glömt lösenord?" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "Skapa användarkonto" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "Redigera användarkonto" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "Användarroll" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "Personlig information" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "Förnamn" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "Efternamn" + +#: 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:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Allmänt" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "Stilmall" + +#: 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:179 +msgid "Timezone" +msgstr "Tidszon" + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "Datumformat" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "Välj hur du vill att datum ska visas när du är inloggad på ditt konto." + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "Välj i vilken enhetsavstånd som ska visas" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Logbok-fält" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Välj kolumn 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Välj kolumn 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Välj kolumn 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Välj kolumn 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Välj kolumn 5 (bara för logbok)" + +#: 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 "Visa profilbild på QSO-partner från qrz.com/hamqth.com-profilen i logg QSO-sektionen." + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "Vänligen ställ in dina qrz.com/hamqth.com-uppgifter i den allmänna inställningsfilen (config file)." + +#: 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 "Om det är inställt, hämtas gridsquare baserat på platsnamnet." + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "SOTA auto lookup gridsquare och namn för summit." + +#: 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 "Om det är inställt hämtas namn och rutnätsruta från API:t och fylls i plats och locator." + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "WWFF auto lookup gridsquare och namn för reference." + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "POTA auto lookup gridsquare och namn för park." + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "Huvudmeny" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "Visa anteckningar i huvudmenyn." + +#: 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: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 "Tidigare QSL-typ" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "Välj den typ av QSL som ska visas i föregående QSO-avsnitt." + +#: 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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +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 "Standard Band" + +#: 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 "Logbook of The World (LoTW) Användarnamn" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Logbook of The World (LoTW) Lösenord" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "eQSL.cc Användarnamn" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "eQSL.cc Lösenord" + +#: 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 "E-posten eller Call du använder för att logga in på Club Log" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Club Log Lösenord" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "AMSAT Statusuppladdning" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "Ladda upp status för SAT QSOs till" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "URL till Mastodonserver" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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 "Spara kontoändringar" + +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "Återställ lösenord" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "Bekräfta lösenord" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "Ta bort användarkonto" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "Är du säker på att du vill ta bort användarkontot" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "Ja, ta bort den här användaren" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "Nej, ta inte bort den här användaren" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "Glömt lösenord?" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:694 +msgid "Previous Contacts" +msgstr "Föregående QSOn" + +#: 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: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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frekvens (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Effekt (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Ange effekt i watt, enbart med siffror." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Exempel: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Exempel: SMFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Exempel: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Exempel: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Exempel: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Exempel: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Satellitnamn" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Satellite-mode" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Detta innehåll används bara inom Wavelog och kommer inte att exporteras." + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Metod" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "Detta innehåll exporteras till QSL-services som eqsl etc." + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Förslag" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "Profilbild" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL-kort" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "LoTW import" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Ladda upp certifikat" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Tillgängliga certifikat" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "QSO startdatum" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "QSO slutdatum" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Skapad datum" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Utgår datum" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Utgått" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "Utgår" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Giltig" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Ej synkad" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Manuell synk" + +#: 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 "Ladda upp Logbook of the World .p12 certifikat" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Exportera .p12 filinstruktioner" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Öppna TQSL & gå till Callsign Certificates tabben" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Högerklicka på önskad signal" + +#: 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 "Ladda upp filen nedan." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Ladda upp fil" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Skapa anteckning" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Dina anteckningar" + +#: 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/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Titel" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Kategori" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antenner" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Innehåll" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Spara anteckning" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Redigera anteckningar" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Radera anteckning" + +#: 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 "QSO-detaljer" + +#: application/views/view_log/qso.php:29 +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" + +#: 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:366 +msgid "QSL Info" +msgstr "QSL-info" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "QSL-kort har skickats via byrå" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "QSL-kort har skickats direkt" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "QSL-kort har skickats elektroniskt" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "QSL-kort har skickats via manager" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "QSL-kort har skickats" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "QSL-kort har mottagits via byrå" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "QSL-kort har mottagits direkt" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "QSL-kort har tagits emot elektroniskt" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "QSL-kort har tagits emot via manager" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "QSL-kort har mottagits" + +#: application/views/view_log/qso.php:404 +msgid "This station uses LoTW." +msgstr "Denna station använder LoTW. Den senaste uppladdningen var" + +#: application/views/view_log/qso.php:409 +#: application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:419 +#: application/views/view_log/qso.php:424 +msgid "This QSO was confirmed on" +msgstr "Detta QSO blev konfirmerat" + +#: 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 "Uppladdat QSL-kort bild framsida" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "Uppladdat QSL-kort bild" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Uppladdat QSL-kort bild baksida" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "Ange QSL mottagen (Elektronisk)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Ange QSL Karta Begärda (Byrå)" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Ange QSL Karta Begärda (Direkt)" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index 087057892b..3d938e300d 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 f5596de751..8c5b2732ac 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:20+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,243 +19,6961 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "Gönderilen" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "Sıralanan" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "İstenen" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "Geçersiz (Yok say)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "Büro" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "Direk" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "üzerinden" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "Elektronik" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "Gelen" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +msgstr "" + +#: application/controllers/Logbook.php:37 +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "Kayıt defteri bulunamadı. İstasyon Kayıt Defterleri altında bir kayıt defteri tanızlamanız lazım! Buradan yapın:" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "" + +#: application/controllers/Logbook.php:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" msgstr "" +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "Mod" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "RST (G)" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "RST (A)" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "Ülke" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "Eyalet" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" msgstr "" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" msgstr "" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "Bant" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "Frekans" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "Operatör" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +msgid "Disabled" msgstr "" -#: application/views/dashboard/index.php:82 -#, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Stationsetup.php:263 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: 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/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" -msgstr[1] "" +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 -msgid "Callsign" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" +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:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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/views/dashboard/index.php:112 -msgid "Click here" +#: application/controllers/Options.php:299 +msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/views/dashboard/index.php:113 +#: application/controllers/Options.php:310 +#: application/controllers/Options.php:320 +#: application/views/options/sidebar.php:7 +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/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" -msgstr[1] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "İstasyon Konumu" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" msgstr "" -#: application/views/dashboard/index.php:229 +#: 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/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "Tarih" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "Saat" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "Çağrı" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "QSO'ların Analizi" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 msgid "Total" msgstr "" -#: application/views/dashboard/index.php:234 +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 msgid "Year" -msgstr "" +msgstr "Yıl" -#: application/views/dashboard/index.php:239 +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 msgid "Month" -msgstr "" +msgstr "Ay" -#: application/views/dashboard/index.php:248 +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 msgid "Countries Breakdown" -msgstr "" +msgstr "Ülke Analizi" -#: application/views/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Worked" -msgstr "" +msgstr "Çalışılanlar" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 msgid "Confirmed" -msgstr "" +msgstr "Onaylanan" -#: application/views/dashboard/index.php:265 +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 msgid "Needed" -msgstr "" +msgstr "İstenenler" -#: application/views/dashboard/index.php:273 +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 msgid "QSL Cards" +msgstr "QSL Kartları" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "eQSL Kartları" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +msgid "Proceed" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/cabrillo/index.php:3 +msgid "Select Year" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/cabrillo/index.php:4 +msgid "Select Contest" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 +msgid "Callsign" +msgstr "" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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:39 +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:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" +msgstr "" + +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" +msgstr "" + +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "" + +#: application/views/bands/index.php:51 +msgid "H26" +msgstr "" + +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" + +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" +msgstr "" + +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" +msgstr "İmza" + +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "ABD İlçesi" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" +msgstr "" + +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +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:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +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:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +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/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +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. WavelogCAT). 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 +msgid "The API URL for this Wavelog instance is" +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 +msgid "Copy to clipboard" +msgstr "Panoya kopyala" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "Info" +msgstr "Bilgiler" + +#: 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/index.php:51 +#: application/views/cron/edit.php:30 +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/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "Durum" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "Uydu" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "CQ Alanı" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +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/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "Yayın Mode" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Uydu" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Tarihten itibaren" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Yarışma oturumunu baştan başlat" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Haberleşme Tipi" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Seri numarası" + +#: 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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "Yarışma İsmi" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "Telsiz" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "Exch (G)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "Exch (A)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "Yorum" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "QSO'yu baştan başlat" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "QSO'yu kaydet" + +#: application/views/contesting/index.php:166 +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 "Konum kodu" + +#: application/views/contesting/index.php:187 +msgid "Callsign Suggestions" +msgstr "Çağrı Kodu Önerileri" + +#: application/views/contesting/index.php:194 +msgid "Contest Logbook" +msgstr "Yarışma kayıt defteri" + +#: 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:449 +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 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +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/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "İçe Aktarma Seçenekleri" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Bir Dosya Yükle" + +#: 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Önemli" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Günlük dosyaları .adi dosya tipine sahip olmalıdır" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Dosya seç" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Benim için LoTW verilerini çek" + +#: 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 "Wavelog, sizin için LoTW'den bir rapor indirmek için kullanıcı profilinizde kayıtlı LoTW kullanıcı adını ve şifreyi kullanacak. Wavelog indirmeleri raporu, seçilen tarihten itibaren veya son LoTW onayınızdan (günlüğünüzden alınır) bu yana şimdiye kadarki tüm onaylara sahip olacaktır." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "LoTW Eşleşmelerini İçe Aktar" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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: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/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/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:38 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:58 +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/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/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "İstasyon" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "QSO değiştirme" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "QSL'i Gönderildi Olarak İşaretle (Ofis)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "QSL'i Gönderildi Olarak İşaretle (Doğrudan)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "QSL'i alındı Olarak İşaretle (Ofis)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "QSL'i alındı Olarak İşaretle (Doğrudan)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "QSL'i gerektiği gibi işaretleyin" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "QSL'i gerekli değil olarak işaretleyin" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "QSO'yu sil" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "to" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "Evet" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "Hayır" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "Yönetici" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "Konum" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Tarih/Saat" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, 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:98 +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:105 +msgid "Attention: you need to set an active station location." +msgstr "Dikkat: aktif bir istasyon konumu ayarlamanız gerekir." + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:290 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.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/adif/import_success.php:12 +msgid "ADIF Imported" +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/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +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:22 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:154 +msgid "If selected, Wavelog will try to import all 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 +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: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 +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 "Ignore QSOs that cannot be matched" + +#: 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/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 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: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: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/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/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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:608 +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:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Kayıt defteri" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "Notlar" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "QSL kart varlıklarınızı depolamak için" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "kadar disk alanı kullanıyorsunuz" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:49 +#: application/views/station_profile/edit.php:69 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA Referansı" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA Referansı" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF Referansı" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "POTA Referansı" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:176 +#: application/views/station_profile/edit.php:281 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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: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/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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "Genel" + +#: 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:179 +msgid "Timezone" +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:212 +msgid "Choose which unit distances will be shown in" +msgstr "" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Kayıt defteri alanları" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "1. sütunu seçin" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "2. sütunu seçin" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "3. sütunu seçin" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "4. sütunu seçin" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "5. sütunu seçin (sadece kayıt defteri için)" + +#: 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: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: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:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +msgstr "İmza bilgisi" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +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/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +msgid "Previous Contacts" +msgstr "Önceki Görüşmeler" + +#: 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:33 +msgid "Sat" +msgstr "Uydu" + +#: 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:322 application/views/view_log/qso.php:98 +msgid "Frequency (RX)" +msgstr "Frekans (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Bant (RX)" + +#: application/views/qso/index.php:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "Yayın Gücü (W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "Gücü Watt olarak veriniz. Sadece rakamları giriniz." + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "Örnek: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "Örnek: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Örnek: PA-0150. Multiple values allowed." + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "Örnek: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "Örnek: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "Örnek: Q03" + +#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +msgid "Satellite Name" +msgstr "Uydu Adı" + +#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +msgid "Satellite Mode" +msgstr "Uydu Modu" + +#: application/views/qso/index.php:538 +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "Not içeriği yalnızca Wavelog içinde kullanılır ve diğer servislere aktarılmaz" + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "Metod" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "Bu not içeriği eqsl.cc gibi QSL servislere aktarılır" + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "Öneriler" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "Profil Resmi" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:13 +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:14 +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:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: application/views/simplefle/index.php:31 +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:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +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/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +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: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 requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +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/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +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/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +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:23 +msgid "Number of Refs" +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/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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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:20 +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:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:19 +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 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL Kartı" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +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 +#, 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/was/index.php:18 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:19 +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:20 +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:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:19 +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:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:18 +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 +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:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC 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:111 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +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/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/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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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/dxcc/index.php:14 +msgid "DXCC Award" +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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "LoTW İçe Aktarma" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Sertifika Yükle" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Mevcut Sertifikalar" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "QSO Başlama Tarihi" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "QSO Sonu Tarihi" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "Oluşturma Tarihi" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "Geçeriliğini Yitirme Tarihi" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "Last upload" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "Süresi doldu" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "Geçerli" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "Senkronize Edilmedi" + +#: application/views/lotw_views/index.php:129 +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 +msgid "Information" +msgstr "Bilgi" + +#: application/views/lotw_views/index.php:149 +msgid "Manual Sync" +msgstr "Manuel Senkronizasyon" + +#: 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 "Dünya Kayıt Defterinin .p12 Sertifikasını Yükle" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr ".p12 Dosya Talimatlarını Dışa Aktar" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "TQSL & Çağrı İmzası Sertifikaları Sekmesine gidin" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "İstenen Çağrı İşaretine sağ tıklayın" + +#: 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 "Aşağıdaki Dosyayı Yükleyin." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Dosya Yükle" + +#: 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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Not yarat" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Notlarınız" + +#: 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 "Şu anda bir notunuz yok. Bunlar ATU ayarları, işaretçiler ve genel istasyon notları gibi verileri saklamanın harika bir yoludur ve onları kaybedemeyeceğiniz için kağıttan daha iyidir!" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Başlık" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Sınıf" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antenler" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Not içeriği" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Notu kaydet" + +#: application/views/notes/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Notu düzenle" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Notu sil" + +#: 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 "QSO detayları" + +#: application/views/view_log/qso.php:29 +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" + +#: 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:366 +msgid "QSL Info" +msgstr "QSL Bilgileri" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "QSL kartı büro üzerinden gönderildi" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "QSL kartı direkt gönderildi" + +#: 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 "QSL kartı büro üzerinden alındı" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "QSL kartı direkt alındı" + +#: 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 "Bu QSO'nun onaylandığı tarih" + +#: 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 "Yüklenen QSL kartının ön resmi" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "QSL kardını yükle" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "Yüklenen QSL kartının arka resmi" + +#: application/views/view_log/qso.php:656 +msgid "Mark QSL Received (Electronic)" +msgstr "QSL'i alındı Olarak İşaretle (Elektronik)" + +#: application/views/view_log/qso.php:662 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "QSL'i gerektiği gibi işaretleyin" + +#: application/views/view_log/qso.php:664 +msgid "Mark QSL Card Requested (Direct)" +msgstr "QSL'i gerektiği gibi işaretleyin" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "Overwrite exisiting DOK in log by DCL (if different)" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 87ce216a2c..d56722cebc 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 d651250876..2b9a8f5bc2 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-05 12:34+0000\n" +"POT-Creation-Date: 2024-06-07 02:34+0200\n" "PO-Revision-Date: 2024-06-05 15:20+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,240 +19,6971 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.4.4\n" -#: application/views/dashboard/index.php:4 -msgid "Mode" +#: src/QSLManager/QSO.php:266 src/QSLManager/QSO.php:365 +#: src/QSLManager/QSO.php:402 application/views/visitor/index.php:288 +#: application/views/visitor/index.php:311 +#: application/views/visitor/index.php:329 +#: 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:328 +#: application/views/search/search_result_ajax.php:358 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/dashboard/index.php:268 +#: application/views/dashboard/index.php:295 +#: application/views/dashboard/index.php:316 +#: application/views/dashboard/index.php:337 +#: application/views/qso/index.php:550 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:247 +msgid "Sent" +msgstr "已发送" + +#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:354 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qso/index.php:556 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +msgid "Queued" +msgstr "已排队" + +#: src/QSLManager/QSO.php:272 src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:298 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/logbookadvanced/index.php:289 +#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:353 +#: application/views/logbookadvanced/index.php:364 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/dashboard/index.php:280 +#: application/views/qso/index.php:555 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +msgid "Requested" +msgstr "已请求" + +#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/logbookadvanced/index.php:291 +#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:343 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:365 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/qso/index.php:557 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +msgid "Invalid (Ignore)" +msgstr "无效(忽略)" + +#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/logbookadvanced/index.php:309 +#: application/views/logbookadvanced/index.php:319 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/qso/index.php:568 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:206 +#: application/views/qslprint/qslprint.php:5 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +msgid "Bureau" +msgstr "卡片局" + +#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:320 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/qso/index.php:567 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:207 +#: application/views/qslprint/qslprint.php:6 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +msgid "Direct" +msgstr "直邮" + +#: src/QSLManager/QSO.php:298 +#: application/views/search/search_result_ajax.php:205 +#: application/views/oqrs/qsolist.php:75 application/views/qso/index.php:576 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qslprint/qslprint.php:28 +#: application/views/view_log/partial/log_ajax.php:170 +msgid "Via" +msgstr "通过" + +#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/logbookadvanced/index.php:311 +#: application/views/logbookadvanced/index.php:321 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/qso/index.php:569 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:208 +#: application/views/qslprint/qslprint.php:7 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +msgid "Electronic" +msgstr "电子" + +#: src/QSLManager/QSO.php:311 src/QSLManager/QSO.php:377 +#: src/QSLManager/QSO.php:415 application/views/visitor/index.php:293 +#: application/views/visitor/index.php:316 +#: application/views/visitor/index.php:334 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:311 +#: application/views/search/search_result_ajax.php:341 +#: application/views/search/search_result_ajax.php:371 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:274 +#: application/views/dashboard/index.php:301 +#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:343 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:180 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:233 +#: application/views/view_log/partial/log_ajax.php:240 +#: application/views/view_log/partial/log_ajax.php:248 +msgid "Received" +msgstr "已收到" + +#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:377 +#: application/controllers/Logbook.php:670 +#: application/views/activated_gridmap/index.php:66 +#: application/views/timeline/index.php:59 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:311 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:172 +#: application/views/dashboard/index.php:246 +#: application/views/user/edit.php:563 application/views/user/edit.php:659 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:180 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/helvetia/index.php:57 +#: application/views/awards/cq/index.php:58 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/was/index.php:57 +#: application/views/awards/itu/index.php:58 +#: application/views/awards/waja/index.php:57 +#: application/views/awards/rac/index.php:49 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/dxcc/index.php:65 +#: application/views/view_log/qso.php:408 +#: application/views/view_log/partial/log_ajax.php:232 +#: application/views/view_log/partial/log_ajax.php:233 +msgid "LoTW" msgstr "" -#: application/views/dashboard/index.php:5 -msgid "RSTS" +#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: application/controllers/Logbook.php:673 +#: application/views/activated_gridmap/index.php:74 +#: application/views/timeline/index.php:63 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/dashboard/index.php:246 +#: application/views/station_profile/edit.php:278 +#: application/views/user/edit.php:564 application/views/user/edit.php:667 +#: application/views/user/edit.php:731 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/helvetia/index.php:61 +#: application/views/awards/cq/index.php:62 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/was/index.php:61 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/waja/index.php:61 +#: application/views/awards/rac/index.php:53 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/dxcc/index.php:69 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:220 +msgid "eQSL" msgstr "" -#: application/views/dashboard/index.php:6 -msgid "RSTR" +#: application/models/Logbook_model.php:4129 +msgid "QSO could not be matched" +msgstr "QSO 无法匹配" + +#: application/models/Logbook_model.php:4135 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" + +#: application/models/Logbook_model.php:4140 +msgid "confirmed by award manager" +msgstr "已经通过奖项管理员确认" + +#: application/models/Logbook_model.php:4143 +msgid "confirmed by cross-check of DCL data" +msgstr "已经通过 DCL 数据交叉检查确认" + +#: application/models/Logbook_model.php:4146 +msgid "confirmation pending" +msgstr "等待确认" + +#: application/models/Logbook_model.php:4149 +msgid "unconfirmed" +msgstr "未确认" + +#: application/models/Logbook_model.php:4152 +msgid "unknown" +msgstr "未知" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:135 +msgid "Gridsquare Map" +msgstr "网格地图" + +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:372 +#: application/controllers/Awards.php:895 +#: application/controllers/Awards.php:927 +#: application/controllers/Activated_gridmap.php:31 +#: application/views/activators/index.php:101 +msgid "Gridsquares" +msgstr "网格" + +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:373 +#: application/controllers/Activated_gridmap.php:32 +msgid "Gridsquares confirmed" +msgstr "已确认的网格" + +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:374 +#: application/controllers/Activated_gridmap.php:33 +msgid "Gridsquares not confirmed" +msgstr "未确认的网格" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:375 +msgid "Total gridsquares worked" +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:667 +#: application/controllers/Logbook.php:682 +#: application/views/activated_gridmap/index.php:58 +#: application/views/timeline/index.php:55 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/eqslcard/index.php:34 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 application/views/qso/index.php:42 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qslprint/qslprint.php:28 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:53 +#: application/views/awards/rac/index.php:45 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/dxcc/index.php:61 +#: application/views/qslcard/index.php:33 +msgid "QSL" msgstr "" +#: application/controllers/Logbook.php:1275 +#: application/views/visitor/index.php:6 +#: application/views/activated_gridmap/index.php:39 +#: application/views/continents/index.php:39 +#: 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/csv/index.php:42 +#: application/views/contesting/index.php:57 +#: application/views/contesting/index.php:203 +#: application/views/kml/index.php:31 +#: application/views/components/hamsat/table.php:30 +#: application/views/search/search_result_ajax.php:4 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/cqzones_result.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/public_search/result.php:15 +#: application/views/oqrs/qsolist.php:9 application/views/dashboard/index.php:4 +#: application/views/adif/dcl_success.php:33 +#: application/views/dxatlas/index.php:42 +#: application/views/accumulate/index.php:28 +#: application/views/gridmap/index.php:65 +#: application/views/eqslcard/index.php:29 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/qso/index.php:136 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/simplefle/index.php:131 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qslprint/qslprint.php:24 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/cq/index.php:86 +#: application/views/awards/dok/index.php:87 +#: application/views/awards/was/index.php:85 +#: application/views/awards/itu/index.php:86 +#: application/views/awards/waja/index.php:85 +#: application/views/awards/rac/index.php:77 +#: application/views/awards/jcc/index.php:84 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/dxcc/index.php:158 +#: 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/debug/index.php:509 application/views/view_log/qso.php:104 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +msgid "Mode" +msgstr "模式" + +#: application/controllers/Logbook.php:1276 +#: application/views/visitor/index.php:9 +#: application/views/contesting/index.php:111 +#: application/views/contesting/index.php:204 +#: application/views/search/search_result_ajax.php:5 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/useroptions.php:38 +#: 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/qso/index.php:177 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/simplefle/index.php:132 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qslprint/qslprint.php:26 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: 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/view_log/qso.php:109 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +msgid "RST (S)" +msgstr "信号报告(发)" + +#: application/controllers/Logbook.php:1277 +#: application/views/visitor/index.php:12 +#: application/views/contesting/index.php:131 +#: application/views/contesting/index.php:205 +#: application/views/search/search_result_ajax.php:6 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/useroptions.php:42 +#: 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/qso/index.php:182 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/simplefle/index.php:133 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qslprint/qslprint.php:27 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: 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/view_log/qso.php:114 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +msgid "RST (R)" +msgstr "信号报告(收)" + +#: application/controllers/Logbook.php:1278 +#: application/views/visitor/index.php:15 +#: application/views/timeline/index.php:116 +#: application/views/stationsetup/stationsetup.php:121 +#: application/views/search/search_result_ajax.php:7 #: application/views/dashboard/index.php:7 +#: application/views/station_profile/index.php:43 +#: 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/qso/components/previous_contacts.php:82 +#: 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/view_log/qso.php:235 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 msgid "Country" -msgstr "" +msgstr "DXCC 实体" +#: application/controllers/Logbook.php:1279 +#: application/views/visitor/index.php:18 application/views/bands/index.php:52 +#: application/views/timeline/index.php:173 +#: application/views/search/search_result_ajax.php:8 +#: application/views/logbookadvanced/index.php:157 +#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:177 +#: application/views/station_profile/edit.php:188 +#: 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/qso/components/previous_contacts.php:83 +#: application/views/awards/iota/index.php:169 +#: 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/view_log/partial/log_ajax.php:8 msgid "IOTA" msgstr "" +#: application/controllers/Logbook.php:1280 +#: application/views/visitor/index.php:21 application/views/bands/index.php:57 +#: application/views/search/search_result_ajax.php:9 +#: application/views/logbookadvanced/index.php:263 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:175 +#: application/views/station_profile/edit.php:216 +#: 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/qso/components/previous_contacts.php:84 +#: application/views/awards/index.php:8 +#: 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/view_log/partial/log_ajax.php:9 msgid "SOTA" msgstr "" +#: application/controllers/Logbook.php:1281 +#: application/views/bands/index.php:62 +#: application/views/search/search_result_ajax.php:10 +#: application/views/logbookadvanced/index.php:267 #: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:169 +#: application/views/station_profile/edit.php:229 +#: 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/qso/components/previous_contacts.php:85 +#: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" msgstr "" +#: application/controllers/Logbook.php:1282 +#: application/views/bands/index.php:54 +#: application/views/search/search_result_ajax.php:11 +#: application/views/logbookadvanced/index.php:271 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:179 +#: application/views/station_profile/edit.php:242 +#: 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/qso/components/previous_contacts.php:86 +#: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" msgstr "" -#: application/views/dashboard/index.php:12 +#: application/controllers/Logbook.php:1283 +#: application/views/visitor/index.php:24 +#: application/views/timeline/index.php:148 +#: application/views/contesting/index.php:173 +#: application/views/search/search_result_ajax.php:12 +#: application/views/logbookadvanced/index.php:169 +#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/dashboard/index.php:12 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/qso/components/previous_contacts.php:87 +#: application/views/awards/was/index.php:149 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/rac/index.php:141 +#: 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/view_log/partial/log_ajax.php:12 msgid "State" -msgstr "" +msgstr "州" +#: application/controllers/Logbook.php:1284 +#: application/views/visitor/index.php:27 +#: application/views/activated_gridmap/index.php:106 +#: application/views/timeline/index.php:228 +#: application/views/stationsetup/stationsetup.php:122 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 +#: application/views/search/search_result_ajax.php:13 +#: application/views/search/cqzones_result.php:12 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/dashboard/index.php:13 +#: application/views/gridmap/index.php:150 +#: application/views/station_profile/index.php:44 +#: 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/qso/index.php:279 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/simplefle/index.php:134 +#: application/views/awards/vucc/band.php:12 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: 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/view_log/qso.php:515 +#: application/views/view_log/partial/log_ajax.php:13 msgid "Gridsquare" -msgstr "" +msgstr "网格坐标" +#: application/controllers/Logbook.php:1285 +#: application/views/visitor/index.php:30 +#: application/views/activated_gridmap/index.php:108 +#: application/views/distances/index.php:13 +#: application/views/search/search_result_ajax.php:14 +#: application/views/logbookadvanced/index.php:11 #: application/views/dashboard/index.php:14 +#: application/views/gridmap/index.php:152 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/qso/components/previous_contacts.php:89 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/view_log/partial/log_ajax.php:14 msgid "Distance" -msgstr "" +msgstr "距离" +#: application/controllers/Logbook.php:1286 +#: application/views/visitor/index.php:33 application/views/bands/index.php:47 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/activated_gridmap/index.php:8 +#: application/views/continents/index.php:30 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 application/views/csv/index.php:31 +#: application/views/contesting/index.php:70 +#: application/views/contesting/index.php:202 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/kml/index.php:19 +#: application/views/search/search_result_ajax.php:15 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/cqzones_result.php:11 +#: application/views/logbookadvanced/index.php:188 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/public_search/result.php:16 +#: application/views/oqrs/qsolist.php:10 #: application/views/dashboard/index.php:15 +#: application/views/adif/dcl_success.php:32 +#: application/views/dxatlas/index.php:31 +#: application/views/timeplotter/index.php:14 +#: application/views/accumulate/index.php:18 +#: application/views/gridmap/index.php:10 +#: application/views/eqslcard/index.php:32 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/qso/index.php:151 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/activators/index.php:7 +#: application/views/simplefle/index.php:130 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qslprint/qslprint.php:25 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/helvetia/index.php:71 #: application/views/awards/cq/index.php:72 +#: application/views/awards/dok/index.php:73 +#: application/views/awards/was/index.php:71 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/waja/index.php:71 +#: application/views/awards/rac/index.php:63 +#: application/views/awards/jcc/index.php:70 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wwff/index.php:35 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/dxcc/index.php:113 +#: 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/debug/index.php:510 application/views/view_log/qso.php:87 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 msgid "Band" -msgstr "" +msgstr "频段" -#: application/views/dashboard/index.php:16 +#: application/controllers/Logbook.php:1287 +#: application/views/visitor/index.php:36 +#: application/views/contesting/index.php:87 +#: application/views/bandmap/list.php:110 +#: application/views/search/search_result_ajax.php:16 +#: application/views/dashboard/index.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/qso/index.php:169 +#: application/views/qso/components/previous_contacts.php:91 +#: 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/view_log/qso.php:93 +#: application/views/view_log/partial/log_ajax.php:16 msgid "Frequency" -msgstr "" +msgstr "频率" -#: application/views/dashboard/index.php:17 +#: application/controllers/Logbook.php:1288 +#: application/views/visitor/index.php:39 +#: application/views/search/search_result_ajax.php:17 +#: application/views/logbookadvanced/index.php:275 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/dashboard/index.php:17 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/qso/components/previous_contacts.php:92 +#: application/views/simplefle/index.php:100 +#: 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/view_log/qso.php:535 +#: application/views/view_log/partial/log_ajax.php:17 msgid "Operator" +msgstr "操作员" + +#: application/controllers/Logbook.php:1310 +#: application/controllers/Stationsetup.php:373 +#: application/views/timeline/index.php:132 application/views/csv/index.php:65 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:146 +#: application/views/lookup/index.php:31 application/views/kml/index.php:54 +#: application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/timeplotter/index.php:33 +#: application/views/interface_assets/footer.php:605 +#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:54 +#: application/views/station_profile/edit.php:78 +#: application/views/qso/index.php:368 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:229 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:234 +#: application/views/lotw_views/index.php:56 +#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:529 +#: application/views/view_log/partial/log_ajax.php:29 +msgid "Deleted DXCC" +msgstr "删除 DXCC 实体" + +#: application/controllers/Qslprint.php:46 +#: application/views/interface_assets/header.php:401 +msgid "Print Requested QSLs" +msgstr "打印请求的QSL卡片" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:471 +msgid "Station Setup" +msgstr "设置台站" + +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 +msgid "Not allowed" msgstr "" -#: application/views/dashboard/index.php:18 -msgid "Name" +#: 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:428 +msgid "Error" msgstr "" -#: application/views/dashboard/index.php:28 -msgid "Deleted DXCC" +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" msgstr "" -#: application/views/dashboard/index.php:57 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" msgstr "" -#: application/views/dashboard/index.php:63 -msgctxt "Dashboard Warning" -msgid "You need to update country files! Go here to do it:" +#: application/controllers/Stationsetup.php:226 +#: application/controllers/Station.php:55 +msgid "Create Station Location" +msgstr "创建台站地址" + +#: application/controllers/Stationsetup.php:253 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:240 +#: application/views/station_profile/edit.php:312 +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/stationsetup/stationsetup.php:46 +#: application/views/interface_assets/header.php:469 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" msgstr "" -#: application/views/dashboard/index.php:63 -msgid "Update Country Files" +#: 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/views/dashboard/index.php:69 -msgctxt "Dashboard Warning" -msgid "You have no station locations. Go here to do it:" +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Are you sure you want to make the following station the active station: " +msgstr "确认将如下台站设为启用状态:" + +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/station_profile/index.php:69 +msgid "Set Active" +msgstr "设置启用" + +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 +#: application/views/station_profile/index.php:71 +msgid "Active Station" +msgstr "启用的台站" + +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 +#: application/views/interface_assets/header.php:112 +#: application/views/station_profile/index.php:76 +#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/qso/index.php:20 application/views/simplefle/index.php:27 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/api/help.php:57 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 +#: application/views/contesting/add.php:59 application/views/cron/index.php:56 +#: application/views/station_profile/index.php:46 +#: application/views/station_profile/index.php:79 +#: application/views/user/main.php:52 +msgid "Edit" +msgstr "编辑用户" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:54 +#: application/views/station_profile/index.php:98 +msgid "Empty Log" +msgstr "日志为空" + +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:179 +#: application/views/station_profile/index.php:98 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "确认删除台站下的所有 QSO?" + +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 +#: application/views/station_profile/index.php:47 +#: application/views/station_profile/index.php:82 +msgid "Copy" +msgstr "复制" + +#: application/controllers/Stationsetup.php:364 +#: application/views/api/help.php:61 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/contesting/add.php:62 +#: application/views/logbookadvanced/index.php:485 +#: application/views/station_profile/index.php:55 +#: application/views/station_profile/index.php:102 +#: application/views/user/main.php:54 +#: application/views/lotw_views/index.php:118 +msgid "Delete" +msgstr "删除用户" + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "Are you sure you want delete station profile " +msgstr "确认删除该台站 " + +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:183 +#: application/views/station_profile/index.php:102 +msgid "This will delete all QSOs within this station profile?" +msgstr "此操作会删除所有该台站的 QSO" + +#: application/controllers/Stationsetup.php:371 +msgid "NONE" msgstr "" -#: application/views/dashboard/index.php:69 -#: application/views/dashboard/index.php:75 -msgid "Stationsetup" +#: application/controllers/Stationsetup.php:454 +msgid "Edit Export Map options" msgstr "" -#: application/views/dashboard/index.php:75 -msgctxt "Dashboard Warning" -msgid "You have no station logbook. Go here to do it:" +#: 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 "Wavelog 设置" + +#: 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/views/dashboard/index.php:82 +#: application/controllers/Options.php:137 +#: application/controllers/Options.php:148 +#: application/views/options/sidebar.php:8 +msgid "DXCluster" +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 "DXCluster Cache 的网址已更换为: " + +#: 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:7 +msgid "OQRS Options" +msgstr "OQRS 设置" + +#: application/controllers/Options.php:333 +msgid "OQRS options have been saved." +msgstr "OQRS 选项已保存" + +#: 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/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "本年QSO总数" + +#: application/controllers/Sattimers.php:41 #, php-format -msgid "You have had %d QSO today" -msgid_plural "You have had %d QSOs today" -msgstr[0] "" +msgid "You have no station locations. Go %s to create it!" +msgstr "" -#: application/views/dashboard/index.php:86 -#: application/views/dashboard/index.php:130 -#: application/views/dashboard/index.php:136 -msgid "Important" +#: application/controllers/Sattimers.php:41 +#: application/views/dashboard/index.php:65 +#: application/views/dashboard/index.php:74 +#: application/views/dashboard/index.php:83 +#: application/views/awards/iota/index.php:19 +msgid "here" msgstr "" -#: application/views/dashboard/index.php:86 -msgid "You have made no QSOs today; time to turn on the radio!" +#: application/controllers/Sattimers.php:44 +msgid "Satellite Timers" msgstr "" -#: application/views/dashboard/index.php:93 -msgid "Attention: you need to set an active station location." +#: application/controllers/Station.php:35 +#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/views/search/search_result_ajax.php:18 +#: application/views/dxatlas/index.php:19 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:424 +#: application/views/user/edit.php:331 application/views/qso/index.php:300 +#: application/views/qslprint/index.php:20 application/views/view_log/qso.php:9 +#: application/views/view_log/partial/log_ajax.php:18 +msgid "Station Location" +msgstr "电台站地址" + +#: application/controllers/Station.php:70 +msgid "Edit Station Location: " +msgstr "修改台站地址:" + +#: application/controllers/User.php:12 +#: application/views/interface_assets/header.php:259 +msgid "User Accounts" +msgstr "用户账户" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +#: application/views/user/main.php:3 application/views/user/main.php:46 +msgid "User" +msgstr "用户" + +#: application/controllers/User.php:662 application/controllers/User.php:665 +msgid "edited" +msgstr "已编辑" + +#: application/controllers/Distances.php:82 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "QSO 与" + +#: application/controllers/Distances.php:82 +msgid "and band" +msgstr "和波段" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:133 +msgid "Statistics" +msgstr "统计" + +#: application/controllers/Accumulated.php:21 +#: application/views/interface_assets/header.php:147 +msgid "Accumulated Statistics" +msgstr "累积统计" + +#: application/controllers/Contesting.php:99 +#: application/views/interface_assets/header.php:265 +msgid "Contests" +msgstr "比赛" + +#: application/controllers/Contesting.php:113 +msgid "Update Contest" +msgstr "更新竞赛" + +#: application/controllers/Awards.php:896 +#: application/controllers/Awards.php:928 +msgid "Gridsquares worked" +msgstr "已通联的网格" + +#: application/controllers/Awards.php:897 +#: application/controllers/Awards.php:929 +msgid "Gridsquares confirmed on LoTW" +msgstr "在 LoTW 上确认的网格" + +#: application/controllers/Awards.php:898 +#: application/controllers/Awards.php:930 +msgid "Gridsquares confirmed by paper QSL" +msgstr "通过纸质 QSL 确认的网格" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "激活的网格" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "总激活的网格" + +#: application/views/visitor/index.php:148 +#: application/views/timeline/index.php:114 +#: application/views/timeline/index.php:147 +#: application/views/timeline/index.php:172 +#: application/views/timeline/index.php:201 +#: application/views/timeline/index.php:226 +#: application/views/contesting/index.php:42 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/search/search_result_ajax.php:89 +#: application/views/public_search/result.php:13 +#: application/views/oqrs/qsolist.php:7 +#: application/views/dashboard/index.php:149 +#: application/views/adif/dcl_success.php:29 +#: application/views/eqslcard/index.php:30 +#: application/views/eqslcard/index.php:34 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:127 +#: application/views/qslprint/qsolist.php:7 +#: application/views/qslprint/qslprint.php:22 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/index.php:33 +#: application/views/qslcard/searchresult.php:4 +#: application/views/debug/index.php:506 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +msgid "Date" +msgstr "日期" + +#: application/views/visitor/index.php:151 +#: application/views/timeline/index.php:227 +#: application/views/contesting/index.php:47 +#: application/views/contesting/index.php:200 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/search/search_result_ajax.php:91 +#: application/views/oqrs/qsolist.php:8 +#: application/views/dashboard/index.php:152 +#: application/views/adif/dcl_success.php:30 +#: application/views/timeplotter/index.php:5 +#: application/views/eqslcard/index.php:31 application/views/qso/index.php:105 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/simplefle/index.php:128 +#: application/views/qslprint/qsolist.php:8 +#: application/views/qslprint/qslprint.php:23 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/debug/index.php:507 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +msgid "Time" +msgstr "时间" + +#: application/views/visitor/index.php:153 +#: application/views/contesting/index.php:201 +#: application/views/bandmap/list.php:111 +#: application/views/search/search_result_ajax.php:93 +#: application/views/public_search/result.php:14 +#: application/views/adif/dcl_success.php:31 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/awards/vucc/band.php:18 +#: application/views/qslcard/searchresult.php:8 +#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +msgid "Call" +msgstr "呼号" + +#: application/views/visitor/index.php:238 +#: application/views/dashboard/index.php:215 +msgid "QSOs Breakdown" +msgstr "QSO 分析" + +#: application/views/visitor/index.php:242 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/dashboard/index.php:219 +#: application/views/simplefle/index.php:26 +#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/cq/index.php:174 +#: application/views/awards/dok/index.php:170 +#: application/views/awards/was/index.php:177 +#: application/views/awards/itu/index.php:174 +#: application/views/awards/waja/index.php:173 +#: application/views/awards/counties/index.php:39 +#: application/views/awards/rac/index.php:169 +#: application/views/awards/jcc/index.php:181 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/dxcc/index.php:253 +msgid "Total" +msgstr "总计" + +#: application/views/visitor/index.php:247 +#: application/views/statistics/index.php:18 +#: application/views/dashboard/index.php:224 +#: application/views/accumulate/index.php:6 +#: application/views/dayswithqso/index.php:16 +msgid "Year" +msgstr "年" + +#: application/views/visitor/index.php:252 +#: application/views/dashboard/index.php:229 +#: application/views/accumulate/index.php:8 +msgid "Month" +msgstr "月" + +#: application/views/visitor/index.php:259 +#: application/views/dashboard/index.php:238 +msgid "Countries Breakdown" +msgstr "DXCC 实体分析" + +#: application/views/visitor/index.php:263 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:242 +#: application/views/dashboard/index.php:358 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 +msgid "Worked" +msgstr "已通联" + +#: application/views/visitor/index.php:267 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:364 +#: application/views/interface_assets/footer.php:29 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/cq/index.php:32 +#: application/views/awards/itu/index.php:32 +msgid "Confirmed" +msgstr "已确认" + +#: application/views/visitor/index.php:276 +#: application/views/dashboard/index.php:255 +msgid "Needed" +msgstr "待通联" + +#: application/views/visitor/index.php:284 +#: application/views/dashboard/index.php:246 +#: application/views/dashboard/index.php:263 +#: application/views/qslcard/index.php:5 +msgid "QSL Cards" +msgstr "QSL 卡片" + +#: application/views/visitor/index.php:307 +#: application/views/dashboard/index.php:311 +#: application/views/eqslcard/index.php:5 +msgid "eQSL Cards" +msgstr "eQSL 卡片" + +#: application/views/visitor/index.php:325 application/views/lotw/import.php:3 +#: application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:406 +#: application/views/user/edit.php:705 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +msgid "Logbook of the World" +msgstr "Logbook of the World(LoTW)" + +#: application/views/visitor/layout/footer.php:239 +#: application/views/interface_assets/footer.php:7 +#: application/views/interface_assets/footer.php:73 +msgid "en-GB" msgstr "" -#: application/views/dashboard/index.php:109 -#: application/views/dashboard/index.php:110 -msgid "Apple" -msgid_plural "Apples" -msgstr[0] "" +#: application/views/visitor/layout/header.php:97 +#: application/views/logbookadvanced/index.php:412 +#: application/views/interface_assets/header.php:333 +#: application/views/user/edit.php:441 +msgid "Search Callsign" +msgstr "查询呼号" -#: application/views/dashboard/index.php:111 -#: application/views/dashboard/index.php:164 +#: application/views/visitor/layout/header.php:99 +#: application/views/visitor/layout/header.php:100 +#: application/views/continents/index.php:49 +#: application/views/logbookadvanced/index.php:482 +#: application/views/interface_assets/header.php:327 +#: application/views/interface_assets/header.php:334 +msgid "Search" +msgstr "搜索" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 +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 "将比赛导出到 Cabrillo 日志" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "选择台站位置" + +#: application/views/cabrillo/index.php:31 application/views/csv/index.php:23 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/contesting/index.php:104 +#: application/views/components/hamsat/table.php:27 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/cqzones_result.php:9 +#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/oqrs/qsolist.php:6 +#: application/views/dashboard/index.php:154 +#: application/views/adif/import.php:66 application/views/adif/import.php:172 +#: application/views/adif/import.php:217 application/views/dxatlas/index.php:23 +#: application/views/eqslcard/index.php:28 +#: application/views/station_profile/edit.php:36 +#: application/views/user/main.php:4 application/views/user/main.php:47 +#: application/views/user/edit.php:123 application/views/qso/index.php:124 +#: application/views/activators/index.php:99 +#: application/views/simplefle/index.php:129 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qslprint/qslprint.php:21 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/wwff/index.php:34 +#: application/views/lotw_views/index.php:39 +#: application/views/qslcard/index.php:28 application/views/view_log/qso.php:82 +#: application/views/view_log/qso.php:507 msgid "Callsign" +msgstr "呼号" + +#: application/views/cabrillo/index.php:48 +msgid "Category Operator" +msgstr "操作员类型(Operator)" + +#: application/views/cabrillo/index.php:50 +msgid "Single Operator" +msgstr "单操作员(Single Operator)" + +#: application/views/cabrillo/index.php:51 +msgid "Multi Operator" +msgstr "多操作员(Multi Operator)" + +#: application/views/cabrillo/index.php:52 +msgid "Checklog" +msgstr "检查日志(Checklog)" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "辅助类型(Assisted)" + +#: application/views/cabrillo/index.php:58 +msgid "Not Assisted" +msgstr "无辅助(Not Assisted)" + +#: application/views/cabrillo/index.php:59 +msgid "Assisted" +msgstr "有辅助(Assisted)" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "波段类型(Band)" + +#: application/views/cabrillo/index.php:65 +#: application/views/bands/index.php:110 +#: 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/continents/index.php:32 +#: application/views/continents/index.php:41 +#: application/views/distances/index.php:35 +#: application/views/distances/index.php:45 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 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/bandmap/list.php:71 +#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:90 +#: 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:179 +#: application/views/logbookadvanced/index.php:190 +#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:210 +#: application/views/logbookadvanced/index.php:219 +#: application/views/logbookadvanced/index.php:243 +#: application/views/logbookadvanced/index.php:254 +#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:471 +#: 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/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/accumulate/index.php:21 +#: application/views/accumulate/index.php:31 +#: application/views/gridmap/index.php:13 +#: application/views/gridmap/index.php:28 +#: application/views/gridmap/index.php:41 +#: application/views/gridmap/index.php:68 +#: application/views/gridmap/index.php:81 +#: application/views/activators/index.php:10 +#: application/views/qslprint/index.php:22 +#: 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/helvetia/index.php:88 +#: application/views/awards/cq/index.php:75 +#: application/views/awards/cq/index.php:89 +#: application/views/awards/dok/index.php:90 +#: application/views/awards/was/index.php:88 +#: application/views/awards/itu/index.php:75 +#: application/views/awards/itu/index.php:89 +#: application/views/awards/waja/index.php:88 +#: application/views/awards/rac/index.php:80 +#: application/views/awards/jcc/index.php:87 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/dxcc/index.php:130 +#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:161 +msgid "All" +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 "VHF-3-BAND 和 VHF-FM-ONLY (仅限 ARRL VHF 竞赛)" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "模式类型(Mode)" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "功率类型(Power)" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "台站类型(Station)" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "发射机类型(Transmitter)" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "Overlay类型" + +#: application/views/cabrillo/index.php:150 +msgid "Operators" +msgstr "操作员" + +#: application/views/cabrillo/index.php:155 +msgid "Soapbox" +msgstr "Soapbox(附加信息)" + +#: 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:180 application/views/csv/index.php:128 +#: application/views/kml/index.php:113 application/views/dxatlas/index.php:128 +#: application/views/cfd/index.php:25 +#: application/views/awards/jcc/index.php:112 +msgid "Export" +msgstr "导出" + +#: application/views/cabrillo/index.php:186 +msgid "No contests were found in your log." +msgstr "在日志中未发现任何竞赛" + +#: application/views/bands/index.php:28 application/views/bands/index.php:32 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +#: application/views/interface_assets/header.php:365 +msgid "Bands" +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 "使用波段列表,您可以控制创建新 QSO 时显示哪些波段。" + +#: application/views/bands/index.php:39 +msgid "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected." +msgstr "启用的波段将显示在 QSO“波段”下拉列表中,而停用的频段将被隐藏且无法选择。" + +#: application/views/bands/index.php:48 +#: application/views/interface_assets/header.php:159 +#: application/views/awards/index.php:9 +msgid "CQ" msgstr "" -#: application/views/dashboard/index.php:112 -#, php-format -msgid "For more information, %s." +#: application/views/bands/index.php:49 +#: application/views/contesting/index.php:170 +#: application/views/logbookadvanced/index.php:581 +#: application/views/interface_assets/header.php:191 +#: application/views/user/edit.php:603 application/views/qso/index.php:264 +#: application/views/qso/index.php:508 +#: application/views/awards/dok/index.php:145 +#: application/views/view_log/qso.php:351 +msgid "DOK" msgstr "" -#: application/views/dashboard/index.php:112 -msgid "Click here" +#: application/views/bands/index.php:50 application/views/csv/index.php:58 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/bandmap/list.php:112 application/views/kml/index.php:47 +#: application/views/logbookadvanced/index.php:140 +#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/dxatlas/index.php:58 +#: application/views/timeplotter/index.php:24 +#: application/views/interface_assets/header.php:161 +#: application/views/qso/index.php:361 application/views/awards/index.php:7 +#: application/views/lotw_views/index.php:40 +msgid "DXCC" +msgstr "DXCC实体" + +#: application/views/bands/index.php:51 +msgid "H26" msgstr "" -#: application/views/dashboard/index.php:113 -#, php-format -msgid "You have eaten %d Banana today." -msgid_plural "You have eaten %d Bananas today." -msgstr[0] "" +#: application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:207 +msgid "JCC" +msgstr "" -#: application/views/dashboard/index.php:121 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +#: application/views/bands/index.php:55 +#: application/views/interface_assets/header.php:185 +msgid "RAC" msgstr "" -#: application/views/dashboard/index.php:130 -msgid "At least one of your LoTW certificates is expired!" +#: application/views/bands/index.php:56 application/views/user/edit.php:599 +#: application/views/qso/index.php:248 application/views/qso/index.php:494 +#: application/views/view_log/qso.php:325 +#: application/views/view_log/qso.php:577 +msgid "Sig" msgstr "" -#: application/views/dashboard/index.php:136 -msgid "At least one of your LoTW certificates is about to expire!" +#: application/views/bands/index.php:58 application/views/qso/index.php:433 +msgid "USA County" +msgstr "县(美国)" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:167 +msgid "VUCC" msgstr "" -#: application/views/dashboard/index.php:159 -msgid "Date" +#: application/views/bands/index.php:60 +#: application/views/interface_assets/header.php:205 +msgid "WAJA" msgstr "" -#: application/views/dashboard/index.php:162 -msgid "Time" +#: application/views/bands/index.php:61 +#: application/views/interface_assets/header.php:229 +msgid "WAS" msgstr "" -#: application/views/dashboard/index.php:225 -msgid "QSOs Breakdown" +#: application/views/bands/index.php:63 application/views/bands/create.php:29 +#: application/views/bands/edit.php:11 +msgid "Bandgroup" +msgstr "波段" + +#: application/views/bands/index.php:64 application/views/bands/create.php:34 +#: application/views/bands/edit.php:16 +msgid "SSB QRG" +msgstr "SSB 频率" + +#: application/views/bands/index.php:65 application/views/bands/create.php:39 +#: application/views/bands/edit.php:21 +msgid "DATA QRG" +msgstr "DATA 频率" + +#: application/views/bands/index.php:66 application/views/bands/create.php:44 +#: application/views/bands/edit.php:26 +msgid "CW QRG" +msgstr "CW 频率" + +#: application/views/bands/index.php:142 +msgid "Edit Band" +msgstr "编辑波段" + +#: application/views/bands/index.php:143 application/views/bands/index.php:149 +msgid "Create a band" +msgstr "创建波段" + +#: application/views/bands/index.php:144 +#: application/views/version_dialog/index.php:79 +#: application/views/contesting/add.php:74 +#: application/views/interface_assets/footer.php:32 +#: application/views/simplefle/index.php:20 +msgid "Close" +msgstr "关闭" + +#: application/views/bands/index.php:145 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "警告! 您确定要删除以下波段:" + +#: application/views/bands/index.php:146 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "警告!你要启用所有波段吗?" + +#: application/views/bands/index.php:147 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "警告!你要停用所有波段吗?" + +#: application/views/bands/index.php:150 +#: application/views/contesting/add.php:77 +msgid "Activate All" +msgstr "启用所有" + +#: application/views/bands/index.php:151 +#: application/views/contesting/add.php:78 +msgid "Deactivate All" +msgstr "停用所有" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "波段名称(例如:20m)" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "频段名称(例如:HF、VHF、UHF、SHF)" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "波段中 SSB 的频率(以 Hz 为单位)" + +#: application/views/bands/create.php:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +msgstr "波段中 DATA 的频率(以 Hz 为单位)" + +#: application/views/bands/create.php:46 application/views/bands/edit.php:28 +msgid "Frequency for CW QRG in band (must be in Hz)" +msgstr "波段中 CW 的频率(以 Hz 为单位)" + +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/api/description.php:33 +#: application/views/satellite/create.php:70 +#: application/views/contesting/edit.php:55 +#: application/views/options/email.php:112 +#: application/views/options/radios.php:45 +#: application/views/options/oqrs.php:62 +#: application/views/options/version_dialog.php:78 +#: application/views/options/appearance.php:107 +#: application/views/options/dxcluster.php:67 +#: application/views/cron/edit.php:73 application/views/simplefle/index.php:21 +msgid "Save" +msgstr "保存" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" msgstr "" -#: application/views/dashboard/index.php:229 -msgid "Total" +#: application/views/api/description.php:26 +msgid "API Description" msgstr "" -#: application/views/dashboard/index.php:234 -msgid "Year" +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." msgstr "" -#: application/views/dashboard/index.php:239 -msgid "Month" +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:414 +msgid "API Keys" +msgstr "API 密钥" + +#: 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/dashboard/index.php:248 -msgid "Countries Breakdown" +#: application/views/api/help.php:18 +msgid "You will need to generate an API key for each tool you wish to use (e.g. WavelogCAT). 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/dashboard/index.php:252 -#: application/views/dashboard/index.php:368 -msgid "Worked" +#: application/views/api/help.php:19 +msgid "API URL" msgstr "" -#: application/views/dashboard/index.php:256 -#: application/views/dashboard/index.php:374 -msgid "Confirmed" +#: application/views/api/help.php:19 +msgid "The API URL for this Wavelog instance is" msgstr "" -#: application/views/dashboard/index.php:265 -msgid "Needed" +#: application/views/api/help.php:19 application/views/api/help.php:38 +#: application/views/cron/index.php:21 application/views/debug/index.php:36 +msgid "Copy to clipboard" +msgstr "复制到剪贴板" + +#: application/views/api/help.php:20 application/views/qso/index.php:538 +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +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/dashboard/index.php:273 -msgid "QSL Cards" +#: application/views/api/help.php:27 +msgid "API Key" msgstr "" -#: application/views/dashboard/index.php:274 -#: application/views/dashboard/index.php:301 -#: application/views/dashboard/index.php:322 -#: application/views/dashboard/index.php:343 -msgid "Today" +#: application/views/api/help.php:28 application/views/cron/index.php:51 +#: application/views/cron/edit.php:30 +msgid "Description" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/dashboard/index.php:305 -#: application/views/dashboard/index.php:326 -#: application/views/dashboard/index.php:347 -msgid "Sent" +#: application/views/api/help.php:29 +msgid "Last Used" msgstr "" -#: application/views/dashboard/index.php:284 -#: application/views/dashboard/index.php:311 -#: application/views/dashboard/index.php:332 -#: application/views/dashboard/index.php:353 -msgid "Received" +#: application/views/api/help.php:30 +msgid "Permissions" msgstr "" -#: application/views/dashboard/index.php:290 -msgid "Requested" +#: application/views/api/help.php:31 application/views/timeline/index.php:117 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/cron/index.php:52 +#: application/views/lotw_views/index.php:45 +msgid "Status" +msgstr "状态" + +#: application/views/api/help.php:32 +#: application/views/logbookadvanced/index.php:461 +msgid "Actions" +msgstr "操作" + +#: application/views/api/help.php:45 +msgid "Read & Write" msgstr "" -#: application/views/dashboard/index.php:300 -msgctxt "Probably no translation needed as this is a name." -msgid "Logbook of the World" +#: application/views/api/help.php:47 +msgid "Read-Only" msgstr "" -#: application/views/dashboard/index.php:321 -msgid "eQSL Cards" +#: application/views/api/help.php:49 +msgid "Unknown" msgstr "" -#: application/views/awards/cq/index.php:50 -msgid "QSL Type" +#: 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/activated_gridmap/index.php:20 +#: application/views/distances/index.php:33 +#: application/views/components/hamsat/table.php:29 +#: application/views/logbookadvanced/index.php:199 +#: application/views/gridmap/index.php:25 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/dxcc/index.php:127 +msgid "Satellite" +msgstr "卫星" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/distances/index.php:43 +#: application/views/logbookadvanced/index.php:208 +#: application/views/gridmap/index.php:78 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/dxcc/index.php:143 +msgid "Orbit" +msgstr "环绕" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/timeline/index.php:51 +#: application/views/gridmap/index.php:90 +#: application/views/awards/wab/index.php:64 +msgid "Confirmation" +msgstr "确认" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/helvetia/index.php:65 +#: application/views/awards/cq/index.php:66 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/was/index.php:65 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/waja/index.php:65 +#: application/views/awards/rac/index.php:57 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/dxcc/index.php:73 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:128 +msgid "Plot" +msgstr "绘制" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:129 +msgid "Clear Markers" +msgstr "清除标记" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/logbookadvanced/index.php:8 +#: application/views/gridmap/index.php:146 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +msgid "Latitude" +msgstr "纬度" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/logbookadvanced/index.php:9 +#: application/views/gridmap/index.php:148 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +msgid "Longitude" +msgstr "经度" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/logbookadvanced/index.php:12 +#: application/views/gridmap/index.php:154 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +msgid "Bearing" +msgstr "方位角" + +#: application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:271 +msgid "Backup" +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/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/notes_view.php:7 +msgid "The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +#: application/views/awards/sig/index.php:22 +msgid "Number of QSOs" +msgstr "QSO 数量" + +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:494 +#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/cq/index.php:110 +#: application/views/awards/dok/index.php:122 +#: application/views/awards/was/index.php:109 +#: application/views/awards/itu/index.php:110 +#: application/views/awards/waja/index.php:109 +#: application/views/awards/rac/index.php:101 +#: application/views/awards/jcc/index.php:108 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/dxcc/index.php:182 +msgid "Reset" +msgstr "重置筛选条件" + +#: application/views/continents/index.php:62 +#: application/views/qso/index.php:377 application/views/qso/edit_ajax.php:238 +#: application/views/view_log/qso.php:242 +msgid "Continent" +msgstr "大陆" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +msgid "# of QSO's worked" +msgstr "通联的 QSO 数量" + +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:141 +msgid "Distances Worked" +msgstr "距离" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:20 +#: application/views/simplefle/index.php:63 +msgid "QSO Data" +msgstr "QSO 数据" + +#: application/views/distances/index.php:9 +msgid "contacts were plotted.
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 "通联的呼号(最多显示5个):" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "波段选择" + +#: application/views/distances/index.php:52 +#: application/views/timeline/index.php:71 +#: application/views/timeline/index.php:135 +#: application/views/timeline/index.php:160 +#: application/views/timeline/index.php:189 +#: application/views/timeline/index.php:214 +#: application/views/timeline/index.php:241 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/timeplotter/index.php:59 +#: application/views/accumulate/index.php:96 +#: application/views/activators/index.php:50 +#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/cq/index.php:111 +#: application/views/awards/dok/index.php:123 +#: application/views/awards/was/index.php:110 +#: application/views/awards/itu/index.php:111 +#: application/views/awards/waja/index.php:110 +#: application/views/awards/rac/index.php:102 +#: application/views/awards/jcc/index.php:109 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/dxcc/index.php:183 +msgid "Show" +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 "每年通联的 QSO 数量" + +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "查看日志" + +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +msgid "QSOs" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "呼号" + +#: application/views/timeline/index.php:2 +#: application/views/interface_assets/header.php:145 +msgid "Timeline" +msgstr "时间线" + +#: application/views/timeline/index.php:41 +#: application/views/accumulate/index.php:47 +msgid "Award" +msgstr "奖项" + +#: application/views/timeline/index.php:115 +#: application/views/timeline/index.php:175 +#: application/views/awards/iota/index.php:170 +#: application/views/awards/dxcc/index.php:222 +msgid "Prefix" +msgstr "前缀" + +#: application/views/timeline/index.php:118 +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +msgid "End Date" +msgstr "结束时间" + +#: application/views/timeline/index.php:119 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:176 +#: application/views/timeline/index.php:203 +#: application/views/timeline/index.php:229 +#: application/views/activators/index.php:102 +msgid "Show QSO's" +msgstr "显示 QSO" + +#: application/views/timeline/index.php:174 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/contesting/index.php:153 +#: application/views/contesting/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/search/search_result_ajax.php:19 +#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/dashboard/index.php:18 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/qso/index.php:188 +#: application/views/awards/iota/index.php:171 +#: application/views/view_log/qso.php:191 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/partial/log_ajax.php:19 +msgid "Name" +msgstr "名称" + +#: application/views/timeline/index.php:202 application/views/csv/index.php:80 +#: application/views/kml/index.php:65 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/dxatlas/index.php:80 +#: application/views/timeplotter/index.php:44 +#: application/views/station_profile/create.php:87 +#: application/views/station_profile/edit.php:126 +#: application/views/qso/index.php:390 +#: application/views/awards/cq/index.php:148 +msgid "CQ Zone" +msgstr "CQ 分区" + +#: application/views/timeline/details.php:2 +#: application/views/awards/details.php:1 +#: application/views/awards/counties/details.php:4 +#: application/views/awards/vucc/band.php:4 +msgid "Filtering on" +msgstr "筛选打开" + +#: application/views/contestcalendar/index.php:4 +#: application/views/components/hamsat/table.php:4 +msgid "This data comes from" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +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:264 +#: application/views/dashboard/index.php:291 +#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:333 +msgid "Today" +msgstr "今天" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:378 +msgid "SOTA CSV Export" +msgstr "SOTA CSV 导出" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "导出您的日志以进行 SOTA 上传" + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "只有具有 SOTA 信息的 QSO 才会被导出!" + +#: application/views/csv/index.php:92 application/views/kml/index.php:77 +#: application/views/dxatlas/index.php:92 +#: application/views/eqslcard/index.php:33 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 +msgid "Propagation Mode" +msgstr "传播模式" + +#: application/views/csv/index.php:95 application/views/kml/index.php:80 +#: application/views/logbookadvanced/index.php:220 +#: application/views/dxatlas/index.php:95 +#: application/views/gridmap/index.php:42 application/views/qso/index.php:404 +#: application/views/qso/edit_ajax.php:192 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/csv/index.php:96 application/views/kml/index.php:81 +#: application/views/logbookadvanced/index.php:221 +#: application/views/dxatlas/index.php:96 +#: application/views/gridmap/index.php:43 application/views/qso/index.php:405 +#: application/views/qso/edit_ajax.php:193 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/csv/index.php:97 application/views/kml/index.php:82 +#: application/views/logbookadvanced/index.php:222 +#: application/views/dxatlas/index.php:97 +#: application/views/gridmap/index.php:44 application/views/qso/index.php:406 +#: application/views/qso/edit_ajax.php:194 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/csv/index.php:98 application/views/kml/index.php:83 +#: application/views/logbookadvanced/index.php:223 +#: application/views/dxatlas/index.php:98 +#: application/views/gridmap/index.php:45 application/views/qso/index.php:407 +#: application/views/qso/edit_ajax.php:195 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/csv/index.php:99 application/views/kml/index.php:84 +#: application/views/logbookadvanced/index.php:224 +#: application/views/dxatlas/index.php:99 +#: application/views/gridmap/index.php:46 application/views/qso/index.php:408 +#: application/views/qso/edit_ajax.php:196 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/csv/index.php:100 application/views/kml/index.php:85 +#: application/views/logbookadvanced/index.php:225 +#: application/views/dxatlas/index.php:100 +#: application/views/gridmap/index.php:47 application/views/qso/index.php:409 +#: application/views/qso/edit_ajax.php:197 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/csv/index.php:101 application/views/kml/index.php:86 +#: application/views/logbookadvanced/index.php:226 +#: application/views/dxatlas/index.php:101 +#: application/views/gridmap/index.php:48 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:198 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/csv/index.php:102 application/views/kml/index.php:87 +#: application/views/logbookadvanced/index.php:227 +#: application/views/dxatlas/index.php:102 +#: application/views/gridmap/index.php:49 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:199 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/csv/index.php:103 application/views/kml/index.php:88 +#: application/views/logbookadvanced/index.php:228 +#: application/views/dxatlas/index.php:103 +#: application/views/gridmap/index.php:50 application/views/qso/index.php:412 +#: application/views/qso/edit_ajax.php:200 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/csv/index.php:104 application/views/kml/index.php:89 +#: application/views/logbookadvanced/index.php:229 +#: application/views/dxatlas/index.php:104 +#: application/views/gridmap/index.php:51 application/views/qso/index.php:413 +#: application/views/qso/edit_ajax.php:201 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/csv/index.php:105 application/views/kml/index.php:90 +#: application/views/logbookadvanced/index.php:230 +#: application/views/dxatlas/index.php:105 +#: application/views/gridmap/index.php:52 application/views/qso/index.php:414 +#: application/views/qso/edit_ajax.php:202 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/csv/index.php:106 application/views/kml/index.php:91 +#: application/views/logbookadvanced/index.php:231 +#: application/views/dxatlas/index.php:106 +#: application/views/gridmap/index.php:53 application/views/qso/index.php:415 +#: application/views/qso/edit_ajax.php:203 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/csv/index.php:107 application/views/kml/index.php:92 +#: application/views/logbookadvanced/index.php:232 +#: application/views/dxatlas/index.php:107 +#: application/views/gridmap/index.php:54 application/views/qso/index.php:416 +#: application/views/qso/edit_ajax.php:204 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/csv/index.php:108 application/views/kml/index.php:93 +#: application/views/logbookadvanced/index.php:233 +#: application/views/dxatlas/index.php:108 +#: application/views/gridmap/index.php:55 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:205 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/csv/index.php:109 application/views/kml/index.php:94 +#: application/views/logbookadvanced/index.php:234 +#: application/views/dxatlas/index.php:109 +#: application/views/gridmap/index.php:56 application/views/qso/index.php:418 +#: application/views/qso/edit_ajax.php:206 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/csv/index.php:110 application/views/kml/index.php:95 +#: application/views/logbookadvanced/index.php:235 +#: application/views/dxatlas/index.php:110 +#: application/views/gridmap/index.php:57 application/views/qso/index.php:419 +#: application/views/qso/edit_ajax.php:207 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "卫星" + +#: application/views/csv/index.php:111 application/views/kml/index.php:96 +#: application/views/logbookadvanced/index.php:236 +#: application/views/dxatlas/index.php:111 +#: application/views/gridmap/index.php:58 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:208 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/csv/index.php:112 application/views/kml/index.php:97 +#: application/views/logbookadvanced/index.php:237 +#: application/views/dxatlas/index.php:112 +#: application/views/gridmap/index.php:59 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:209 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/csv/index.php:118 application/views/lotw/import.php:38 +#: application/views/kml/index.php:103 application/views/adif/import.php:176 +#: application/views/adif/import.php:222 +#: application/views/dxatlas/index.php:118 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/hrdlog/export.php:77 +#: application/views/cfd/index.php:15 application/views/webadif/export.php:97 +msgid "From date" +msgstr "起始日期" + +#: application/views/csv/index.php:123 application/views/kml/index.php:108 +#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/dxatlas/index.php:123 application/views/qrz/export.php:102 +#: application/views/hrdlog/export.php:82 application/views/cfd/index.php:20 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +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/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/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:119 +#: application/views/station_profile/index.php:41 +msgid "Profile Name" +msgstr "名称" + +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:120 +#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:38 +#: application/views/station_profile/edit.php:46 +#: application/views/debug/index.php:511 +msgid "Station Callsign" +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 "台站日志可以让您对自己的台站位置进行分组,这对在同一 DXCC 或 VUCC 下的不同站点位置非常方便" + +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "新建台站日志" + +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "公开搜索" + +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/cron/edit.php:22 +#: application/views/station_profile/create.php:242 +#: application/views/station_profile/edit.php:314 +msgid "Enabled" +msgstr "已启用" + +#: application/views/stationsetup/stationsetup.php:94 +#: application/views/station_profile/index.php:15 +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +msgstr "台站地址为电台使用地址,如您或朋友的 QTH,或移动台的地址" + +#: application/views/stationsetup/stationsetup.php:95 +#: application/views/station_profile/index.php:16 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "和日志簿类似,一个台站地址为 QSO 集合的承载主体" + +#: application/views/stationsetup/stationsetup.php:96 +#: application/views/station_profile/index.php:17 +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 +#: application/views/station_profile/index.php:19 +msgid "Create a Station Location" +msgstr "创建一个台站地址" + +#: application/views/stationsetup/stationsetup.php:102 +#: application/views/station_profile/index.php:25 +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +msgstr "警告:应事先设置一个'启用'的台站地址,请在 '呼号'->'台站地址'中选择一个" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/adif/import.php:56 application/views/adif/import.php:220 +#: application/views/adif/import.php:258 +#: application/views/interface_assets/footer.php:24 +#: application/views/station_profile/index.php:31 +#: application/views/debug/index.php:153 application/views/debug/index.php:498 +#: application/views/view_log/qso.php:622 +msgid "Warning" +msgstr "注意" + +#: application/views/stationsetup/stationsetup.php:108 +#: application/views/station_profile/index.php:31 +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +msgstr "由于 Wavelog 设置更改,您需要重新在电台设置中重新分配 QSO" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Please reassign them at " +msgstr "重新分配 " + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/interface_assets/header.php:256 +#: application/views/station_profile/index.php:33 +msgid "Admin" +msgstr "管理员" + +#: application/views/stationsetup/stationsetup.php:110 +#: application/views/station_profile/index.php:33 +msgid "Maintenance" +msgstr "维护" + +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/cron/index.php:50 +msgid "ID" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "重置竞赛" + +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "竞赛日志" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "信息交换类型" + +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:94 +#: application/views/contesting/index.php:169 +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/qso/index.php:314 +msgid "None" +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:24 +#: application/views/contesting/edit.php:31 +#: application/views/view_log/qso.php:275 +msgid "Contest Name" +msgstr "竞赛名称" + +#: application/views/contesting/index.php:34 +#: application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "操作员呼号" + +#: application/views/contesting/index.php:92 +#: application/views/bandmap/index.php:25 application/views/bandmap/list.php:60 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "电台" + +#: application/views/contesting/index.php:116 +#: application/views/contesting/index.php:208 +msgid "Serial (S)" +msgstr "序列编号 (S)" + +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:206 +msgid "Exch (S)" +msgstr "信号交换(发)" + +#: application/views/contesting/index.php:126 +msgid "Gridsquare (S)" +msgstr "网格座标 (S)" + +#: application/views/contesting/index.php:136 +#: application/views/contesting/index.php:209 +msgid "Serial (R)" +msgstr "序列编号 (R)" + +#: application/views/contesting/index.php:141 +#: application/views/contesting/index.php:207 +msgid "Exch (R)" +msgstr "信号交换(收)" + +#: application/views/contesting/index.php:146 +msgid "Gridsquare (R)" +msgstr "网格座标 (R)" + +#: application/views/contesting/index.php:158 +#: application/views/components/hamsat/table.php:28 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qso/index.php:289 application/views/qso/edit_ajax.php:183 +#: application/views/view_log/qso.php:199 +msgid "Comment" +msgstr "备注" + +#: application/views/contesting/index.php:163 +msgid "Reset QSO" +msgstr "重置 QSO" + +#: application/views/contesting/index.php:164 +#: application/views/qso/index.php:607 +msgid "Save QSO" +msgstr "保存 QSO" + +#: application/views/contesting/index.php:166 +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 "RX Power(W)" + +#: 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/add.php:16 +msgid "Using the contest list, you can control which Contests are shown when logging QSOs in a contest." +msgstr "使用竞赛列表,您可以控制在比赛中记录 QSO 时显示哪些竞赛" + +#: 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 "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:449 +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 +msgid "Activate" +msgstr "启用" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 +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 "竞赛 在 ADIF 中的名称" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/edit.php:28 +msgid "Create" +msgstr "创建" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "竞赛 ADIF 名称" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "如果要列在竞赛列表中,则设置为启用" + +#: application/views/lotw/import.php:3 application/views/adif/import.php:21 +msgid "ADIF Import" +msgstr "ADIF 导入" + +#: 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 +#, 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:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:25 +#: application/views/dashboard/index.php:98 +#: application/views/dashboard/index.php:120 +#: application/views/dashboard/index.php:126 +#: application/views/adif/import.php:55 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "重要" + +#: application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "日志文件的类型必须为 .adi" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "选择文件" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "为我拉取 LoTW 数据" + +#: 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 "Wavelog 将会使用储存在你个人用户信息当中的 LoTW 用户名和密码从 LoTW 上为你下载报告Wavelog 下载的这份报告将会包括自你所选之日以来的或者你最后的 LoTW 确认信息(目前日志当中)以来的所有确认" + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "导入 LoTW 匹配" + +#: 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:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/index.php:380 application/views/qso/edit_ajax.php:241 +#: application/views/awards/iota/index.php:65 +#: application/views/awards/dxcc/index.php:87 +#: application/views/view_log/qso.php:247 +msgid "Africa" +msgstr "非洲" + +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/index.php:381 application/views/qso/edit_ajax.php:242 +#: application/views/awards/iota/index.php:61 +#: application/views/awards/dxcc/index.php:83 +#: application/views/view_log/qso.php:250 +msgid "Antarctica" +msgstr "南极洲" + +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/index.php:382 application/views/qso/edit_ajax.php:243 +#: application/views/awards/iota/index.php:69 +#: application/views/awards/dxcc/index.php:91 +#: application/views/view_log/qso.php:253 +msgid "Asia" +msgstr "亚洲" + +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/index.php:383 application/views/qso/edit_ajax.php:244 +#: application/views/awards/iota/index.php:73 +#: application/views/awards/dxcc/index.php:95 +#: application/views/view_log/qso.php:256 +msgid "Europe" +msgstr "欧洲" + +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/index.php:384 application/views/qso/edit_ajax.php:245 +#: application/views/awards/iota/index.php:77 +#: application/views/awards/dxcc/index.php:99 +#: application/views/view_log/qso.php:259 +msgid "North America" +msgstr "北美洲" + +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/index.php:385 application/views/qso/edit_ajax.php:246 +#: application/views/awards/iota/index.php:85 +#: application/views/awards/dxcc/index.php:107 +#: application/views/view_log/qso.php:262 +msgid "Oceania" +msgstr "大洋洲" + +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/index.php:386 application/views/qso/edit_ajax.php:247 +#: application/views/awards/iota/index.php:81 +#: application/views/awards/dxcc/index.php:103 +#: application/views/view_log/qso.php:265 +msgid "South America" +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 +msgid "Message" +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 "SMTP 加密" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "选择邮件将会通过TLS还是SSL发送" + +#: 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 "发送者的名字,例如:'Wavelog'" + +#: 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 "发送邮件的邮箱地址,例如:'wavelog@example.com'" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "SMTP 主机" + +#: application/views/options/email.php:83 +msgid "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')" +msgstr "邮件服务器的域名,例如:'mail.example.com' (不带'ssl://'或'tls://')" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "SMTP 端口" + +#: 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端口,例如:如果使用了TLS -> '587',如果使用了SSL -> '465'" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "SMTP 用户名" + +#: 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 "SMTP 密码" + +#: 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/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 "在 QSO 输入面板上使用电台连接超时警告,提醒您无线电接口断开。" + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +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:38 +msgid "Global text" +msgstr "全局文本" + +#: application/views/options/oqrs.php:40 +msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgstr "该文本是一个可选文本,可以显示在OQRS页面的顶部。" + +#: application/views/options/oqrs.php:44 +msgid "Grouped search" +msgstr "分组搜索" + +#: application/views/options/oqrs.php:49 +msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgstr "当此选项打开时,所有具有OQRS活动的电台位置将同时搜索" + +#: application/views/options/oqrs.php:53 +msgid "Show station location name in grouped search results" +msgstr "在分组搜索结果中显示台站名称" + +#: application/views/options/oqrs.php:58 +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/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 "版本信息将会对所有用户显示. 用户可以选择在阅读后关闭对话框,选择是否显示 GitHub 上发布版的更新内容还是自定义文字,或者两者" + +#: 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/options/sidebar.php:5 +msgid "Radios" +msgstr "电台" + +#: application/views/options/sidebar.php:9 +#: application/views/interface_assets/footer.php:89 +#: application/views/interface_assets/header.php:417 +msgid "Version Info" +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: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/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "DXClusterCache 的信息来源" + +#: 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:39 +msgid "DXClusterAPI" +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/kml/index.php:3 +#: application/views/interface_assets/header.php:374 +msgid "KML Export" +msgstr "KML 导出" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "将日志导出为 KML 文件以在 Google 地球中使用" + +#: application/views/kml/index.php:11 application/views/dxatlas/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "只有有网格座标的 QSO 才会被导出" + +#: application/views/components/hamsat/table.php:3 +msgid "Hamsat - Satellite Rovers" +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:31 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +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/search/search_result_ajax.php:127 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/cqzones_result.php:16 +#: application/views/oqrs/qsolist.php:11 application/views/user/edit.php:478 +#: application/views/qso/index.php:24 application/views/qslprint/qsolist.php:13 +#: application/views/qslprint/qslprint.php:29 +#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:542 +#: application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:556 +#: application/views/view_log/qso.php:563 +#: application/views/view_log/qso.php:570 +#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +msgid "Station" +msgstr "电台站" + +#: application/views/search/search_result_ajax.php:400 +#: application/views/interface_assets/footer.php:21 +#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:268 +msgid "Edit QSO" +msgstr "编辑 QSO" + +#: application/views/search/search_result_ajax.php:405 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:273 +msgid "Mark QSL Sent (Bureau)" +msgstr "标记 已收到卡片(卡片局)" + +#: application/views/search/search_result_ajax.php:406 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:274 +msgid "Mark QSL Sent (Direct)" +msgstr "标记 已收到卡片(直邮)" + +#: application/views/search/search_result_ajax.php:413 +#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:283 +msgid "Mark QSL Received (Bureau)" +msgstr "标记 已收到卡片(卡片局)" + +#: application/views/search/search_result_ajax.php:414 +#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:284 +msgid "Mark QSL Received (Direct)" +msgstr "标记 已收到卡片(直邮)" + +#: application/views/search/search_result_ajax.php:415 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:275 +msgid "Mark QSL Card Requested" +msgstr "标记 已请求卡片" + +#: application/views/search/search_result_ajax.php:416 +#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:276 +msgid "Mark QSL Card Not Required" +msgstr "标记 不需要卡片" + +#: application/views/search/search_result_ajax.php:422 +#: application/views/view_log/partial/log_ajax.php:290 +msgid "Lookup on QRZ.com" +msgstr "在 QRZ.com 上查询" + +#: application/views/search/search_result_ajax.php:424 +#: application/views/view_log/partial/log_ajax.php:292 +msgid "Lookup on HamQTH" +msgstr "在 HamQTH 上查询" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:296 +msgid "Delete QSO" +msgstr "删除 QSO" + +#: application/views/logbookadvanced/index.php:128 +msgid "From" +msgstr "开始日期" + +#: application/views/logbookadvanced/index.php:132 +msgid "To" +msgstr "截止日期" + +#: application/views/logbookadvanced/index.php:136 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/useroptions.php:30 +msgid "Dx" +msgstr "对方呼号(Dx)" + +#: application/views/logbookadvanced/index.php:143 +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "- 无 -(例如 /MM, /AM)" + +#: application/views/logbookadvanced/index.php:217 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/useroptions.php:114 +msgid "Propagation" +msgstr "传播方式" + +#: application/views/logbookadvanced/index.php:284 +msgid "QSL sent" +msgstr "QSL 发送" + +#: application/views/logbookadvanced/index.php:287 +#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:377 +#: 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:266 +#: application/views/station_profile/create.php:273 +#: 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:401 +#: application/views/station_profile/edit.php:408 +#: 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 +#: application/views/qso/index.php:554 +msgid "Yes" +msgstr "是" + +#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:363 +#: application/views/logbookadvanced/index.php:378 +#: 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:265 +#: application/views/station_profile/create.php:272 +#: 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:402 +#: application/views/station_profile/edit.php:409 +#: 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 +#: application/views/qso/index.php:553 +msgid "No" +msgstr "否" + +#: application/views/logbookadvanced/index.php:295 +msgid "QSL received" +msgstr "QSL 接收" + +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:366 +msgid "Verified" +msgstr "已验证" + +#: application/views/logbookadvanced/index.php:306 +msgid "QSL send. method" +msgstr "QSL 发送方式" + +#: application/views/logbookadvanced/index.php:312 +#: application/views/logbookadvanced/index.php:322 +#: application/views/qso/index.php:570 +#: application/views/qslprint/qsolist.php:125 +msgid "Manager" +msgstr "管理员" + +#: application/views/logbookadvanced/index.php:316 +msgid "QSL recv. method" +msgstr "QSL 接收方式" + +#: application/views/logbookadvanced/index.php:326 +msgid "LoTW sent" +msgstr "LoTW 发送" + +#: application/views/logbookadvanced/index.php:337 +msgid "LoTW received" +msgstr "LoTW 接收" + +#: application/views/logbookadvanced/index.php:348 +msgid "eQSL sent" +msgstr "eQSL 发送" + +#: application/views/logbookadvanced/index.php:359 +msgid "eQSL received" +msgstr "eQSL 接收" + +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "QSL 通过" + +#: application/views/logbookadvanced/index.php:374 +msgid "QSL Images" +msgstr "QSL 图片" + +#: application/views/logbookadvanced/index.php:386 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "警告!确定要删除选中的QSO吗?" + +#: application/views/logbookadvanced/index.php:389 +msgid "With selected: " +msgstr "用选中行进行:" + +#: application/views/logbookadvanced/index.php:390 +msgid "Update from Callbook" +msgstr "从 Callbook 更新" + +#: application/views/logbookadvanced/index.php:391 +msgid "Queue Bureau" +msgstr "卡片局队列" + +#: application/views/logbookadvanced/index.php:392 +msgid "Queue Direct" +msgstr "直邮卡片队列" + +#: application/views/logbookadvanced/index.php:393 +msgid "Queue Electronic" +msgstr "电子卡片队列" + +#: application/views/logbookadvanced/index.php:394 +msgid "Sent (Bureau)" +msgstr "已发送(卡片局)" + +#: application/views/logbookadvanced/index.php:395 +msgid "Sent (Direct)" +msgstr "已发送(直邮)" + +#: application/views/logbookadvanced/index.php:396 +msgid "Sent (Electronic)" +msgstr "已发送(电子)" + +#: application/views/logbookadvanced/index.php:397 +msgid "Not Sent" +msgstr "未发送" + +#: application/views/logbookadvanced/index.php:398 +msgid "QSL Not Required" +msgstr "未获取 QSL" + +#: application/views/logbookadvanced/index.php:399 +msgid "Not Received" +msgstr "未收到" + +#: application/views/logbookadvanced/index.php:400 +msgid "Received (Bureau)" +msgstr "已接收(卡片局)" + +#: application/views/logbookadvanced/index.php:401 +msgid "Received (Direct)" +msgstr "已接收(直邮)" + +#: application/views/logbookadvanced/index.php:402 +msgid "Received (Electronic)" +msgstr "已接收(电子)" + +#: application/views/logbookadvanced/index.php:403 +msgid "Create ADIF" +msgstr "创建 ADIF" + +#: application/views/logbookadvanced/index.php:404 +msgid "Print Label" +msgstr "打印标签" + +#: application/views/logbookadvanced/index.php:405 +msgid "QSL Slideshow" +msgstr "QSL 展示窗" + +#: application/views/logbookadvanced/index.php:410 +msgid "Quicksearch with selected: " +msgstr "用选中行的条件进行快速搜索:" + +#: application/views/logbookadvanced/index.php:415 +msgid "Search DXCC" +msgstr "搜索 DXCC" + +#: application/views/logbookadvanced/index.php:418 +msgid "Search State" +msgstr "搜索 州/省" + +#: application/views/logbookadvanced/index.php:421 +msgid "Search Gridsquare" +msgstr "搜索 网格" + +#: application/views/logbookadvanced/index.php:424 +msgid "Search CQ Zone" +msgstr "搜索 CQ 分区" + +#: application/views/logbookadvanced/index.php:427 +msgid "Search ITU Zone" +msgstr "搜索 ITU 分区" + +#: application/views/logbookadvanced/index.php:430 +msgid "Search Mode" +msgstr "搜索 模式" + +#: application/views/logbookadvanced/index.php:433 +msgid "Search Band" +msgstr "搜索 频段" + +#: application/views/logbookadvanced/index.php:436 +msgid "Search IOTA" +msgstr "搜索 IOTA" + +#: application/views/logbookadvanced/index.php:439 +msgid "Search SOTA" +msgstr "搜索 SOTA" + +#: application/views/logbookadvanced/index.php:442 +msgid "Search POTA" +msgstr "搜索 POTA" + +#: application/views/logbookadvanced/index.php:445 +msgid "Search WWFF" +msgstr "搜索 WWFF" + +#: application/views/logbookadvanced/index.php:448 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Quickfilters" +msgstr "快速过滤" + +#: application/views/logbookadvanced/index.php:457 +msgid "QSL Filters" +msgstr "过滤 QSL" + +#: application/views/logbookadvanced/index.php:459 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "过滤器" + +#: application/views/logbookadvanced/index.php:462 +msgid "# Results" +msgstr "每页结果数" + +#: application/views/logbookadvanced/index.php:469 +#: application/views/station_profile/edit.php:65 +#: application/views/qso/index.php:272 +msgid "Location" +msgstr "位置" + +#: application/views/logbookadvanced/index.php:483 +msgid "Dupes" +msgstr "重复 QSO" + +#: application/views/logbookadvanced/index.php:487 +#: application/views/awards/wab/index.php:100 +#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/cq/index.php:125 +#: application/views/awards/dok/index.php:124 +#: application/views/awards/was/index.php:125 +#: application/views/awards/itu/index.php:125 +#: application/views/awards/waja/index.php:125 +#: application/views/awards/rac/index.php:117 +#: application/views/awards/jcc/index.php:125 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/dxcc/index.php:198 +msgid "Map" +msgstr "地图" + +#: application/views/logbookadvanced/index.php:493 +#: application/views/simplefle/index.php:19 +#: application/views/simplefle/index.php:158 +#: application/views/lotw_views/index.php:47 +msgid "Options" +msgstr "设置" + +#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/awards/sota/index.php:24 +#: application/views/awards/sig/qso_list.php:10 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "日期/时间" + +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/useroptions.php:26 +msgid "De" +msgstr "本台呼号(De)" + +#: application/views/logbookadvanced/index.php:545 +#: application/views/logbookadvanced/useroptions.php:74 +msgid "QSL Msg" +msgstr "QSL 信息" + +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:143 +#: application/views/awards/itu/index.php:148 +msgid "ITU Zone" +msgstr "ITU 分区" + +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "电台网格" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "列" + +#: application/views/logbookadvanced/qslcarousel.php:67 +msgid "Previous" +msgstr "前一项" + +#: application/views/logbookadvanced/qslcarousel.php:71 +msgid "Next" +msgstr "后一项" + +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "包含网格?" + +#: application/views/logbookadvanced/startatform.php:9 +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "包含标识代码?(SIG, SOTA, POTA, IOTA, WWFF; 如存在则显示)" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "包含通过" + +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "开始打印编号" + +#: application/views/logbookadvanced/startatform.php:27 +msgid "Print" +msgstr "打印" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:57 +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "您需要升级您的 PHP 版本。 最低版本为 7.4。 你的版本是" + +#: application/views/dashboard/index.php:64 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:82 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %s to do it:" +msgstr "" + +#: application/views/dashboard/index.php:92 +#, php-format +msgid "You have had %d QSO today" +msgid_plural "You have had %d QSOs today" +msgstr[0] "" + +#: application/views/dashboard/index.php:98 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "你今天还没进行 QSO,是时候打开你的电台开始通联了!" + +#: application/views/dashboard/index.php:105 +msgid "Attention: you need to set an active station location." +msgstr "注意:你需要设置一个活动的电台站地址" + +#: application/views/dashboard/index.php:111 +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgstr "" + +#: application/views/dashboard/index.php:120 +msgid "At least one of your LoTW certificates is expired!" +msgstr "至少有一个 LoTW 证书已经过期!" + +#: application/views/dashboard/index.php:126 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "至少有一个 LoTW 证书即将过期!" + +#: application/views/dashboard/index.php:290 +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:353 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dashboard/index.php:354 +#: application/views/awards/jcc/index.php:183 +msgid "SAT" +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +msgid "QSOs marked" +msgstr "QSO 已标记" + +#: 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 "这些 QSO 已经被标记为已导出到 LoTW" + +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "ADIF 已导入" + +#: 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 "ADIF 文件已成功导入" + +#: 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 "ADIF 文件错误" + +#: 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 "ADIF 文件错误,QSO 虽然已添加,但以下字段尚未填充。" + +#: application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "ADIF 导出" + +#: application/views/adif/import.php:36 application/views/adif/import.php:242 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "日志文件的后缀必须是.adi" + +#: 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:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:168 application/views/adif/import.php:215 +msgid "Select Station Location" +msgstr "选择台站位置" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "向竞赛中添加 QSO" + +#: application/views/adif/import.php:71 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "ADIF 文件" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "导入重复的 QSO" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "标记导入的 QSO 为已上传至 LoTW" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +msgid "Select if ADIF being imported does not contain this information." +msgstr "如果导入的 ADIF 文件不包含此信息,选择此项" + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "标记导入的 QSO 为已上传至 HRDLog Logbook" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "标记导入的 QSO 为已上传至 QRZ Logbook" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "标记导入的 QSO 为已上传至 Clublog Logbook" + +#: application/views/adif/import.php:133 +msgid "Use DXCC information from ADIF" +msgstr "使用 ADIF 文件中的 DXCC 信息" + +#: application/views/adif/import.php:135 +msgid "If not selected, Wavelog will attempt to determine DXCC information automatically." +msgstr "如果不选择,Wavelog 将会自动判断 QSO 的 DXCC" + +#: 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:22 +msgid "DANGER" +msgstr "警告" + +#: application/views/adif/import.php:152 +msgid "Ignore Stationcallsign on import" +msgstr "导入时忽略台站的呼号" + +#: application/views/adif/import.php:154 +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,而不判断是否与所选台站位置匹配" + +#: application/views/adif/import.php:158 application/views/adif/import.php:273 +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 "导出 ADIF 方便您将日志导入到 LoTW 等第三方应用程序或备份日志" + +#: application/views/adif/import.php:187 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "将导出的 QSO 标记为已上传到 LoTW" + +#: application/views/adif/import.php:195 +msgid "Export QSOs not uploaded to LoTW" +msgstr "导出没有上传到 LoTW 的 QSO" + +#: application/views/adif/import.php:200 +msgid "Export QSO's" +msgstr "导出 QSO" + +#: application/views/adif/import.php:205 +msgid "Export Satellite-Only QSOs" +msgstr "只导出卫星 QSO" + +#: application/views/adif/import.php:206 +msgid "Export All Satellite QSOs" +msgstr "导出所有卫星 QSO" + +#: application/views/adif/import.php:208 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "导出 LoTW 上确认的所有卫星 QSO" + +#: application/views/adif/import.php:220 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "如果未选择日期范围,则所有 QSO 都将被标记" + +#: application/views/adif/import.php:228 +msgid "Mark QSOs as exported to LoTW" +msgstr "将 QSO 标记为导出到 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 "" + +#: application/views/adif/import.php:249 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "仅导入在 DCL 上确认的 QSO 的 DOK 数据" + +#: application/views/adif/import.php:251 +msgid "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL." +msgstr "如果您还想使用 DCL 中未经确认的 QSO 的数据更新 DOK,请取消选中" + +#: application/views/adif/import.php:258 +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 "如果选中,Wavelog 将使用 DCL 日志中的 DOK 强制覆盖现有的 DOK 信息。" + +#: application/views/adif/import.php:267 +msgid "Ignore QSOs that cannot be matched." +msgstr "忽略无法匹配的 QSO" + +#: 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/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "DCL DOK 更新结果" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "DOK 的 DCL 信息已更新。" + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "未找到可以更新的 QSO。" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "已更新的 QSO" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "已忽略的 QSO" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "无法匹配的 QSO" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "DOK 错误" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "与 DCL 相比,日志中 DOK 的数据不同" + +#: 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/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "DX Atlas 导出" + +#: application/views/dxatlas/index.php:7 +msgid "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares." +msgstr "导出您的日志以在 DX Atlas 中使用以显示已工作/已确认的网格座标" + +#: 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:9 +#: application/views/interface_assets/header.php:149 +msgid "Timeplotter" +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/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:7 +#: application/views/accumulate/index.php:80 +msgid "Yearly" +msgstr "每年" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:86 +msgid "Monthly" +msgstr "每月" + +#: application/views/accumulate/index.php:75 +msgid "Period" +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:18 +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" +msgstr "" + +#: application/views/cron/index.php:31 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:31 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:41 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:53 application/views/cron/edit.php:36 +msgid "Intervall" +msgstr "" + +#: application/views/cron/index.php:54 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:55 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:68 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:75 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:79 application/views/cron/index.php:81 +#: application/views/cron/index.php:83 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:98 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:99 +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 +msgid "On a basic linux server with shell access use this command to edit your crons:" +msgstr "" + +#: application/views/cron/index.php:107 +#, php-format +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgstr "" + +#: application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +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:25 +msgid "Cancel" +msgstr "取消" + +#: application/views/interface_assets/footer.php:23 +msgid "Attention" +msgstr "注意" + +#: application/views/interface_assets/footer.php:26 +msgid "OK" +msgstr "确认" + +#: application/views/interface_assets/footer.php:27 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "警告!您确定要删除 QSO 和 " + +#: application/views/interface_assets/footer.php:28 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "颜色" + +#: application/views/interface_assets/footer.php:30 +msgid "Worked not confirmed" +msgstr "已通联未确认" + +#: application/views/interface_assets/footer.php:31 +msgid "Not worked" +msgstr "未通联" + +#: application/views/interface_assets/footer.php:33 +#: application/views/qso/index.php:601 +msgid "Clear" +msgstr "清除" + +#: application/views/interface_assets/footer.php:608 +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 "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽略该警告。" + +#: application/views/interface_assets/footer.php:1362 +#: application/views/interface_assets/footer.php:1366 +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1506 +#: application/views/interface_assets/footer.php:1510 +#: application/views/interface_assets/footer.php:1513 +msgid "grid square" +msgstr "网格" + +#: application/views/interface_assets/footer.php:1369 +#: application/views/interface_assets/footer.php:1513 +msgid "Total count" +msgstr "总数" + +#: application/views/interface_assets/header.php:85 +msgid "Developer Mode" +msgstr "开发者模式" + +#: application/views/interface_assets/header.php:96 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "日志簿" + +#: application/views/interface_assets/header.php:98 +msgid "Overview" +msgstr "概览" + +#: application/views/interface_assets/header.php:100 +msgid "Advanced" +msgstr "详细信息" + +#: application/views/interface_assets/header.php:103 +msgid "View QSL Cards" +msgstr "浏览 QSL 卡片" + +#: application/views/interface_assets/header.php:106 +msgid "View eQSL Cards" +msgstr "浏览 eQSL 卡片" + +#: application/views/interface_assets/header.php:114 +msgid "Live QSO" +msgstr "添加 QSO(实时)" + +#: application/views/interface_assets/header.php:116 +msgid "Post QSO" +msgstr "添加 QSO(手动)" + +#: application/views/interface_assets/header.php:118 +msgid "Simple Fast Log Entry" +msgstr "快速记录 QSO" + +#: application/views/interface_assets/header.php:120 +msgid "Live Contest Logging" +msgstr "比赛日志(实时)" + +#: application/views/interface_assets/header.php:122 +msgid "Post Contest Logging" +msgstr "比赛日志(手动)" + +#: application/views/interface_assets/header.php:127 +#: application/views/qso/index.php:38 application/views/qso/index.php:541 +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/view_log/qso.php:590 +msgid "Notes" +msgstr "笔记" + +#: application/views/interface_assets/header.php:131 +msgid "Analytics" +msgstr "分析" + +#: application/views/interface_assets/header.php:137 +msgid "Activated Gridsquares" +msgstr "激活的网格" + +#: application/views/interface_assets/header.php:139 +#: application/views/activators/index.php:2 +msgid "Gridsquare Activators" +msgstr "网格激活者" + +#: application/views/interface_assets/header.php:143 +#: application/views/dayswithqso/index.php:2 +msgid "Days with QSOs" +msgstr "天数" + +#: application/views/interface_assets/header.php:151 +#: application/views/awards/iota/index.php:57 +#: application/views/awards/dxcc/index.php:79 +msgid "Continents" +msgstr "大陆" + +#: application/views/interface_assets/header.php:155 +msgid "Awards" +msgstr "奖项" + +#: application/views/interface_assets/header.php:163 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:165 +msgid "SIG" +msgstr "" + +#: application/views/interface_assets/header.php:183 +msgid "Canada" +msgstr "加拿大" + +#: application/views/interface_assets/header.php:189 +msgid "Germany" +msgstr "德国" + +#: application/views/interface_assets/header.php:193 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:197 +msgid "Great Britain" +msgstr "英国" + +#: application/views/interface_assets/header.php:199 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:203 +msgid "Japan" +msgstr "日本" + +#: application/views/interface_assets/header.php:209 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:213 +msgid "Luxemburg" +msgstr "卢森堡" + +#: application/views/interface_assets/header.php:215 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:219 +msgid "Switzerland" +msgstr "瑞士" + +#: application/views/interface_assets/header.php:225 +msgid "USA" +msgstr "美国" + +#: application/views/interface_assets/header.php:227 +msgid "US Counties" +msgstr "" + +#: application/views/interface_assets/header.php:231 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:233 +#: application/views/awards/ffma/index.php:8 +msgid "Fred Fish Memorial Award" +msgstr "弗雷德·菲什纪念奖" + +#: application/views/interface_assets/header.php:240 +msgid "Tools" +msgstr "工具" + +#: application/views/interface_assets/header.php:242 +msgid "DX Calendar" +msgstr "DX 日志" + +#: application/views/interface_assets/header.php:244 +msgid "Contest Calendar" +msgstr "竞赛日志" + +#: application/views/interface_assets/header.php:248 +msgid "Bandmap" +msgstr "波段地图" + +#: application/views/interface_assets/header.php:250 +msgid "SAT Timers" +msgstr "卫星过境时钟" + +#: application/views/interface_assets/header.php:261 +msgid "Global Options" +msgstr "全局选项" + +#: application/views/interface_assets/header.php:263 +msgid "Modes" +msgstr "模式" + +#: application/views/interface_assets/header.php:267 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +msgid "Satellites" +msgstr "卫星" + +#: application/views/interface_assets/header.php:269 +msgid "Themes" +msgstr "主题" + +#: application/views/interface_assets/header.php:273 +msgid "Update Country Files" +msgstr "更新国家文件" + +#: application/views/interface_assets/header.php:277 +msgid "Debug Information" +msgstr "调试信息" + +#: application/views/interface_assets/header.php:324 +msgid "Add/Search Callsign" +msgstr "添加/搜索 呼号" + +#: application/views/interface_assets/header.php:326 +msgid "Log" +msgstr "日志" + +#: application/views/interface_assets/header.php:347 +#: application/views/user/login.php:59 +msgid "Login" +msgstr "登录" + +#: application/views/interface_assets/header.php:358 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "账户信息" + +#: application/views/interface_assets/header.php:370 +msgid "ADIF Import / Export" +msgstr "ADIF 导入/导出" + +#: application/views/interface_assets/header.php:372 +msgid "Other Export Options" +msgstr "其它导出选项" + +#: application/views/interface_assets/header.php:376 +msgid "DX Atlas Gridsquare Export" +msgstr "DX Atlas Gridsquare 导出" + +#: application/views/interface_assets/header.php:380 +msgid "Cabrillo Export" +msgstr "Cabrillo 导出" + +#: application/views/interface_assets/header.php:382 +msgid "CFD Export" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "OQRS Requests" +msgstr "OQRS" + +#: application/views/interface_assets/header.php:402 +msgid "Labels" +msgstr "标签" + +#: application/views/interface_assets/header.php:404 +msgid "Third-Party Services" +msgstr "第三方服务" + +#: application/views/interface_assets/header.php:407 +msgid "eQSL Import / Export" +msgstr "eQSL 导入/导出" + +#: application/views/interface_assets/header.php:408 +msgid "HRDLog Logbook" +msgstr "HRDLog 日志簿" + +#: application/views/interface_assets/header.php:409 +msgid "QRZ Logbook" +msgstr "QRZ 日志簿" + +#: application/views/interface_assets/header.php:410 +msgid "QO-100 Dx Club Upload" +msgstr "QO-100 Dx Club 上传" + +#: application/views/interface_assets/header.php:415 +msgid "Hardware Interfaces" +msgstr "硬件接口" + +#: application/views/interface_assets/header.php:418 +msgid "Help" +msgstr "帮助" + +#: application/views/interface_assets/header.php:419 +msgid "Forum" +msgstr "论坛" + +#: application/views/interface_assets/header.php:421 +msgid "Logout" +msgstr "注销" + +#: application/views/interface_assets/header.php:429 +msgid "Select a Location" +msgstr "选择电台站位置" + +#: application/views/interface_assets/header.php:508 +msgid "Extras" +msgstr "" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "You are using" +msgstr "你已经用了" + +#: application/views/eqslcard/index.php:10 +#: application/views/qslcard/index.php:10 +msgid "of disk space to store QSL Card assets" +msgstr "的磁盘空间保存 QSL 卡片资源" + +#: application/views/station_profile/create.php:32 +#: application/views/station_profile/edit.php:40 +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 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:34 +#: application/views/station_profile/edit.php:42 +#, 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 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "电台呼号,例如:4W7EST/P" + +#: application/views/station_profile/create.php:44 +#: application/views/station_profile/edit.php:52 +msgid "Station Power (W)" +msgstr "电台功率 (W)" + +#: application/views/station_profile/create.php:46 +#: application/views/station_profile/edit.php:54 +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 +msgid "Station DXCC" +msgstr "台站 DXCC" + +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/edit.php:72 +msgctxt "DXCC selection" +msgid "None" +msgstr "无" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/edit.php:85 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:91 +msgid "Station City" +msgstr "台站城市" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:93 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:105 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:110 +msgid "Station County" +msgstr "台站县" + +#: application/views/station_profile/create.php:82 +#: application/views/station_profile/edit.php:112 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "台站的县 (仅用于 美国本土/阿拉斯加/夏威夷)" + +#: application/views/station_profile/create.php:97 +#: application/views/station_profile/edit.php:138 +#, 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 +msgid "click here" +msgstr "点击此处" + +#: application/views/station_profile/create.php:111 +#: application/views/station_profile/edit.php:155 +#, 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 +msgid "Station Gridsquare" +msgstr "台站网格地址" + +#: application/views/station_profile/create.php:121 +#: application/views/station_profile/edit.php:175 +msgid "Get Gridsquare" +msgstr "获取网格座标" + +#: application/views/station_profile/create.php:125 +#: application/views/station_profile/edit.php:179 +#, 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:126 +#: application/views/station_profile/edit.php:180 +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:130 +#: application/views/station_profile/edit.php:191 +#: application/views/user/edit.php:583 application/views/qso/index.php:196 +#: application/views/qso/index.php:439 application/views/view_log/qso.php:282 +#: application/views/view_log/qso.php:549 +msgid "IOTA Reference" +msgstr "IOTA 编号" + +#: application/views/station_profile/create.php:141 +#: application/views/station_profile/edit.php:205 +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 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:206 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:146 +#: application/views/station_profile/edit.php:219 +#: application/views/user/edit.php:587 application/views/qso/index.php:212 +#: application/views/qso/index.php:456 application/views/view_log/qso.php:289 +#: application/views/view_log/qso.php:556 +msgid "SOTA Reference" +msgstr "SOTA 编号" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:148 +#: application/views/station_profile/edit.php:221 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:232 +#: application/views/user/edit.php:591 application/views/qso/index.php:224 +#: application/views/qso/index.php:469 +#: application/views/awards/wwff/index.php:31 +#: application/views/view_log/qso.php:296 +#: application/views/view_log/qso.php:563 +msgid "WWFF Reference" +msgstr "WWFF 编号" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:154 +#: application/views/station_profile/edit.php:234 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:158 +#: application/views/station_profile/edit.php:245 +#: application/views/user/edit.php:595 application/views/qso/index.php:236 +#: application/views/qso/index.php:482 +#: application/views/awards/pota/index.php:31 +#: application/views/view_log/qso.php:303 +#: application/views/view_log/qso.php:570 +msgid "POTA Reference(s)" +msgstr "POTA 编号" + +#: application/views/station_profile/create.php:160 +#: application/views/station_profile/edit.php:247 +#, 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:160 +#: application/views/station_profile/edit.php:247 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:164 +#: application/views/station_profile/edit.php:260 +msgid "Signature Name" +msgstr "签名名称" + +#: application/views/station_profile/create.php:166 +#: application/views/station_profile/edit.php:262 +msgid "Station Signature (e.g. GMA).." +msgstr "台站签名 (例如 TU 73)" + +#: application/views/station_profile/create.php:170 +#: application/views/station_profile/edit.php:266 +msgid "Signature Information" +msgstr "签名信息" + +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:268 +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 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:283 +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 +msgid "Default QSLMSG" +msgstr "默认 QSL 消息" + +#: application/views/station_profile/create.php:185 +#: application/views/station_profile/edit.php:289 +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 +msgid "Ignore Clublog Upload" +msgstr "忽略 Clublog 上传" + +#: application/views/station_profile/create.php:193 +#: application/views/station_profile/edit.php:333 +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 +msgid "ClubLog Realtime Upload" +msgstr "ClubLog 实时上传" + +#: application/views/station_profile/create.php:205 +#: application/views/station_profile/edit.php:352 +msgid "HRDLog.net Username" +msgstr "HRDLog.net 用户名" + +#: application/views/station_profile/create.php:207 +#: application/views/station_profile/edit.php:354 +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 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:212 +#: application/views/station_profile/edit.php:359 +#, 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 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:215 +#: application/views/station_profile/edit.php:362 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "HRDLog.net Logbook 实时上传" + +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/edit.php:297 +msgid "Subscription Required" +msgstr "需要付费订阅" + +#: application/views/station_profile/create.php:229 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:232 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:235 +#: application/views/station_profile/edit.php:306 +#, 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 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:310 +msgid "QRZ.com Logbook Upload" +msgstr "QRZ.com Logbook 上传" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:313 +msgid "Realtime" +msgstr "实时" + +#: application/views/station_profile/create.php:249 +#: application/views/station_profile/edit.php:378 +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 +#, 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 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:254 +#: application/views/station_profile/edit.php:383 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "QO-100 Dx Club 实时上传" + +#: application/views/station_profile/create.php:263 +#: application/views/station_profile/edit.php:399 +msgid "OQRS Enabled" +msgstr "OQRS 已启用" + +#: application/views/station_profile/create.php:270 +#: application/views/station_profile/edit.php:406 +msgid "OQRS Email alert" +msgstr "OQRS 邮件提醒" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:411 +msgid "Make sure email is set up under admin and global options." +msgstr "确认邮件功能在站点设置中已配置" + +#: application/views/station_profile/create.php:278 +#: application/views/station_profile/edit.php:414 +msgid "OQRS Text" +msgstr "OQRS 文本" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:416 +msgid "Some info you want to add regarding QSL'ing." +msgstr "QSL 信息" + +#: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:456 application/views/debug/index.php:462 +#: application/views/debug/index.php:467 application/views/debug/index.php:472 +#: application/views/debug/index.php:477 application/views/debug/index.php:482 +#: application/views/debug/index.php:487 +msgid "Update" +msgstr "更新" + +#: application/views/station_profile/edit.php:122 +msgid "Zones" +msgstr "分区" + +#: application/views/station_profile/edit.php:257 +msgid "Signature" +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 "日志中最长QSO连续记录" + +#: application/views/dayswithqso/index.php:38 +msgid "A maximum of the 10 longest streaks are shown!" +msgstr "最多显示10条最长QSO连续记录" + +#: application/views/dayswithqso/index.php:56 +msgid "Streak (continuous days with QSOs)" +msgstr "最长QSO连续记录" + +#: 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: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 "目前的QSO连续记录" + +#: 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 "如果你今天进行了QSO,那么就能延长你的连续天数,否则将会被打破清零" + +#: application/views/dayswithqso/index.php:122 +msgid "No current streak found!" +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:8 +msgid "Email settings are incorrect." +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:48 +msgid "E-mail" +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/login.php:45 application/views/user/login.php:46 +#: application/views/user/edit.php:52 +msgid "Username" +msgstr "用户名" + +#: application/views/user/login.php:50 application/views/user/login.php:52 +#: application/views/user/edit.php:64 +#: 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/login.php:56 +msgid "Forgot your password?" +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: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 "HAM 信息" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "偏好" + +#: application/views/user/edit.php:154 application/views/qso/index.php:28 +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +msgid "General" +msgstr "通用" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "样式表" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "Wavelog 语言" + +#: application/views/user/edit.php:176 +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 "日期格式" + +#: 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: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 "第 1 列" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "第 2 列" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "第 3 列" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "第 4 列" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "第 5 列(仅日志页面展示)" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "QSO录入选项" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "单独记录 QSO 结束时间" + +#: 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 "如果想分别记录QSO的开始和结束时间,选择'是',若选择'否'则QSO开始与结束时间相同" + +#: 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 "在日志QSO部分中显示由 qrz.com 中 hamqth.com 配置文件所获得的对方个人资料图片" + +#: application/views/user/edit.php:361 +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "请在 general_config.php 中设置 qrz.com/hamqth.com 的凭据" + +#: 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 "根据 SOTA 编号自动查找网格坐标和山峰" + +#: 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 "开启此项设置,将会通过 API 获取名称和网格坐标,并填写位置和网格定位" + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "根据 WWFF 编号自动查找网格坐标和保护区" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "根据 POTA 编号自动查找网格坐标和公园" + +#: 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: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 "QSO (默认)" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "QSO (已确认)" + +#: 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 "上一个 QSL 方式" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "选择要在上一个 QSO 部分中显示的 QSL 方式" + +#: application/views/user/edit.php:576 +msgid "Show Reference Fields on QSO Tab" +msgstr "在 QSO 页面显示标识代号栏" + +#: application/views/user/edit.php:580 +msgid "The enabled items will be shown on the QSO tab rather than the General tab." +msgstr "启用后在 QSO 页面显示(非通用页面)。" + +#: application/views/user/edit.php:599 application/views/qso/index.php:255 +#: application/views/qso/index.php:500 application/views/view_log/qso.php:332 +#: application/views/view_log/qso.php:582 +msgid "Sig Info" +msgstr "Sig 属性" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "默认值" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "默认波段和 QSL 确认方式设置" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "默认波段" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "默认 QSL 方式" + +#: 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 "Logbook of The World (LoTW) 用户名" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Logbook of The World (LoTW) 密码" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "eQSL.cc 用户名" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "eQSL.cc 密码" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "Clublog" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "Clublog 邮件地址/呼号" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "登录Clublog的电子邮件或呼号" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Clublog 密码" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "其他" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "上传 AMSAT" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "上传卫星状态到" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "Mastodon 服务器" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "Mastodon 地址" + +#: 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 "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "实验性功能" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "启用 Winkeyer 功能" + +#: 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 "如果启用,仅显示基于在 hams.at 设置好的位置信息计算过境,需要设置好 Private Feed Key。" + +#: application/views/user/edit.php:873 +msgid "Save Account" +msgstr "保存账户更改" + +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +#: application/views/user/forgot_password.php:51 +msgid "Reset Password" +msgstr "重置密码" + +#: application/views/user/reset_password.php:9 +#: application/views/user/forgot_password.php:34 +msgid "You can reset your password here." +msgstr "在此处重置密码" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +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 "Yes, delete this user" +msgstr "是,删除" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "不,保留" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +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:694 +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: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: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:346 application/views/view_log/qso.php:542 +msgid "Transmit Power (W)" +msgstr "发射功率(W)" + +#: application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "以W为单位设置功率值。在输入中仅填写数值" + +#: application/views/qso/index.php:458 +msgid "For example: GM/NS-001." +msgstr "例如: GM/NS-001." + +#: application/views/qso/index.php:471 +msgid "For example: DLFF-0069." +msgstr "例如: DLFF-0069." + +#: application/views/qso/index.php:484 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "例如: PA-0150. 可使用多个值" + +#: application/views/qso/index.php:496 +msgid "For example: GMA" +msgstr "例如: GMA" + +#: application/views/qso/index.php:502 +msgid "For example: DA/NW-357" +msgstr "例如: DA/NW-357" + +#: application/views/qso/index.php:510 +msgid "For example: Q03" +msgstr "例如: Q03" + +#: 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 "仅在 Wavelog 使用而不上传到其他的服务的笔记。" + +#: application/views/qso/index.php:563 application/views/qso/index.php:566 +msgid "Method" +msgstr "方法" + +#: application/views/qso/index.php:583 application/views/qso/edit_ajax.php:476 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "此笔记内容被导出到QSL服务,如 eqsl.cc。" + +#: application/views/qso/index.php:586 application/views/qso/edit_ajax.php:480 +msgid "Get the default message for eQSL, for this station." +msgstr "获取该站的 eQSL 默认消息。" + +#: application/views/qso/index.php:604 +msgid "Reset to Default" +msgstr "重置为默认" + +#: application/views/qso/index.php:677 +msgid "Suggestions" +msgstr "建议" + +#: application/views/qso/index.php:684 +msgid "Profile Picture" +msgstr "操作员照片" + +#: application/views/qso/index.php:708 +msgid "Max. 5 previous contacts are shown" +msgstr "最多五次先前通联将会被显示" + +#: application/views/activators/index.php:23 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:30 +msgid "Minimum Count" +msgstr "最低数量" + +#: application/views/activators/index.php:77 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dok/index.php:192 +#: application/views/awards/was/index.php:198 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/waja/index.php:196 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/rac/index.php:190 +#: application/views/awards/jcc/index.php:232 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/wwff/index.php:64 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/dxcc/index.php:276 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:100 +msgid "Count" +msgstr "数量" + +#: application/views/activators/index.php:103 +msgid "Show Map" +msgstr "显示地图" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/simplefle/index.php:12 +msgid "Simple Fast Log Entry (FLE)" +msgstr "简单快速日志输入 (FLE)" + +#: application/views/simplefle/index.php:13 +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 "“快速日志输入”,或简称“FLE”,是一个非常快速、高效地记录 QSO 的系统。 由于其语法,只需最少的输入即可以尽可能少的努力记录许多 QSO。" + +#: application/views/simplefle/index.php:14 +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 最初由 DF3CB 编写。 他在他的网站上提供了一个适用于 Windows 的程序。 Simple FLE 是 OK2CQR 基于 DF3CB 的 FLE 编写的,并提供了一个 Web 界面来记录 QSO。" + +#: application/views/simplefle/index.php:15 +#, 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:16 +#: application/views/simplefle/index.php:157 +msgid "Syntax Help" +msgstr "FLE 语法帮助" + +#: application/views/simplefle/index.php:17 +msgid "Syntax for FLE" +msgstr "FLE 语法帮助" + +#: application/views/simplefle/index.php:18 +msgid "Close and Load Sample Data" +msgstr "关闭并加载示例数据" + +#: application/views/simplefle/index.php:22 +msgid "Band is missing!" +msgstr "找不到波段!" + +#: application/views/simplefle/index.php:23 +msgid "Mode is missing!" +msgstr "找不到模式!" + +#: application/views/simplefle/index.php:24 +msgid "Time is not set!" +msgstr "时间未设定!" + +#: application/views/simplefle/index.php:25 +msgid "Invalid date" +msgstr "日期格式错误!" + +#: application/views/simplefle/index.php:28 +msgid "Station Call is not selected" +msgstr "未选择呼叫的电台站!" + +#: application/views/simplefle/index.php:29 +msgid "'Operator' Field is empty" +msgstr "未输入操作员呼号!" + +#: application/views/simplefle/index.php:30 +msgid "Warning! Do you really want to reset everything?" +msgstr "警告!您确定要重置日志会话吗?" + +#: application/views/simplefle/index.php:31 +msgid "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!" +msgstr "警告!您不能记录 QSO 列表,因为某些 QSO 没有定义波段和模式!" + +#: application/views/simplefle/index.php:32 +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgstr "警告!您不能记录 QSO 列表,因为某些 QSO 没有定义时间!" + +#: application/views/simplefle/index.php:33 +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgstr "警告!您不能记录 QSO 列表,因为您正在使用示例数据!" + +#: application/views/simplefle/index.php:34 +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "确认保存 QSO 到日志" + +#: application/views/simplefle/index.php:35 +msgid "QSO Logged!" +msgstr "QSO 已记录!" + +#: application/views/simplefle/index.php:36 +msgid "The QSO were successfully logged in the logbook!" +msgstr "QSO 已成功记录到日志。" + +#: application/views/simplefle/index.php:39 +msgid "What is that?" +msgstr "这是什么?" + +#: application/views/simplefle/index.php:69 +msgid "QSO Date" +msgstr "QSO 日期" + +#: application/views/simplefle/index.php:71 +msgid "If you don't choose a date, today's date will be used." +msgstr "如果您不选择日期,则将使用今天的日期。" + +#: application/views/simplefle/index.php:75 +msgid "Current UTC Time" +msgstr "当前 UTC 时间" + +#: application/views/simplefle/index.php:83 +msgid "Station Call/Location" +msgstr "位置" + +#: application/views/simplefle/index.php:95 +msgid "If you did operate from a new location, first create a new
SOTA, IOTA, POTA or WWFF" +msgstr "标识代码可以是 SOTA、IOTA、POTA 或 WWFF" + +#: application/views/simplefle/index.php:154 +msgid "Reload QSO List" +msgstr "重新加载 QSO 列表" + +#: application/views/simplefle/index.php:155 +msgid "Save in Wavelog" +msgstr "保存 QSO 列表" + +#: application/views/simplefle/index.php:156 +msgid "Clear Logging Session" +msgstr "清除记录会话" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "FLE 语法是一种简单的语法,用于快速记录 QSO。它的工作原理是,您只需输入每个 QSO 的更改部分。" + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "在每一行上,只写与上一个 QSO 不同的数据。" + +#: application/views/simplefle/syntax_help.php:3 +msgid "- On each new line, only write data that has changed from the previous QSO." +msgstr "例如,如果您在 20m 上与 DF3CB 进行了两次 QSO,您可以这样写:" + +#: 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 "如果您不提供任何 RST 信息,语法将使用 59 (599 用于数据)。我们的下一个 QSO 不是双方都是 59,所以我们首先提供发送的 RST 信息。它比第一个 QSO 晚了 2 分钟。" + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "第一个 QSO 是在 21:34,第二个 QSO 在 21:36,比第一个 QSO 晚了 2 分钟。我们写下 6,因为这是这里唯一改变的数据。关于波段和模式的信息没有改变,因此省略了这些数据。" + +#: 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 "我们的下一个 QSO 是在 2021 年 5 月 14 日的 21:40,我们将波段更改为 40m,但仍然在 SSB 上。如果没有给出 RST 信息,语法将为每个新的 QSO 使用 59。因此,我们可以添加另一个 QSO,它在两天后的同一时间发生。日期必须是 YYYY-MM-DD 格式。" + +#: 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 "完整的可用指令和语法可在 Wavelog Wiki 中的 这篇文章 查看。" + +#: 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 +msgctxt "uses 'this article'" +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +msgstr "" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "导出用于打印的 QSL 请求" + +#: 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 "在这里,你可以导出QSL请求为 CSV 或 ADIF 文件用于打印,或者标记为已寄出" + +#: 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 "QSL 请求是指'已请求'或'已排队'的 QSL 信息" + +#: application/views/qslprint/qsolist.php:15 +#: application/views/qslprint/qslprint.php:30 +msgid "Send Method" +msgstr "发送方式" + +#: application/views/qslprint/qsolist.php:192 +msgid "Add to print queue" +msgstr "添加到打印队列中" + +#: application/views/qslprint/qsolist.php:201 +msgid "No additional QSO's were found. That means they are probably already in the queue." +msgstr "没有找到附加的 QSL 信息,可能它们已经被添加到打印队列中" + +#: 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:67 +msgid "Mark selected QSOs as printed" +msgstr "标记选中的 QSL 信息为'已打印'" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "从队列中删除选中的 QSL 信息" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "导出QSL请求为 CSV 文件" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "导出QSL请求为 ADIF 文件" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "标记 QSL 请求为'已发送'" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "没有找到需要打印的 QSL 信息" + +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/helvetia/index.php:17 +#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/cq/index.php:17 +#: application/views/awards/cq/index.php:24 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/was/index.php:17 +#: application/views/awards/was/index.php:24 +#: application/views/awards/itu/index.php:17 +#: application/views/awards/itu/index.php:24 +#: application/views/awards/waja/index.php:16 +#: application/views/awards/waja/index.php:23 +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: 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/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +msgid "Award Info" +msgstr "奖状详情" + +#: application/views/awards/sota/index.php:7 +msgid "SOTA Awards" +msgstr "SOTA 奖状" + +#: 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(空中山峰)是一项针对无线电业余爱好者的奖励计划,鼓励在山区进行便携式操作" + +#: 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 "它在全球近百个国家全面运营 每个国家/地区都有自己的协会,该协会定义了该协会内公认的 SOTA 峰会 每次登顶都会为激活者和追逐者赢得与峰顶高度相关的分数 各种分数均可获得证书,最终获得著名的“山羊”和“棚屋树懒”奖杯 激活者和追赶者的荣誉榜保存在 SOTA 在线数据库中" + +#: application/views/awards/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/waja/index.php:20 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/sota/index.php:23 +#: application/views/awards/sig/qso_list.php:9 +msgid "Reference" +msgstr "" + +#: application/views/awards/sota/index.php:27 +#: application/views/awards/sig/qso_list.php:14 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sota/index.php:28 +#: application/views/awards/sig/qso_list.php:15 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +msgstr "" + +#: application/views/awards/sig/index.php:7 +msgid "SIG Information" +msgstr "SIG 信息" + +#: 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 或签名类别提供了对 Wavelog 中未实施的奖励使用任何类型的“奖励签名”的可能" + +#: 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 "其原因是常见的 ADIF 格式仅为某些奖项提供了几个专用字段 SIG 仍然可以使用和评估所有其他类型的签名标记" + +#: 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 "在 QSO 处理中,您会发现两个字段:“SIG”包含实际标记,在奖励评估中也可见,“SIG INFO”包含签名的描述 这两个字段都可以自由定制" + +#: application/views/awards/sig/index.php:21 +msgid "Award Type" +msgstr "" + +#: application/views/awards/sig/index.php:23 +msgid "Number of Refs" +msgstr "" + +#: application/views/awards/pota/index.php:7 +msgid "POTA Awards" +msgstr "POTA 奖状" + +#: 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 中文又名 空中花园) 于 2017 年初启动,当时 ARRL 的 National Parks on the Air 特别活动结束后 一群爱好者希望在一年的活动之后继续享受乐趣,因此,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 的工作原理与 SOTA 类似,都有激活者和猎人 奖项根据公园数量、地理区域等分为多个类别" + +#: 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/wab/index.php:12 +msgid "WAB - Worked All Britain Award" +msgstr "WAB - 通联大不列颠奖" + +#: 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(Worked All Britain squares in Amateur Ra​​dio)鼓励业余无线电操作员通联英国所有网格" + +#: 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:101 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/helvetia/index.php:18 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:19 +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(瑞士短波业余爱好者联盟)设立两个奖项:HELVETIA 26(H26)奖和 SWITZERLAND 奖,旨在通过鼓励在多个波段上通联尽可能多的瑞士州。" + +#: application/views/awards/helvetia/index.php:20 +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 "这些奖项有两类:一个适用于 HF 频段,另一个适用于 VHF(包括 SHF 和 UHF)频段。这些奖项的有效连接可追溯到 1980 年 1 月 1 日" + +#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/dok/index.php:37 +#: application/views/awards/was/index.php:31 +#: application/views/awards/waja/index.php:31 +#: application/views/awards/rac/index.php:23 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/dxcc/index.php:39 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/cq/index.php:36 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/was/index.php:35 +#: application/views/awards/itu/index.php:36 +#: application/views/awards/waja/index.php:35 +#: application/views/awards/rac/index.php:27 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/dxcc/index.php:43 +msgid "Show worked" +msgstr "显示已通联" + +#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/cq/index.php:40 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/was/index.php:39 +#: application/views/awards/itu/index.php:40 +#: application/views/awards/waja/index.php:39 +#: application/views/awards/rac/index.php:31 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/dxcc/index.php:47 +msgid "Show confirmed" +msgstr "显示已确认" + +#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/cq/index.php:44 +#: application/views/awards/was/index.php:43 +#: application/views/awards/itu/index.php:44 +#: application/views/awards/waja/index.php:43 +#: application/views/awards/rac/index.php:35 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/dxcc/index.php:51 +msgid "Show not worked" +msgstr "显示未通联" + +#: application/views/awards/helvetia/index.php:49 +#: application/views/awards/cq/index.php:50 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/was/index.php:49 +#: application/views/awards/itu/index.php:50 +#: application/views/awards/waja/index.php:49 +#: application/views/awards/rac/index.php:41 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/dxcc/index.php:57 +msgid "Show QSO with QSL Type" +msgstr "显示 QSL 分类下的 QSO" + +#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/dok/index.php:76 +#: application/views/awards/was/index.php:74 +#: application/views/awards/waja/index.php:74 +#: application/views/awards/rac/index.php:66 +#: application/views/awards/jcc/index.php:73 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/dxcc/index.php:116 +msgid "Every band" +msgstr "" + +#: application/views/awards/helvetia/index.php:112 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/cq/index.php:122 +#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:122 +#: application/views/awards/waja/index.php:122 +#: application/views/awards/rac/index.php:114 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/dxcc/index.php:195 +msgid "Table" +msgstr "" + +#: application/views/awards/helvetia/index.php:149 +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/cq/index.php:165 +#: application/views/awards/dok/index.php:161 +#: application/views/awards/was/index.php:168 +#: application/views/awards/itu/index.php:165 +#: application/views/awards/waja/index.php:164 +#: application/views/awards/rac/index.php:160 +#: application/views/awards/jcc/index.php:164 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/dxcc/index.php:244 +msgid "Summary" +msgstr "概览" + +#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/cq/index.php:178 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/was/index.php:181 +#: application/views/awards/itu/index.php:178 +#: application/views/awards/waja/index.php:178 +#: application/views/awards/rac/index.php:173 +#: application/views/awards/jcc/index.php:191 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/dxcc/index.php:258 +msgid "Total worked" +msgstr "共通联" + +#: application/views/awards/cq/index.php:18 +msgid "CQ Magazine WAZ Award" +msgstr "CQ 杂志 WAZ 奖状" + +#: application/views/awards/cq/index.php:19 +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 "CQ 杂志来自美国,是世界上最受欢迎的业余无线电杂志之一 该杂志于 1945 年 1 月首次出版,重点关注业余无线电的奖项和实用方面" + +#: application/views/awards/cq/index.php:20 +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 +#, 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 +msgid "Awards - CQ Magazine WAZ" +msgstr "CQ 杂志 WAZ 奖状" + +#: application/views/awards/cq/index.php:54 +#: application/views/awards/itu/index.php:54 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL 卡片" + +#: application/views/awards/cq/index.php:113 +msgid "Show CQ Zone Map" +msgstr "查看CQ分区地图" + +#: application/views/awards/cq/index.php:185 +#: application/views/awards/dok/index.php:181 +#: application/views/awards/was/index.php:188 +#: application/views/awards/itu/index.php:185 +#: application/views/awards/waja/index.php:185 +#: application/views/awards/rac/index.php:180 +#: application/views/awards/jcc/index.php:210 +#: application/views/awards/iota/index.php:213 +msgid "Total confirmed" +msgstr "共确认" + +#: application/views/awards/dok/index.php:7 +msgid "DOK Award" +msgstr "DOK 奖状" + +#: 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 "德国从东到西绵延 630 多公里,从北到南绵延近 900 公里 德国 8200 万居民中约有 70,000 人是有执照的HAM,其中 40,000 多人是 DARC 的成员 DOK 是一个为各个地方分会提供标识符的系统,其意思是“Deutscher Ortsverband Kenner”(英语:“德国地方协会标识符”)" + +#: 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 由代表地区的字母和代表地方分会的两位数字组成,例如 P03 Friedrichshafen(“Hamradio 展览”所在城市)或 F41 Baunatal(DARC 总部所在地) 注意:DOK 中的零是一个常见错误,通常被记录为字母 O" + +#: 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/was/index.php:18 +msgid "WAS Award" +msgstr "WAS 奖状" + +#: application/views/awards/was/index.php:19 +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 最受欢迎的奖项是“Worked All States Award” 已向世界各地的HAM颁发了数以千计的奖项 在ARRL成立101周年之际,他们重新设计了证书和项目,希望能够精简和完善奖励项目" + +#: application/views/awards/was/index.php:20 +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(在所有州通联过)奖面向全世界所有提交证明并书面确认与美利坚合众国 50 个州联系的业余爱好者 美国及其属地的业余爱好者必须是 ARRL 的成员才能申请 WAS 来自美国境外的申请人不受此要求的约束" + +#: application/views/awards/was/index.php:21 +#, 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 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/itu/index.php:18 +msgid "ITU Zones" +msgstr "ITU 分区" + +#: application/views/awards/itu/index.php:19 +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 "通联全球 75 个 ITU 分区中的 70 个可申请该奖" + +#: application/views/awards/itu/index.php:20 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:23 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:113 +msgid "Show ITU Zone Map" +msgstr "显示 ITU 分区地图" + +#: application/views/awards/waja/index.php:17 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "WAJA - 通联全日本都道府县奖状" + +#: application/views/awards/waja/index.php:18 +msgid "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan." +msgstr "WAJA,通联全日本都道府县奖状,鼓励许可的业余无线电操作者与所有日本都道府县的电台通联" + +#: application/views/awards/waja/index.php:19 +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 "也许可以通过展示出已经通联(或收听)过来自日本47个都道府县的电台发来的QSL卡片,并按照WAJA(HAJA)的顺序进行排列,都道府县的名称可以忽略" + +#: application/views/awards/waja/index.php:112 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:147 +#: application/views/awards/jcc/index.php:147 +msgid "Number" +msgstr "" + +#: application/views/awards/waja/index.php:148 +msgid "Prefecture" +msgstr "" + +#: application/views/awards/counties/index.php:7 +msgid "US County Award" +msgstr "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 "" + +#: 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 可供全世界所有获得许可的业余爱好者使用,并颁发给所有县联络人的个人,无论使用的呼号、操作地点或日期如何" + +#: application/views/awards/counties/index.php:10 +msgid "Special USA-CA awards are also available to SWLs on a heard basis." +msgstr "美国-加拿大还可以获得 SWL 奖项" + +#: 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/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/rac/index.php:104 +msgid "Show RAC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:16 +msgid "JCC - Japan Century Cities Award" +msgstr "JCC - 日本世纪城市奖" + +#: 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 "通联(收听)并收到日本 100 个不同城市的电台卡片,即可申请。" + +#: 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 and 800 的奖项类别。QSL 卡片应记录 JCC 标识代号,城市名称为无效。额外的贴纸会在每 50 个通联记录发放,如 150, 250, 350, 450, 550, 650, 750 个城市数量" + +#: application/views/awards/jcc/index.php:111 +msgid "Show JCC Map" +msgstr "显示 JCC 地图" + +#: application/views/awards/jcc/index.php:122 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:148 +#: application/views/view_log/qso.php:521 +msgid "City" +msgstr "城市" + +#: application/views/awards/vucc/index.php:7 +msgid "VUCC - VHF/UHF Century Club Award" +msgstr "VUCC - VHF/UHF 世纪俱乐部奖" + +#: 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 "VHF/UHF 世纪俱乐部奖颁发给在所需频段上工作和确认的最小数量的网格" + +#: 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 "仅 VHF/UHF 频段" + +#: 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/wwff/index.php:7 +msgid "WWFF - World Wide Flora and Fauna Award" +msgstr "WWFF - 世界动植物奖" + +#: 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,即“业余无线电世界动植物群”,鼓励获得许可的业余无线电操作员离开棚屋,在全球动植物保护区 (PFF) 进行便携式操作" + +#: 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 "全球已有超过 26,000 个动植物保护区 (PFF) 已在 WWFF 名录中注册 猎人和激活者可以申请全球和国内的丰富多彩的奖项" + +#: application/views/awards/iota/index.php:16 +msgid "IOTA Awards" +msgstr "IOTA 奖状" + +#: 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 是一项令人兴奋且创新的活动,吸引了全球数千名无线电爱好者的兴趣 它成立于 1964 年,致力于促进与世界各地岛屿电台的无线电联系,以增强所有活跃在业余频段的用户的体验 为了实现这一目标,它利用了岛屿周围普遍存在的神秘感" + +#: 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 "它由Islands On The Air (IOTA) Ltd(简称IOTA Management)与英国无线电协会(RSGB)合作管理 IOTA管理层将世界上的岛屿分为大约1200个“IOTA组”,每个组都有不同数量的“counters”,这些“counters”都是合格的岛屿 这些列表发布在 IOTA 目录和 IOTA 网站上 IOTA Island Chaser 的目标是与尽可能多的这些组中的至少一个进行无线电通联 该计划有一套明确的规则,通过在荣誉榜和年度名单中公布参与者的表现,并通过证书和享有盛誉的奖项来认可,鼓励追逐者之间的友好竞争" + +#: 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:33 +#: application/views/awards/dxcc/index.php:32 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +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 "Fred Fish 纪念奖是为了纪念 Fred Fish, W5FF (SK) 而设立,他是第一个在 6 米波段上通联并确认了美国 48 个邻近地区的所有 488 个网格的业余爱好者" + +#: application/views/awards/ffma/index.php:10 +msgid "The award will be given to any amateur who can duplicate W5FF's accomplishment." +msgstr "该奖项将颁发给任何能够再次做到 W5FF 成就的业余爱好者" + +#: 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 "GridMaster 奖是最负盛名的 AMSAT 奖项,由 Star Comm Group 于 2014 年首次推出 全球所有业余无线电操作员都可以使用它,他们可以通过卫星在美国所有 488 个网格方格通联,并且可以为每个通联到的人提供 QSL 确认" + +#: 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 "该地图仅显示了 SAT 上有效的 QSO" + +#: application/views/awards/dxcc/index.php:14 +msgid "DXCC Award" +msgstr "DXCC 奖状" + +#: 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:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +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:16 +msgid "ARRL website" +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 "重要提示:随着时间的推移,DXCC 列表的标准已经发生变化 该列表将保持不变,直到实体不再满足添加该实体时所依据的标准,此时该实体将被移至“已删除列表” 您还会在 Wavelog 的列表中找到已删除的 DXCC 实体 请注意,这些 DXCC 实体已过时且不再有效(如 伪满洲国曾经也是一个合法的DXCC实体)" + +#: application/views/awards/dxcc/index.php:185 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:221 +msgid "DXCC Name" +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 "LoTW 导入" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "上传证书" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "可用证书" + +#: application/views/lotw_views/index.php:41 +msgid "QSO Start Date" +msgstr "QSO 起始日期" + +#: application/views/lotw_views/index.php:42 +msgid "QSO End Date" +msgstr "QSO 结束日期" + +#: application/views/lotw_views/index.php:43 +msgid "Date Created" +msgstr "创建日期" + +#: application/views/lotw_views/index.php:44 +msgid "Date Expires" +msgstr "过期日期" + +#: application/views/lotw_views/index.php:46 +#: application/views/view_log/qso.php:404 +msgid "Last Upload" +msgstr "最后一次上传是" + +#: application/views/lotw_views/index.php:91 +msgid "Expired" +msgstr "过期" + +#: application/views/lotw_views/index.php:93 +msgid "Expiring" +msgstr "即将到期" + +#: application/views/lotw_views/index.php:95 +msgid "Valid" +msgstr "有效" + +#: application/views/lotw_views/index.php:114 +msgid "Not Synced" +msgstr "未同步" + +#: application/views/lotw_views/index.php:129 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "你需要上传 LoTW p12 证书以使用该功能" + +#: application/views/lotw_views/index.php:144 +msgid "Information" +msgstr "信息" + +#: application/views/lotw_views/index.php:149 +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 "上传 LoTW .p12 证书" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "导出 .p12 文件流程" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "打开 TQSL & 选择 呼号证书 选项" + +#: 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/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:43 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:51 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:59 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:63 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:68 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:81 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:93 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:95 +msgid "This checks the folders Wavelog uses are read and writeable by PHP." +msgstr "" + +#: application/views/debug/index.php:101 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:135 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:103 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:137 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:147 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:153 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:155 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:156 +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgstr "" + +#: application/views/debug/index.php:157 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:163 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:170 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:172 +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:191 application/views/debug/index.php:202 +#: application/views/debug/index.php:213 application/views/debug/index.php:224 +#: application/views/debug/index.php:235 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:193 application/views/debug/index.php:204 +#: application/views/debug/index.php:215 application/views/debug/index.php:226 +#: application/views/debug/index.php:237 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:244 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:373 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:377 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:388 application/views/debug/index.php:399 +#: application/views/debug/index.php:409 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:394 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:404 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:414 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:426 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:427 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:445 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:449 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:450 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:454 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:460 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:470 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:475 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:480 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:485 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:494 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:498 +#, 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] "" + +#: application/views/debug/index.php:536 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:544 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:545 application/views/debug/index.php:556 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:565 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:586 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:587 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:588 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:589 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:590 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:591 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:592 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:593 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:594 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:595 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:596 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:597 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:598 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:599 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:600 +msgid "Turkish" +msgstr "" + +#: application/views/notes/main.php:11 application/views/notes/add.php:6 +#: application/views/notes/add.php:12 application/views/notes/edit.php:13 +#: application/views/notes/view.php:12 +msgid "Create 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 "你目前没有任何笔记,这里特别适合用来储存一些诸如 ATU 设置,信标和电台笔记等信息。同时,他们不会像纸片那样容易丢失" + +#: 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: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/edit.php:7 application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "编辑笔记" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "删除笔记" + +#: application/views/view_log/index.php:4 +msgid "Displaying all QSOs of station locations which are linked to this logbook" +msgstr "显示该日志本下全部 QSO" + +#: application/views/view_log/qso.php:6 +msgid "QSO Details" +msgstr "QSO 详情" + +#: application/views/view_log/qso.php:29 +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 "总计距离" + +#: 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:366 +msgid "QSL Info" +msgstr "QSL 信息" + +#: application/views/view_log/qso.php:370 +msgid "QSL Card has been sent via the bureau" +msgstr "QSL 卡片已由卡片局发出" + +#: application/views/view_log/qso.php:372 +msgid "QSL Card has been sent via direct" +msgstr "QSL 卡片已直邮发出" + +#: application/views/view_log/qso.php:374 +msgid "QSL Card has been sent electronically" +msgstr "eQSL 卡片已经发送" + +#: application/views/view_log/qso.php:376 +msgid "QSL Card has been sent via manager" +msgstr "QSL 卡片已经由卡片管理员发出" + +#: application/views/view_log/qso.php:378 +msgid "QSL Card has been sent" +msgstr "QSL 卡片已经发出" + +#: application/views/view_log/qso.php:387 +msgid "QSL Card has been received via the bureau" +msgstr "QSL 卡片已由卡片局收妥" + +#: application/views/view_log/qso.php:389 +msgid "QSL Card has been received via direct" +msgstr "QSL 卡片已直邮收妥" + +#: application/views/view_log/qso.php:391 +msgid "QSL Card has been received electronically" +msgstr "eQSL 卡片已经收妥" + +#: application/views/view_log/qso.php:393 +msgid "QSL Card has been received via manager" +msgstr "QSL 卡片已经由卡片管理员收妥" + +#: application/views/view_log/qso.php:395 +msgid "QSL Card has been received" +msgstr "QSL Card 已被接收" + +#: application/views/view_log/qso.php:404 +msgid "This station uses LoTW." +msgstr "这个电台使用 LOTW" + +#: application/views/view_log/qso.php:409 +#: application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:419 +#: application/views/view_log/qso.php:424 +msgid "This QSO was confirmed on" +msgstr "该 QSO 确认于" + +#: application/views/view_log/qso.php:435 +msgid "More QSOs" +msgstr "更多 QSO" + +#: application/views/view_log/qso.php:503 +msgid "Details" +msgstr "详细" + +#: application/views/view_log/qso.php:630 +msgid "Uploaded QSL Card front image" +msgstr "上传 QSL 卡片正面图像" + +#: application/views/view_log/qso.php:635 +msgid "Upload QSL Card image" +msgstr "上传 QSL 卡片图像" + +#: application/views/view_log/qso.php:640 +msgid "Uploaded QSL Card back image" +msgstr "上传 QSL 卡片背面图像" + +#: 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 "标记 已请求卡片(直邮)" + +#~ msgid " Dupes were inserted!" +#~ msgstr " 重复的QSO已导入" + +#~ msgid " Dupes were skipped." +#~ msgstr " 已跳过重复的QSO" + +#~ msgid "Go to" +#~ msgstr "前往" + +#~ msgid "Overwrite exisiting DOK in log by DCL (if different)." +#~ msgstr "用 DCL 覆盖日志中现有的 DOC(如果不同)" + +#~ msgid "If unchecked information about QSO which could not be found in Wavelog will be displayed." +#~ msgstr "如果不勾选,会显示 Wavelog 中无法匹配的 QSO 信息" diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 744243de16..7c83aab1bc 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -4126,30 +4126,30 @@ function update_dok($record, $ignoreAmbiguous, $onlyConfirmed, $overwriteDok) { if ($ignoreAmbiguous == '1') { return array(); } else { - return array(2, $result['message'] = "".date($custom_date_format, strtotime($record['qso_date']))."".date('H:i', strtotime($record['time_on']))."".str_replace('0', 'Ø', $call)."".$band."".$mode."".(preg_match('/^[A-Y]\d{2}$/', $darc_dok) ? ''.$darc_dok.'' : (preg_match('/^Z\d{2}$/', $darc_dok) ? ''.$darc_dok.'' : $darc_dok))."".lang('dcl_no_match').""); + return array(2, $result['message'] = "".date($custom_date_format, strtotime($record['qso_date']))."".date('H:i', strtotime($record['time_on']))."".str_replace('0', 'Ø', $call)."".$band."".$mode."".(preg_match('/^[A-Y]\d{2}$/', $darc_dok) ? ''.$darc_dok.'' : (preg_match('/^Z\d{2}$/', $darc_dok) ? ''.$darc_dok.'' : $darc_dok))."".__("QSO could not be matched").""); } } else { $dcl_qsl_status = ''; switch($record['app_dcl_status']) { case 'c': - $dcl_qsl_status = lang('dcl_qsl_status_c'); + $dcl_qsl_status = __("confirmed by LoTW/Clublog/eQSL/Contest"); break; case 'm': case 'n': case 'o': - $dcl_qsl_status = lang('dcl_qsl_status_mno'); + $dcl_qsl_status = __("confirmed by award manager"); break; case 'i': - $dcl_qsl_status = lang('dcl_qsl_status_i'); + $dcl_qsl_status = __("confirmed by cross-check of DCL data"); break; case 'w': - $dcl_qsl_status = lang('dcl_qsl_status_w'); + $dcl_qsl_status = __("confirmation pending"); break; case 'x': - $dcl_qsl_status = lang('dcl_qsl_status_x'); + $dcl_qsl_status = __("unconfirmed"); break; default: - $dcl_qsl_status = lang('dcl_qsl_status_unknown'); + $dcl_qsl_status = __("unknown"); } if ($check->row()->COL_DARC_DOK != $darc_dok) { $dcl_cnfm = array('c', 'm', 'n', 'o', 'i'); diff --git a/application/views/accumulate/index.php b/application/views/accumulate/index.php index bdada2cded..0ac5985302 100644 --- a/application/views/accumulate/index.php +++ b/application/views/accumulate/index.php @@ -1,12 +1,12 @@

@@ -15,20 +15,20 @@
- +
- +
@@ -72,18 +72,18 @@
- +
@@ -93,7 +93,7 @@
- +
diff --git a/application/views/activated_gridmap/index.php b/application/views/activated_gridmap/index.php index 0c2da41452..f188375914 100644 --- a/application/views/activated_gridmap/index.php +++ b/application/views/activated_gridmap/index.php @@ -2,12 +2,12 @@
-

+

- + - + - + - + - +
'; ?> - +
'; ?> - +
'; ?> - +
'; ?> - +
- - + +
session->flashdata('message')) { ?> @@ -99,15 +99,15 @@
-
+
-
+
-
+
-
+
-
+

- + - - - + + + @@ -36,14 +36,14 @@ $confirmed += $counties['countycountconfirmed']; } ?> - +
StateCounties WorkedCounties Confirmed
Total
Nothing found!'; + echo ''; } ?> \ No newline at end of file diff --git a/application/views/awards/cq/index.php b/application/views/awards/cq/index.php index 6cb55db2cf..08864b6b12 100644 --- a/application/views/awards/cq/index.php +++ b/application/views/awards/cq/index.php @@ -14,14 +14,14 @@
-

- +

+
@@ -29,50 +29,50 @@
-
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -107,10 +107,10 @@
- - + + + ?>
@@ -119,10 +119,10 @@
@@ -145,7 +145,7 @@ # - " . lang('gen_hamradio_cq_zone') . ""; + " . __("CQ Zone") . ""; foreach($bands as $band) { echo '' . $band . ''; } @@ -162,7 +162,7 @@ echo ''; } echo " -

" . lang('awards_summary') . "

+

" . __("Summary") . "

@@ -171,18 +171,18 @@ foreach($bands as $band) { echo ''; } - echo " + echo " - "; + "; foreach ($cq_summary['worked'] as $dxcc) { // Fills the table with the data echo ''; } echo " - "; + "; foreach ($cq_summary['confirmed'] as $dxcc) { // Fills the table with the data echo ''; } @@ -193,7 +193,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/details.php b/application/views/awards/details.php index f656d5272b..d752c4f51e 100644 --- a/application/views/awards/details.php +++ b/application/views/awards/details.php @@ -1,3 +1,3 @@ -
+
load->view('view_log/partial/log_ajax'); ?> \ No newline at end of file diff --git a/application/views/awards/dok/index.php b/application/views/awards/dok/index.php index 4b39081031..7f6fea972b 100644 --- a/application/views/awards/dok/index.php +++ b/application/views/awards/dok/index.php @@ -3,24 +3,24 @@

- +
- +
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -119,9 +119,9 @@
- - - + + +
@@ -142,7 +142,7 @@
' . $band . '" . lang('awards_total') . "
" . __("Total") . "
" . lang('awards_total_worked') . "
" . __("Total worked") . "' . $dxcc . '
" . lang('awards_total_confirmed') . "" . __("Total confirmed") . "' . $dxcc . '
- '; + '; foreach($bands as $band) { echo ''; } @@ -158,7 +158,7 @@ echo ''; } echo '
DOK' . __("DOK") . '' . $band . '
-

Summary

+

' . __("Summary") . '

@@ -167,18 +167,18 @@ foreach($bands as $band) { echo ''; } - echo ' + echo ' - '; + '; foreach ($dok_summary['worked'] as $dxcc) { // Fills the table with the data echo ''; } echo ' - '; + '; foreach ($dok_summary['confirmed'] as $dxcc) { // Fills the table with the data echo ''; } @@ -189,7 +189,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/dxcc/index.php b/application/views/awards/dxcc/index.php index ba552d188c..d4c6c126e8 100644 --- a/application/views/awards/dxcc/index.php +++ b/application/views/awards/dxcc/index.php @@ -10,14 +10,14 @@

- +
@@ -25,95 +25,95 @@
-
Deleted DXCC
+
input->post('includedeleted')) echo ' checked="checked"'; ?> > - +
-
Worked / Confirmed
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
-
Continents
+
input->post('Antarctica') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Africa') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Asia') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Europe') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('NorthAmerica') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('SouthAmerica') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Oceania') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
- +
- + input->post('sats') == $sat) echo ' selected'; @@ -140,10 +140,10 @@
input->post('band') != 'SAT' && $this->input->post('band') != 'All') echo "style=\"display: none\""; ?>> - +
- + result() as $mode){ if ($mode->submode == null) { @@ -179,10 +179,10 @@
- - + + + ?>
@@ -192,10 +192,10 @@
@@ -218,8 +218,8 @@
- - '; + + '; foreach($bands as $band) { echo ''; } @@ -231,7 +231,7 @@ '; foreach ($value as $name => $key) { if (isset($value['Deleted']) && $value['Deleted'] == 1 && $name == "name") { - echo ''; + echo ''; } else if ($name == "Deleted") { continue; } else { @@ -241,7 +241,7 @@ echo ''; } echo '
' . $band . 'Total
' . __("Total") . '
Total worked
' . __("Total worked") . '' . $dxcc . '
Total confirmed' . __("Total confirmed") . '' . $dxcc . '
#DXCC NamePrefix' . __('DXCC Name') . '' . __('Prefix') . '' . $band . ''. $i++ .'' . $key . ' '.lang('gen_hamradio_deleted_dxcc').'' . $key . ' '.__("Deleted DXCC").'
-

Summary

+

' . __('Summary') . '

@@ -250,12 +250,12 @@ foreach($bands as $band) { echo ''; } - echo ' + echo ' - '; + '; foreach ($dxcc_summary['worked'] as $dxcc) { // Fills the table with the data echo ''; @@ -273,7 +273,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/ffma/index.php b/application/views/awards/ffma/index.php index e9baf3c0b0..4f225a7907 100644 --- a/application/views/awards/ffma/index.php +++ b/application/views/awards/ffma/index.php @@ -4,14 +4,14 @@

- +
@@ -27,15 +27,15 @@
-
:
+
:
-
:
+
:
-
:
+
:
-
:
+
:
-
:
+
:

- + session->flashdata('message')) { ?> @@ -26,15 +26,15 @@
-
:
+
:
-
:
+
:
-
:
+
:
-
:
+
:
-
:
+
:

- +
-
Worked / Confirmed
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -106,10 +106,10 @@
- - + + + ?>
@@ -119,10 +119,10 @@
@@ -146,7 +146,7 @@
- '; + '; foreach($bands as $band) { echo ''; } @@ -165,7 +165,7 @@ } echo '
' . $band . 'Total' . __('Total') . '
Total worked
' . __('Total worked') . '' . $dxcc . '
#Canton' . __('Canton') . '' . $band . '
-

Summary

+

' . __('Summary') . '

@@ -174,11 +174,11 @@ foreach($bands as $band) { echo ''; } - echo ' + echo ' - '; + '; foreach ($helvetia_summary['worked'] as $helvetia) { // Fills the table with the data echo ''; @@ -195,7 +195,7 @@ '; } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/index.php b/application/views/awards/index.php index 6487c46924..780b8bbf27 100644 --- a/application/views/awards/index.php +++ b/application/views/awards/index.php @@ -4,9 +4,9 @@ diff --git a/application/views/awards/iota/index.php b/application/views/awards/iota/index.php index 54f53a8515..fe9bbf40c6 100644 --- a/application/views/awards/iota/index.php +++ b/application/views/awards/iota/index.php @@ -12,86 +12,86 @@

- +
-
Deleted IOTA
+
input->post('includedeleted')) echo ' checked="checked"'; ?> > - +
-
Worked / Confirmed
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
Continents
+
input->post('Antarctica') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Africa') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Asia') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Europe') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('NorthAmerica') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('SouthAmerica') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('Oceania') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -126,10 +126,10 @@
- - + + + ?>
@@ -139,10 +139,10 @@
@@ -166,11 +166,11 @@
- - - '; + + + '; if ($this->input->post('includedeleted')) - echo ' '; + echo ' '; foreach($bands as $band) { echo ''; @@ -189,7 +189,7 @@ } echo '
' . $band . 'Total
' . __('Total') . '
Total worked
' . __('Total worked') . '' . $helvetia . '
#IOTAPrefixName' . __('IOTA') . '' . __('Prefix') . '' . __('Name') . 'Deleted' . __('Deleted') . '' . $band . '
-

Summary

+

' . __('Summary') . '

@@ -198,19 +198,19 @@ foreach($bands as $band) { echo ''; } - echo ''; + echo ''; echo ' - '; + '; foreach ($iota_summary['worked'] as $dxcc) { // Fills the table with the data echo ''; } echo ' - '; + '; foreach ($iota_summary['confirmed'] as $dxcc) { // Fills the table with the data echo ''; } @@ -221,7 +221,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/itu/index.php b/application/views/awards/itu/index.php index 6e93d411be..dd674d75b8 100644 --- a/application/views/awards/itu/index.php +++ b/application/views/awards/itu/index.php @@ -14,14 +14,14 @@
-

- +

+
@@ -29,50 +29,50 @@
-
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -107,10 +107,10 @@
- - + + + ?>
@@ -119,10 +119,10 @@
@@ -145,7 +145,7 @@
- "; + "; foreach($bands as $band) { echo ''; } @@ -162,7 +162,7 @@ echo ''; } echo "
' . $band . 'Total
' . __('Total') . '
Total worked
' . __('Total worked') . '' . $dxcc . '
Total confirmed' . __('Total confirmed') . '' . $dxcc . '
#ITU Zone".__("ITU Zone")."' . $band . '
-

" . lang('awards_summary') . "

+

" . __("Summary") . "

@@ -171,18 +171,18 @@ foreach($bands as $band) { echo ''; } - echo " + echo " - "; + "; foreach ($itu_summary['worked'] as $dxcc) { // Fills the table with the data echo ''; } echo " - "; + "; foreach ($itu_summary['confirmed'] as $dxcc) { // Fills the table with the data echo ''; } @@ -193,7 +193,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/jcc/index.php b/application/views/awards/jcc/index.php index 17fdd5a6fd..b8b3540999 100644 --- a/application/views/awards/jcc/index.php +++ b/application/views/awards/jcc/index.php @@ -12,14 +12,14 @@

- +
@@ -27,50 +27,50 @@
-
Worked / Confirmed
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked')) echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -105,11 +105,11 @@
- - + + - - + +
@@ -119,10 +119,10 @@
@@ -144,8 +144,8 @@
' . $band . '" . lang('awards_total') . "
" . __("Total") . "
" . lang('awards_total_worked') . "
" . __("Total worked") . "' . $dxcc . '
" . lang('awards_total_confirmed') . "" . __("Total confirmed") . "' . $dxcc . '
- - '; + + '; foreach($bands as $band) { echo ''; @@ -161,7 +161,7 @@ echo ''; } echo '
NumberCity' . __('Number') . '' . __('City') . '' . $band . '
-

Summary

+

' . __('Summary') . '

'; $sat = 0; @@ -178,9 +178,9 @@ echo ''; } } - echo ''; + echo ''; if ($sat == 1) { - echo ''; + echo ''; } } else { echo ''; @@ -188,7 +188,7 @@ echo ''; echo ' - '; + '; if (count($bands) > 2) { $len_worked = count($jcc_summary['worked']); @@ -207,7 +207,7 @@ echo ''; - echo ''; + echo ''; if (count($bands) > 2) { $len_confirmed = count($jcc_summary['confirmed']); $j = 0; @@ -229,7 +229,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/pota/index.php b/application/views/awards/pota/index.php index cac3e77fd4..67382991b4 100644 --- a/application/views/awards/pota/index.php +++ b/application/views/awards/pota/index.php @@ -3,14 +3,14 @@

- +
- - - - - - - + + + + + + + @@ -64,6 +64,6 @@
' . $band . 'Total' . __('Total') . 'SAT' . __('SAT') . ''.$bands[0].'
Total worked
' . __('Total worked') . '
Total confirmed' . __('Total confirmed') . '
Nothing found!
'; + echo ''; }?>
diff --git a/application/views/awards/rac/index.php b/application/views/awards/rac/index.php index bc5668ad59..5046de2551 100644 --- a/application/views/awards/rac/index.php +++ b/application/views/awards/rac/index.php @@ -20,50 +20,50 @@
-
Worked / Confirmed
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -98,10 +98,10 @@
- - + + + ?>
@@ -111,10 +111,10 @@
@@ -138,7 +138,7 @@ # - State'; + ' . __("State") . ''; foreach($bands as $band) { echo '' . $band . ''; } @@ -157,7 +157,7 @@ } echo ' -

Summary

+

' . __("Summary") . '

@@ -166,18 +166,18 @@ foreach($bands as $band) { echo ''; } - echo ' + echo ' - '; + '; foreach ($rac_summary['worked'] as $rac) { // Fills the table with the data echo ''; } echo ' - '; + '; foreach ($rac_summary['confirmed'] as $rac) { // Fills the table with the data echo ''; } @@ -187,7 +187,7 @@ '; } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/sig/index.php b/application/views/awards/sig/index.php index d12e4ade6e..48abe861f7 100644 --- a/application/views/awards/sig/index.php +++ b/application/views/awards/sig/index.php @@ -3,14 +3,14 @@

- +
@@ -18,9 +18,9 @@
' . $band . 'Total
' . __("Total") . '
Total worked
' . __("Total worked") . '' . $rac . '
Total confirmed' . __("Total confirmed") . '' . $rac . '
- - - + + + Nothing found!'; + echo ''; } ?> \ No newline at end of file diff --git a/application/views/awards/sig/qso_list.php b/application/views/awards/sig/qso_list.php index cd39a1e2e4..95bdc660c5 100644 --- a/application/views/awards/sig/qso_list.php +++ b/application/views/awards/sig/qso_list.php @@ -6,13 +6,13 @@
Award Type# QSOs# Refs
- - - - - - - + + + + + + + result() as $row) { ?> @@ -31,5 +31,5 @@
ReferenceDate/TimeCallsignModeBandRST SentRST Received
-

Export QSOs to ADIF

+

" target="_blank" class="btn btn-primary">

diff --git a/application/views/awards/sota/index.php b/application/views/awards/sota/index.php index bbb80ff707..758a06d98d 100644 --- a/application/views/awards/sota/index.php +++ b/application/views/awards/sota/index.php @@ -3,14 +3,14 @@

- +
- Reference - Date/Time - Callsign - Band - RST Sent - RST Received + + + + + + Nothing found!
'; + echo ''; }?> diff --git a/application/views/awards/vucc/band.php b/application/views/awards/vucc/band.php index 53371aeee6..538e9ee0be 100644 --- a/application/views/awards/vucc/band.php +++ b/application/views/awards/vucc/band.php @@ -1,7 +1,7 @@

-

+

# - Gridsquare'; + ' . __("Gridsquare") . ''; if ($type != 'worked') { - echo 'QSL - LoTW'; + echo '' . __("QSL") . ' + ' . __("LoTW") . ''; } else { - echo 'Call'; + echo '' . __("Call") . ''; } echo ' @@ -38,6 +38,6 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/vucc/index.php b/application/views/awards/vucc/index.php index f2a0ec72a2..40550bfb11 100644 --- a/application/views/awards/vucc/index.php +++ b/application/views/awards/vucc/index.php @@ -3,14 +3,14 @@

- +
@@ -18,9 +18,9 @@ - - - + + + @@ -36,6 +36,6 @@
BandGrids WorkedGrids Confirmed
Nothing found!
'; + echo ''; } ?> diff --git a/application/views/awards/wab/index.php b/application/views/awards/wab/index.php index 858d69c895..4aa9cd2777 100644 --- a/application/views/awards/wab/index.php +++ b/application/views/awards/wab/index.php @@ -8,20 +8,20 @@

- +
- + - + - + - + - +
'; ?> - +
'; ?> - +
'; ?> - +
'; ?> - +
- - + +
diff --git a/application/views/awards/wab/list.php b/application/views/awards/wab/list.php index af3ab4ad20..ae0c3bfb1b 100644 --- a/application/views/awards/wab/list.php +++ b/application/views/awards/wab/list.php @@ -2,8 +2,8 @@ - - + + diff --git a/application/views/awards/waja/index.php b/application/views/awards/waja/index.php index 565db062ce..11bf3e8033 100644 --- a/application/views/awards/waja/index.php +++ b/application/views/awards/waja/index.php @@ -13,14 +13,14 @@

- +
@@ -28,50 +28,50 @@
-
Worked / Confirmed
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -106,10 +106,10 @@
- - + + + ?>
@@ -119,10 +119,10 @@
@@ -144,8 +144,8 @@
WAB SquareConfirmed
- - '; + + '; foreach($bands as $band) { echo ''; @@ -161,7 +161,7 @@ echo ''; } echo '
NumberPrefecture' . __('Number') . '' . __('Prefecture') . '' . $band . '
-

Summary

+

' . __('Summary') . '

@@ -170,19 +170,19 @@ foreach($bands as $band) { echo ''; } - echo ' + echo ' - '; + '; foreach ($waja_summary['worked'] as $waja) { // Fills the table with the data echo ''; } echo ' - '; + '; foreach ($waja_summary['confirmed'] as $waja) { // Fills the table with the data echo ''; } @@ -193,7 +193,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/was/index.php b/application/views/awards/was/index.php index 72a7c48afb..994136e9c3 100644 --- a/application/views/awards/was/index.php +++ b/application/views/awards/was/index.php @@ -14,64 +14,64 @@

- +
-
Worked / Confirmed
+
input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
-
+
input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
input->post('qrz')) echo ' checked="checked"'; ?> > - +
- +
- + result() as $mode){ if ($mode->submode == null) { @@ -106,10 +106,10 @@
- - + + + ?>
@@ -119,10 +119,10 @@
@@ -146,7 +146,7 @@
- '; + '; foreach($bands as $band) { echo ''; } @@ -165,7 +165,7 @@ } echo '
' . $band . 'Total' . __('Total') . '
Total worked
' . __('Total worked') . '' . $waja . '
Total confirmed' . __('Total confirmed') . '' . $waja . '
#State' . __("State") . '' . $band . '
-

Summary

+

' . __('Summary') . '

@@ -174,18 +174,18 @@ foreach($bands as $band) { echo ''; } - echo ' + echo ' - '; + '; foreach ($was_summary['worked'] as $was) { // Fills the table with the data echo ''; } echo ' - '; + '; foreach ($was_summary['confirmed'] as $was) { // Fills the table with the data echo ''; } @@ -195,7 +195,7 @@ '; } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/wwff/index.php b/application/views/awards/wwff/index.php index 4fa084ae7e..f0fe2a3aef 100644 --- a/application/views/awards/wwff/index.php +++ b/application/views/awards/wwff/index.php @@ -3,14 +3,14 @@

- +
- - - - - - - + + + + + + + @@ -61,6 +61,6 @@
' . $band . 'Total
' . __('Total') . '
Total worked
' . __('Total worked') . '' . $was . '
Total confirmed' . __('Total confirmed') . '' . $was . '
Nothing found!
'; + echo ''; }?> diff --git a/application/views/backup/adif_view.php b/application/views/backup/adif_view.php index d1ab0fdb9d..beb9e13f0d 100644 --- a/application/views/backup/adif_view.php +++ b/application/views/backup/adif_view.php @@ -4,13 +4,13 @@ -

The backup of your log completed successfully. The output can be found at:

+

:

-

You could automate this process by making it a cronjob.

+

-

Something went wrong during the backup process. Check that the backup folder exists and is writeable by your web server user / group.

+

diff --git a/application/views/backup/main.php b/application/views/backup/main.php index bd341f7a85..f303d0ca50 100644 --- a/application/views/backup/main.php +++ b/application/views/backup/main.php @@ -11,13 +11,13 @@
- Backup +
-

Some of the data stored in Wavelog can be exported so that you can keep a backup copy elsewhere.

-

It's recommended to create backups on a regular basis to protect your data.

-

Backup ADIF data

-

Backup Notes

+

+

+

+

diff --git a/application/views/backup/notes_view.php b/application/views/backup/notes_view.php index d2320fd0e8..a0bd189708 100644 --- a/application/views/backup/notes_view.php +++ b/application/views/backup/notes_view.php @@ -4,13 +4,13 @@ -

The backup of your notes completed successfully. The output can be found at:

+

:

-

You could automate this process by making it a cronjob.

+

-

Something went wrong during the backup process. Check that the backup folder exists and is writeable by your web server user / group.

+

diff --git a/application/views/bandmap/index.php b/application/views/bandmap/index.php index 2c14b09d7a..c118bf0954 100644 --- a/application/views/bandmap/index.php +++ b/application/views/bandmap/index.php @@ -12,37 +12,37 @@
- + - + - + - + result() as $row) { ?> - + - + - + - +
- + - +
- + - +
- + - +
- + - +
- +
\ No newline at end of file diff --git a/application/views/bands/edit.php b/application/views/bands/edit.php index 60f740ba79..2c0166f7ac 100644 --- a/application/views/bands/edit.php +++ b/application/views/bands/edit.php @@ -3,32 +3,32 @@
- + band; } ?>" required> - +
- + bandgroup; } ?>" required> - +
- + - +
- + - +
- + - +
- + \ No newline at end of file diff --git a/application/views/bands/index.php b/application/views/bands/index.php index 85bf0e3d8a..ae9cce13e8 100644 --- a/application/views/bands/index.php +++ b/application/views/bands/index.php @@ -25,18 +25,18 @@ -

+

- +

- +

- +

@@ -44,26 +44,26 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + session->userdata('user_type') == '99') { ?> @@ -107,7 +107,7 @@ - + 0) echo 'checked';?>> 0) echo 'checked';?>> @@ -139,16 +139,16 @@

session->userdata('user_type') == '99') { ?> - - - + + +

diff --git a/application/views/cabrillo/index.php b/application/views/cabrillo/index.php index 2b74cd0629..bce177d719 100644 --- a/application/views/cabrillo/index.php +++ b/application/views/cabrillo/index.php @@ -1,9 +1,9 @@
@@ -13,7 +13,7 @@
- +
@@ -25,13 +25,13 @@
-
+
- +
@@ -45,24 +45,24 @@
diff --git a/application/views/cfd/index.php b/application/views/cfd/index.php index 597611d9ef..8189901a39 100644 --- a/application/views/cfd/index.php +++ b/application/views/cfd/index.php @@ -4,7 +4,7 @@
- + https://toplist.darc.de"); ?>
@@ -12,17 +12,17 @@
- +
- +

- +
diff --git a/application/views/components/hamsat/table.php b/application/views/components/hamsat/table.php index 0b9344ecd3..8da0e406a3 100644 --- a/application/views/components/hamsat/table.php +++ b/application/views/components/hamsat/table.php @@ -1,35 +1,35 @@

-

Hamsat - Satellite Rovers

-

This data is from https://hams.at/. +

+

https://hams.at/.

- +
- Private feed key empty. Please set the feed key in your profile. +
- +
- - - - - - - - + + + + + + + + @@ -131,7 +131,7 @@ } ?> - + - Sked + diff --git a/application/views/components/radio_display_table.php b/application/views/components/radio_display_table.php index e27c5154c8..78ce5eca7c 100644 --- a/application/views/components/radio_display_table.php +++ b/application/views/components/radio_display_table.php @@ -2,7 +2,7 @@
DateTimeCallsignCommentSatelliteModeGridsquare(s)Workable
Track
- + result_array() as $row) { ?> diff --git a/application/views/contestcalendar/index.php b/application/views/contestcalendar/index.php index ee3e61cdb3..23c1a74e17 100644 --- a/application/views/contestcalendar/index.php +++ b/application/views/contestcalendar/index.php @@ -1,20 +1,20 @@
Radio Status
- - - - + + + + @@ -23,7 +23,7 @@ function generateTableRows($contests, $custom_date_format) { - + @@ -35,7 +35,7 @@ function generateTableRows($contests, $custom_date_format) {
-

Today

+

@@ -45,7 +45,7 @@ function generateTableRows($contests, $custom_date_format) {
-

Weekend

+

@@ -56,7 +56,7 @@ function generateTableRows($contests, $custom_date_format) {
-

Next Week

+

diff --git a/application/views/contesting/add.php b/application/views/contesting/add.php index 4665c50e8c..46e7aee01f 100644 --- a/application/views/contesting/add.php +++ b/application/views/contesting/add.php @@ -13,18 +13,18 @@

- +

- +

ContestStartEndLink
format('d M - H:i'); ?> format('d M - H:i'); ?>' target='_blank'>Show Details' target='_blank'>
- - - + + + @@ -36,30 +36,30 @@ - + @@ -70,12 +70,12 @@

- - - + + +

diff --git a/application/views/contesting/create.php b/application/views/contesting/create.php index 37624405b7..961507239b 100644 --- a/application/views/contesting/create.php +++ b/application/views/contesting/create.php @@ -21,18 +21,18 @@
- + - +
- + - +
- + diff --git a/application/views/contesting/edit.php b/application/views/contesting/edit.php index 7c9327055b..35d94506f7 100644 --- a/application/views/contesting/edit.php +++ b/application/views/contesting/edit.php @@ -28,31 +28,31 @@
- + name; } ?>" required> - +
- + adifname; } ?>"> - +
- + - +
- + diff --git a/application/views/contesting/index.php b/application/views/contesting/index.php index 972bb64c2c..392b08d115 100644 --- a/application/views/contesting/index.php +++ b/application/views/contesting/index.php @@ -1,6 +1,6 @@
- -

LIVE" : " POST"); ?> + +

LIVE" : " POST"); ?>
@@ -8,20 +8,20 @@
- +
- +
- +
' required>
@@ -39,12 +39,12 @@
- + >
- + >
@@ -54,7 +54,7 @@
- + $bandgroup) { @@ -84,14 +84,14 @@
- +
- +
- +
- +
- +
- +
- - + +
- +
- "> + + + + + + +
@@ -184,31 +184,31 @@
-
+
-
+

'>'> " . lang('admin_contest_menu_deactivate') . ""; + echo ""; } else { - echo ""; + echo ""; };?> - " class="btn btn-outline-primary btn-sm"> + " class="btn btn-outline-primary btn-sm"> - +
- - - - - - - - - - - - + + + + + + + + + + + + diff --git a/application/views/continents/index.php b/application/views/continents/index.php index a2482287fd..643979e062 100644 --- a/application/views/continents/index.php +++ b/application/views/continents/index.php @@ -14,7 +14,7 @@ @@ -27,18 +27,18 @@
- +
- +
- - + + diff --git a/application/views/cron/edit.php b/application/views/cron/edit.php index d69afe2c76..2dfe5bab88 100644 --- a/application/views/cron/edit.php +++ b/application/views/cron/edit.php @@ -2,13 +2,13 @@
//
#Continent# of QSO's worked
- + - + - + - + @@ -70,8 +70,8 @@ diff --git a/application/views/cron/index.php b/application/views/cron/index.php index b68cc5a50c..2d7bf65353 100644 --- a/application/views/cron/index.php +++ b/application/views/cron/index.php @@ -6,29 +6,29 @@
- How it works +

- The Cron Manager assists the administrator in managing cron jobs without requiring CLI access. +

- To execute cron jobs based on the data below, remove all old cron jobs and create a new one: +

-
* * * * * curl --silent index.php/cron/run &>/dev/null
+
* * * * * curl --silent index.php/cron/run &>/dev/null" onclick='copyCron("main_cronjob")'>
= 0) { ?>
- Status Master-Cron: + :
- Status Master-Cron:
PHP Version not supported
Min. Version is + :

@@ -38,7 +38,7 @@
- Cron List +
= 0) { ?> @@ -47,13 +47,13 @@
Identifier
@@ -19,7 +19,7 @@
Enabled
enabled ?? '0') { echo 'checked'; } ?>> @@ -27,27 +27,27 @@
Description
Intervall -

Choose a preset from the dropdown

+

'Custom', - '*/5 * * * *' => 'Every 5 Minutes', - '*/15 * * * *' => 'Every 15 Minutes', - '0 * * * *' => 'Every Hour', - '0 */2 * * *' => 'Every 2 Hours', - '0 0 * * *' => 'Every Day at Midnight', - '0 3 * * 1' => 'Every Monday at 03:00', - '0 0 1 * *' => 'First Day of Every Month at midnight', - '0 2 1 */2 *' => 'Every 2 Months at 02:00' + '*/5 * * * *' => __("Every 5 Minutes"), + '*/15 * * * *' => __("Every 15 Minutes"), + '0 * * * *' => __("Every Hour"), + '0 */2 * * *' => __("Every 2 Hours"), + '0 0 * * *' => __("Every Day at Midnight"), + '0 3 * * 1' => __("Every Monday at 03:00"), + '0 0 1 * *' => __("First Day of Every Month at midnight"), + '0 2 1 */2 *' => __("Every 2 Months at 02:00") ); ?> @@ -59,8 +59,8 @@ -

- OR -

-

Enter your own Cron Expression

+

- -

+

- - - - - - - + + + + + + + @@ -65,22 +65,22 @@ - + - +
IDDescriptionStatusIntervallLast RunNext RunEdit I/O
enabled == '1') { if ($cron->status == 'healthy') { ?> - healthy + status == 'failed') { ?> - failed + status; ?> - disabled + ' . $cron->expression . ''; ?>last_run ?? 'never'; ?>last_run ?? __("never"); ?> enabled == '1') { - echo $cron->next_run ?? 'never'; + echo $cron->next_run ?? __("never"); } else { - echo 'never'; + echo __("never"); } ?> @@ -95,15 +95,16 @@
-

Your Mastercron isn't running.
Copy the cron above to a external cron service or into your server's cron to use this cron manager.

-

On a basic linux server with shell access use this command to edit your crons: +


+

+

crontab -e

diff --git a/application/views/csv/index.php b/application/views/csv/index.php index c7d9c419cc..c463922b99 100644 --- a/application/views/csv/index.php +++ b/application/views/csv/index.php @@ -1,14 +1,14 @@

-

+

- +
@@ -16,11 +16,11 @@
- +
@@ -28,9 +28,9 @@
- +
- + - + adif . '>' . $d->prefix . ' - ' . ucwords(strtolower($d->name), "- (/"); if ($d->Enddate != null) { - echo ' ('.lang('gen_hamradio_deleted_dxcc').')'; + echo ' ('.__("Deleted DXCC").')'; } echo ''; } @@ -77,9 +77,9 @@
- + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + +
- +
- +

- +
diff --git a/application/views/dashboard/index.php b/application/views/dashboard/index.php index ba6e30eb9a..6fa98ba926 100644 --- a/application/views/dashboard/index.php +++ b/application/views/dashboard/index.php @@ -106,28 +106,6 @@ function echo_table_col($row, $name) {
- - - -
- - - -
" data-bs-toggle="tooltip"> / / @@ -372,8 +350,8 @@ function echo_table_col($row, $name) { config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE)) { ?> - - + + diff --git a/application/views/dayswithqso/index.php b/application/views/dayswithqso/index.php index c4f578b72e..0d3ef585c5 100644 --- a/application/views/dayswithqso/index.php +++ b/application/views/dayswithqso/index.php @@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ echo '
VUCC-GridsSAT
'; echo ''; - echo ''; + echo ''; foreach ($result as $master) { echo ''; @@ -22,7 +22,7 @@ echo ''; echo ''; - echo ''; + echo ''; foreach ($result as $master) { echo ''; @@ -34,8 +34,8 @@ } ?> -

-

+

+

' . lang('general_word_year') . '' . __("Year") . '' . $master->Year . '
' . lang('general_word_days') . '' . __("Days") . '' . $master->Days . '
'; echo ''; - echo ''; - echo ''; - echo ''; + echo ''; + echo ''; + echo ''; echo ''; foreach ($streaks as $streak) { @@ -71,19 +71,19 @@ echo '
' . lang('statistics_dwq_streak_continuous_days') . '' . lang('general_word_startdate') . '' . lang('general_word_enddate') . '' . __("Streak (continuous days with QSOs)") . '' . __("Start Date") . '' . __("End Date") . '
'; } else { - echo ''; + echo ''; } ?> -

+

'; echo ''; - echo ''; - echo ''; - echo ''; + echo ''; + echo ''; + echo ''; echo ''; echo ''; @@ -98,14 +98,14 @@ } elseif (is_array($almostcurrentstreak)) { ?> - +
' . lang('statistics_dwq_current_streak_continuous_days') . '' . lang('general_word_startdate') . '' . lang('general_word_enddate') . '' . __("Current streak (continuous days with QSOs)") . '' . __("Start Date") . '' . __("End Date") . '
'; echo ''; - echo ''; - echo ''; - echo ''; + echo ''; + echo ''; + echo ''; echo ''; echo ''; @@ -119,7 +119,7 @@ echo '
' . lang('statistics_dwq_current_streak_continuous_days') . '' . lang('general_word_startdate') . '' . lang('general_word_enddate') . '' . __("Current streak (continuous days with QSOs)") . '' . __("Start Date") . '' . __("End Date") . '
'; } else { - echo ''; + echo ''; } ?> diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 086ac8ae54..e647917ed8 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -20,27 +20,27 @@
-
Wavelog Information
+
- + - + - - + + - - + + - + @@ -48,7 +48,7 @@ - +
Version optionslib->get_option('version') . "\n"; ?>
Language config->item('language')) . "\n"; ?>
Base URLconfig->item('base_url'); ?> ")'>config->item('base_url'); ?> " onclick='copyURL("config->item('base_url'); ?>")'>
MigrationThere is something wrong with your Migration in Database!"); ?>". __("There is something wrong with your Migration in Database!") . ""); ?>
Environment
Total QSO on this instance
@@ -56,33 +56,33 @@
-
Server Information
+
- + - + - + - +
Server Software
PHP Version = 0) { echo phpversion()." OK"; } else { - echo phpversion()." Deprecated"; + echo phpversion()." ".__("Deprecated").""; } ?>
MySQL Version db->version(); ?>
Codeigniter Version
@@ -90,17 +90,17 @@
-
Folder Permissions
+
-

This checks the folders Wavelog uses are read and writeable by PHP.

+

@@ -109,9 +109,9 @@ @@ -120,9 +120,9 @@ @@ -132,9 +132,9 @@ @@ -144,50 +144,32 @@
- Config Maintenance +
config->item('auth_mode') != '3') { ?>
-

Please edit your ./application/config/config.php File:
- Go to your application/config Folder and compare config.sample.php with your config.php

- Change $config['auth_mode'] to the value 3 (Strongly recommended) +


+

+ \$config['auth_mode']","3"); ?>

- Ok Authentication Mode is set correctly -
- - - config->item('cl_multilanguage')) { ?> -
- -

Please edit your ./application/config/config.php File and add some rows to it:

- Go to your application/config Folder and compare config.sample.php with your config.php
- You'll probably find a block with language-settings. Please include this block into your current config.php -

-
- - -
- Ok Multiuser-Language Support is enabled +
-
Migrate Userdata
+
-

Here you can migrate existing QSL cards and eQSL cards to the new userdata folder.

+

@@ -200,15 +182,15 @@
-

Modules

+

/backup - Success + - Failed +
/updates - Success + - Failed +
/uploads - Success + - Failed +
/userdata - Success + - Failed +
@@ -217,9 +199,9 @@ @@ -228,9 +210,9 @@ @@ -239,9 +221,9 @@ @@ -250,16 +232,16 @@
php-curl - Installed + - Not Installed +
php-mysql - Installed + - Not Installed +
php-mbstring - Installed + - Not Installed +
php-xml - Installed + - Not Installed +
php-zip - Installed + - Not Installed +
-

Settings

+

-
Git Information
+
- + - + - + - + @@ -441,8 +423,8 @@
- - + +
@@ -460,73 +442,73 @@ } ?>
-
File download date
+
Branch @@ -403,33 +385,33 @@ - n/a +
Commit - n/a +
Tag - n/a +
Last Fetch format(\DateTime::RFC850)); ?>
- - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
FileLast update
DXCC update from Club Log last_run ?? 'never'; ?>Update
DOK file download last_run ?? 'never'; ?>Update
LoTW users download last_run ?? 'never'; ?>Update
POTA file download last_run ?? 'never'; ?>Update
SCP file download last_run ?? 'never'; ?>Update
SOTA file download last_run ?? 'never'; ?>Update
WWFF file download last_run ?? 'never'; ?>Update
- QSO-DB Maintenance +
-
+
- - - - - - + + + + + + @@ -551,16 +533,16 @@
DateTimeCallModeBandStation Callsign
-

Please mark QSOs and reassign them to an existing station location:

+

- - - + + + @@ -571,7 +553,7 @@ foreach ($stations->result() as $station) { $options .= ''; } - echo $options . ''; + echo $options . ''; } ?>
CallTarget LocationReassign
@@ -580,7 +562,7 @@
@@ -596,3 +578,24 @@ var local_branch = 'n/a'; + + +
+ + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/application/views/distances/index.php b/application/views/distances/index.php index 2ce536e5d5..f0676b00a0 100644 --- a/application/views/distances/index.php +++ b/application/views/distances/index.php @@ -2,21 +2,21 @@
-

+

- + - + - + - +
diff --git a/application/views/dxatlas/index.php b/application/views/dxatlas/index.php index ee134d5d8d..b307ca274b 100644 --- a/application/views/dxatlas/index.php +++ b/application/views/dxatlas/index.php @@ -1,14 +1,14 @@

-

+

- +
@@ -16,11 +16,11 @@
- +
@@ -28,9 +28,9 @@
- +
- + - + adif . '>' . $d->prefix . ' - ' . ucwords(strtolower($d->name), "- (/"); if ($d->Enddate != null) { - echo ' ('.lang('gen_hamradio_deleted_dxcc').')'; + echo ' ('.__("Deleted DXCC").')'; } echo ''; } @@ -77,9 +77,9 @@
- + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + +
- +
- +

- +
diff --git a/application/views/eqsl/import.php b/application/views/eqsl/import.php index c9a74087e3..836b5592fc 100644 --- a/application/views/eqsl/import.php +++ b/application/views/eqsl/import.php @@ -55,7 +55,7 @@
-
+

diff --git a/application/views/eqslcard/index.php b/application/views/eqslcard/index.php index 3b0562a3ae..6a7f1e1b27 100644 --- a/application/views/eqslcard/index.php +++ b/application/views/eqslcard/index.php @@ -2,12 +2,12 @@
-

lang->line('general_word_eqslcards'); ?>

+

config->item('userdata'); if (isset($userdata_dir)) { ?> @@ -25,13 +25,13 @@ echo ' - - - - - - - + + + + + + + '; diff --git a/application/views/gridmap/index.php b/application/views/gridmap/index.php index d9c46718fc..96853caa01 100644 --- a/application/views/gridmap/index.php +++ b/application/views/gridmap/index.php @@ -7,10 +7,10 @@
- +
- + ' . $sat . '' . "\n"; } ?> @@ -38,34 +38,34 @@
- +
- +
style="display: none;" >
- +
@@ -125,8 +125,8 @@
- - + + @@ -143,15 +143,15 @@
-
+
-
+
-
+
-
+
-
+
@@ -70,7 +70,7 @@
- - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
- + dx->show ?? "true") == "true") { ?> - dxcc->show ?? "true") == "true") { ?> - state->show ?? "true") == "true") { ?> - gridsquare->show ?? "true") == "true") { ?> - cqzone->show ?? "true") == "true") { ?> - ituzone->show ?? "true") == "true") { ?> - mode->show ?? "true") == "true") { ?> - band->show ?? "true") == "true") { ?> - iota->show ?? "true") == "true") { ?> - sota->show ?? "true") == "true") { ?> - pota->show ?? "true") == "true") { ?> - wwff->show ?? "true") == "true") { ?> - operator->show ?? "true") == "true") { ?> -
+ data-bs-target=".quickfilterbody"> + data-bs-target=".qslfilterbody"> + data-bs-target=".filterbody"> - + data-bs-target=".actionbody"> + - + - - + + - +
- +
- - + +
@@ -503,37 +503,37 @@
datetime->show ?? "true") == "true") { - echo ''; + echo ''; } ?> de->show ?? "true") == "true") { - echo ''; + echo ''; } ?> dx->show ?? "true") == "true") { - echo ''; + echo ''; } ?> mode->show ?? "true") == "true") { - echo ''; + echo ''; } ?> rsts->show ?? "true") == "true") { - echo ''; + echo ''; } ?> rstr->show ?? "true") == "true") { - echo ''; + echo ''; } ?> band->show ?? "true") == "true") { - echo ''; + echo ''; } ?> gridsquare->show ?? "true") == "true") { echo ''; } ?> name->show ?? "true") == "true") { - echo ''; + echo ''; } ?> qslvia->show ?? "true") == "true") { - echo ''; + echo ''; } ?> qsl->show ?? "true") == "true") { - echo ''; + echo ''; } ?> session->userdata('user_eqsl_name') != "" && ($options->eqsl->show ?? "true") == "true") { echo ''; @@ -542,34 +542,34 @@ echo ''; } ?> qslmsg->show ?? "true") == "true") { - echo ''; + echo ''; } ?> dxcc->show ?? "true") == "true") { - echo ''; + echo ''; } ?> state->show ?? "true") == "true") { - echo ''; + echo ''; } ?> cqzone->show ?? "true") == "true") { - echo ''; + echo ''; } ?> ituzone->show ?? "true") == "true") { - echo ''; + echo ''; } ?> iota->show ?? "true") == "true") { - echo ''; + echo ''; } ?> pota->show ?? "true") == "true") { - echo ''; + echo ''; } ?> operator->show ?? "true") == "true") { - echo ''; + echo ''; } ?> comment->show ?? "true") == "true") { - echo ''; + echo ''; } ?> propagation->show ?? "true") == "true") { - echo ''; + echo ''; } ?> contest->show ?? "true") == "true") { echo ''; @@ -578,7 +578,7 @@ echo ''; } ?> dok->show ?? "true") == "true") { - echo ''; + echo ''; } ?> wwff->show ?? "true") == "true") { echo ''; @@ -587,7 +587,7 @@ echo ''; } ?> myrefs->show ?? "true") == "true") { - echo ''; + echo ''; } ?> diff --git a/application/views/logbookadvanced/qslcarousel.php b/application/views/logbookadvanced/qslcarousel.php index 2af2961e52..f12a610483 100644 --- a/application/views/logbookadvanced/qslcarousel.php +++ b/application/views/logbookadvanced/qslcarousel.php @@ -27,16 +27,16 @@
'.$this->lang->line('gen_hamradio_callsign').''.$this->lang->line('gen_hamradio_mode').''.$this->lang->line('general_word_date').''.$this->lang->line('general_word_time').''.$this->lang->line('gen_hamradio_band').''.$this->lang->line('gen_hamradio_propagation_mode').''.$this->lang->line('gen_hamradio_qsl').' '.$this->lang->line('general_word_date').''.__("Callsign").''.__("Mode").''.__("Date").''.__("Time").''.__("Band").''.__("Propagation Mode").''.__("QSL").' '.__("Date").'
' . lang('general_word_datetime') . '' . __("Date/Time") . '' . lang('gen_hamradio_de') . '' . __("De") . '' . lang('gen_hamradio_dx') . '' . __("Dx") . '' . lang('gen_hamradio_mode') . '' . __("Mode") . '' . lang('gen_hamradio_rsts') . '' . __("RST (S)") . '' . lang('gen_hamradio_rstr') . '' . __("RST (R)") . '' . lang('gen_hamradio_band') . '' . __("Band") . 'Gridsquare' . lang('general_word_name') . '' . __("Name") . '' . lang('gen_hamradio_qslvia') . '' . __("QSL via") . '' . lang('gen_hamradio_qsl') . '' . __("QSL") . 'eQSLLoTW' . lang('gen_hamradio_qslmsg') . '' . __("QSL Msg") . '' . lang('gen_hamradio_dxcc') . '' . __("DXCC") . '' . lang('gen_hamradio_state') . '' . __("State") . '' . lang('gen_hamradio_cq_zone') . '' . __("CQ Zone") . '' . lang('gen_hamradio_itu_zone') . '' . __("ITU Zone") . '' . lang('gen_hamradio_iota') . '' . __("IOTA") . '' . lang('gen_hamradio_pota') . '' . __("POTA") . '' . lang('gen_hamradio_operator') . '' . __("Operator") . '' . lang('general_word_comment') . '' . __("Comment") . '' . lang('filter_general_propagation') . '' . __("Propagation") . 'ContestSOTA' . lang('gen_hamradio_dok') . '' . __("DOK") . 'WWFFSIG' . lang('gen_hamradio_myrefs') . '' . __("My Refs") . '
- - - - - - - - - - + + + + + + + + + + @@ -64,11 +64,11 @@ 1) { ?> - + - + diff --git a/application/views/logbookadvanced/startatform.php b/application/views/logbookadvanced/startatform.php index 0aac7c7b46..cb7cc1fb43 100644 --- a/application/views/logbookadvanced/startatform.php +++ b/application/views/logbookadvanced/startatform.php @@ -1,29 +1,29 @@
- +
- +
- +
- +
- +
diff --git a/application/views/logbookadvanced/useroptions.php b/application/views/logbookadvanced/useroptions.php index becc79acb8..c78ae33df3 100644 --- a/application/views/logbookadvanced/useroptions.php +++ b/application/views/logbookadvanced/useroptions.php @@ -13,105 +13,105 @@
- - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/application/views/lookup/index.php b/application/views/lookup/index.php index c454e729bf..a20ea3a75a 100644 --- a/application/views/lookup/index.php +++ b/application/views/lookup/index.php @@ -28,7 +28,7 @@ foreach ($dxcc as $d) { echo ''; } diff --git a/application/views/lotw/import.php b/application/views/lotw/import.php index fd9ffa5b3b..f588ec64f5 100644 --- a/application/views/lotw/import.php +++ b/application/views/lotw/import.php @@ -1,6 +1,6 @@
-

-

+

-

datetime->show ?? "true") == "true") { echo 'checked'; } ?>>
de->show ?? "true") == "true") { echo 'checked'; } ?>>
dx->show ?? "true") == "true") { echo 'checked'; } ?>>
mode->show ?? "true") == "true") { echo 'checked'; } ?>>
rsts->show ?? "true") == "true") { echo 'checked'; } ?>>
rstr->show ?? "true") == "true") { echo 'checked'; } ?>>
band->show ?? "true") == "true") { echo 'checked'; } ?>>
myrefs->show ?? "true") == "true") { echo 'checked'; } ?>>
name->show ?? "true") == "true") { echo 'checked'; } ?>>
qslvia->show ?? "true") == "true") { echo 'checked'; } ?>>
qsl->show ?? "true") == "true") { echo 'checked'; } ?>>
lotw->show ?? "true") == "true") { echo 'checked'; } ?>>
eqsl->show ?? "true") == "true") { echo 'checked'; } ?>>
qslmsg->show ?? "true") == "true") { echo 'checked'; } ?>>
dxcc->show ?? "true") == "true") { echo 'checked'; } ?>>
state->show ?? "true") == "true") { echo 'checked'; } ?>>
cqzone->show ?? "true") == "true") { echo 'checked'; } ?>>
ituzone->show ?? "true") == "true") { echo 'checked'; } ?>>
sota->show ?? "true") == "true") { echo 'checked'; } ?>>
iota->show ?? "true") == "true") { echo 'checked'; } ?>>
pota->show ?? "true") == "true") { echo 'checked'; } ?>>
operator->show ?? "true") == "true") { echo 'checked'; } ?>>
comment->show ?? "true") == "true") { echo 'checked'; } ?>>
propagation->show ?? "true") == "true") { echo 'checked'; } ?>>
- - - - - - - - - + + + + + + + + + @@ -53,7 +53,7 @@ result() as $row) { ?> - + @@ -126,7 +126,7 @@ @@ -141,12 +141,12 @@ if (!($this->config->item('disable_manual_lotw'))) { ?>
- +
diff --git a/application/views/lotw_views/upload_cert.php b/application/views/lotw_views/upload_cert.php index cef2ff4a53..92b455d54c 100644 --- a/application/views/lotw_views/upload_cert.php +++ b/application/views/lotw_views/upload_cert.php @@ -1,11 +1,11 @@
-

+

- +
@@ -16,23 +16,23 @@
- +
- +
diff --git a/application/views/mode/index.php b/application/views/mode/index.php index 3ac01c4c1a..bffe823dd0 100644 --- a/application/views/mode/index.php +++ b/application/views/mode/index.php @@ -65,7 +65,7 @@
- + diff --git a/application/views/notes/add.php b/application/views/notes/add.php index fb329a6e03..8e95f7a309 100644 --- a/application/views/notes/add.php +++ b/application/views/notes/add.php @@ -3,13 +3,13 @@
-

+

@@ -26,26 +26,26 @@
- +
- +
- +
- +
diff --git a/application/views/notes/edit.php b/application/views/notes/edit.php index e7235c78cb..34a0a5f7e5 100644 --- a/application/views/notes/edit.php +++ b/application/views/notes/edit.php @@ -4,13 +4,13 @@ result() as $row) { ?>
-

+

@@ -27,27 +27,27 @@
- +
- +
- +
note; ?>
- +
diff --git a/application/views/notes/main.php b/application/views/notes/main.php index ad4d23435c..93196ae649 100644 --- a/application/views/notes/main.php +++ b/application/views/notes/main.php @@ -2,13 +2,13 @@
-

+

@@ -19,7 +19,7 @@ if ($notes->num_rows() > 0) { - echo "

".lang('notes_your_notes')."

"; + echo "

".__("Your Notes")."

"; echo "
    "; foreach ($notes->result() as $row) { @@ -29,7 +29,7 @@ } echo "
"; } else { - echo "

".lang('notes_welcome')."

"; + echo "

".__("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!")."

"; } ?> diff --git a/application/views/notes/view.php b/application/views/notes/view.php index c6848abeff..154ae61561 100644 --- a/application/views/notes/view.php +++ b/application/views/notes/view.php @@ -3,22 +3,22 @@
result() as $row) { ?>
-

- title; ?>

+

- title; ?>

note); ?>

- + - +
diff --git a/application/views/options/appearance.php b/application/views/options/appearance.php index 40efca6286..b775c707c2 100644 --- a/application/views/options/appearance.php +++ b/application/views/options/appearance.php @@ -33,19 +33,10 @@ -
- + - +
@@ -67,40 +58,40 @@
- + - +
- + - +
- + - +
- + - +
@@ -113,7 +104,7 @@
- + " />
diff --git a/application/views/options/dxcluster.php b/application/views/options/dxcluster.php index c248e8a1ec..52867eb296 100644 --- a/application/views/options/dxcluster.php +++ b/application/views/options/dxcluster.php @@ -35,36 +35,36 @@
- -

+ +

".__("DXClusterAPI").""); ?>

- +
- + - +
- + - +
- + " /> diff --git a/application/views/options/email.php b/application/views/options/email.php index 41b2e8a2e1..f384e9aa80 100644 --- a/application/views/options/email.php +++ b/application/views/options/email.php @@ -42,79 +42,79 @@
- + - +
- + - +
- +
optionslib->get_option('emailSenderName'); } ?>"> - +
- +
optionslib->get_option('emailAddress'); } ?>"> - +
- +
optionslib->get_option('smtpHost'); } ?>"> - +
- +
optionslib->get_option('smtpPort'); } ?>"> - + '587', if SSL is used -> '465'"); ?>
- +
optionslib->get_option('smtpUsername'); } ?>"> - +
- +
optionslib->get_option('smtpPassword'); } ?>"> - +
- + " />
- - + " /> + diff --git a/application/views/options/index.php b/application/views/options/index.php index b5272d0f81..8fbf8756dd 100644 --- a/application/views/options/index.php +++ b/application/views/options/index.php @@ -10,7 +10,7 @@

-

+

diff --git a/application/views/options/oqrs.php b/application/views/options/oqrs.php index 82664daafa..81ee473cfe 100644 --- a/application/views/options/oqrs.php +++ b/application/views/options/oqrs.php @@ -35,31 +35,31 @@
- + - +
- + - +
- + - +
- + " /> diff --git a/application/views/options/radios.php b/application/views/options/radios.php index 0f705b4ee7..89d056d16c 100644 --- a/application/views/options/radios.php +++ b/application/views/options/radios.php @@ -35,14 +35,14 @@
- -

+ +

- +
- + " /> diff --git a/application/views/options/sidebar.php b/application/views/options/sidebar.php index 902bd39683..d17108d156 100644 --- a/application/views/options/sidebar.php +++ b/application/views/options/sidebar.php @@ -1,12 +1,12 @@
    -
  • -
  • -
  • -
  • -
  • -
  • +
  • +
  • +
  • +
  • +
  • +
diff --git a/application/views/options/version_dialog.php b/application/views/options/version_dialog.php index 992459f1a5..2127b7c00b 100644 --- a/application/views/options/version_dialog.php +++ b/application/views/options/version_dialog.php @@ -44,44 +44,44 @@
- + - +
- + - +
- + " />
-
+
session->flashdata('success_trigger')) { ?> @@ -94,16 +94,16 @@
- + - +
- + - +
diff --git a/application/views/oqrs/qsolist.php b/application/views/oqrs/qsolist.php index c832407f13..f93164ab4b 100644 --- a/application/views/oqrs/qsolist.php +++ b/application/views/oqrs/qsolist.php @@ -3,12 +3,12 @@ echo '
callsign; ?>cert_dxcc == '' ? '- NONE -' : ucfirst($row->cert_dxcc); if ($row->cert_dxcc_end != NULL) { echo ' '.lang('gen_hamradio_deleted_dxcc').''; } ?>cert_dxcc == '' ? '- NONE -' : ucfirst($row->cert_dxcc); if ($row->cert_dxcc_end != NULL) { echo ' '.__("Deleted DXCC").''; } ?> qso_start_date)) { $valid_qso_start = strtotime( $row->qso_start_date ); @@ -88,11 +88,11 @@ date_expires.'-30 days')); ?> $row->date_expires) { ?> - + date_expires && $current_date > $warning_date) { ?> - + - + @@ -111,11 +111,11 @@ - + - +
<---
- - - - - - + + + + + + '; if ($this->session->userdata('user_eqsl_name') != "") { echo ''; @@ -47,16 +47,16 @@ } switch ($qsl->COL_QSL_SENT) { case "Y": - echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_sent').$timestamp; + echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".__("Sent").$timestamp; break; case "Q": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_queued').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Queued").$timestamp; break; case "R": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_requested').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Requested").$timestamp; break; case "I": - echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_invalid_ignore').$timestamp; + echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".__("Invalid (Ignore)").$timestamp; break; default: echo "class=\"qsl-red"; @@ -66,16 +66,16 @@ if ($qsl->COL_QSL_SENT_VIA != "") { switch ($qsl->COL_QSL_SENT_VIA) { case "B": - echo " (".lang('general_word_qslcard_bureau').")"; + echo " (".__("Bureau").")"; break; case "D": - echo " (".lang('general_word_qslcard_direct').")"; + echo " (".__("Direct").")"; break; case "M": - echo " (".lang('general_word_qslcard_via').": ".($qsl->COL_QSL_VIA!="" ? $qsl->COL_QSL_VIA:"n/a").")"; + echo " (".__("Via").": ".($qsl->COL_QSL_VIA!="" ? $qsl->COL_QSL_VIA:"n/a").")"; break; case "E": - echo " (".lang('general_word_qslcard_electronic').")"; + echo " (".__("Electronic").")"; break; } } @@ -89,16 +89,16 @@ } switch ($qsl->COL_QSL_RCVD) { case "Y": - echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_received').$timestamp; + echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".__("Received").$timestamp; break; case "Q": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_queued').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Queued").$timestamp; break; case "R": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_requested').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Requested").$timestamp; break; case "I": - echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_invalid_ignore').$timestamp; + echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".__("Invalid (Ignore)").$timestamp; break; default: echo "class=\"qsl-red"; @@ -108,16 +108,16 @@ if ($qsl->COL_QSL_RCVD_VIA != "") { switch ($qsl->COL_QSL_RCVD_VIA) { case "B": - echo " (".lang('general_word_qslcard_bureau').")"; + echo " (".__("Bureau").")"; break; case "D": - echo " (".lang('general_word_qslcard_direct').")"; + echo " (".__("Direct").")"; break; case "M": echo " (Manager)"; break; case "E": - echo " (".lang('general_word_qslcard_electronic').")"; + echo " (".__("Electronic").")"; break; } } @@ -127,7 +127,7 @@ echo '
'.lang('gen_hamradio_callsign').'' . lang('general_word_date') . ''. lang('general_word_time') .'' . lang('gen_hamradio_mode') . '' . lang('gen_hamradio_band') . '' . lang('gen_hamradio_station') . ''.__("Callsign").'' . __("Date") . ''. __("Time") .'' . __("Mode") . '' . __("Band") . '' . __("Station") . ' QSLeQSL'; echo 'COL_EQSL_QSL_SENT == "Y") { - echo "title=\"".lang('eqsl_short')." ".lang('general_word_sent'); + echo "title=\"".__("eQSL")." ".__("Sent"); if ($qsl->COL_EQSL_QSLSDATE != null) { $timestamp = strtotime($qsl->COL_EQSL_QSLSDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -140,7 +140,7 @@ echo 'COL_EQSL_QSL_RCVD == "Y") { - echo "title=\"".lang('eqsl_short')." ".lang('general_word_received'); + echo "title=\"".__("eQSL")." ".__("Received"); if ($qsl->COL_EQSL_QSLRDATE != null) { $timestamp = strtotime($qsl->COL_EQSL_QSLRDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -156,7 +156,7 @@ echo ''; echo 'COL_LOTW_QSL_SENT == "Y") { - echo "title=\"".lang('lotw_short')." ".lang('general_word_sent'); + echo "title=\"".__("LoTW")." ".__("Sent"); if ($qsl->COL_LOTW_QSLSDATE != null) { $timestamp = strtotime($qsl->COL_LOTW_QSLSDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -169,7 +169,7 @@ echo 'COL_LOTW_QSL_RCVD == "Y") { - echo "title=\"".lang('lotw_short')." ".lang('general_word_received'); + echo "title=\"".__("LoTW")." ".__("Received"); if ($qsl->COL_LOTW_QSLRDATE != null) { $timestamp = strtotime($qsl->COL_LOTW_QSLRDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); diff --git a/application/views/public_search/result.php b/application/views/public_search/result.php index 0297f82719..a93b30f3fd 100644 --- a/application/views/public_search/result.php +++ b/application/views/public_search/result.php @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/application/views/qrz/export.php b/application/views/qrz/export.php index 87bc481f17..60cede635e 100644 --- a/application/views/qrz/export.php +++ b/application/views/qrz/export.php @@ -73,7 +73,7 @@

Warning If no startdate is given then all QSOs after last confirmation will be downloaded/updated!

- +
@@ -94,12 +94,12 @@

Warning If a date range is not selected then all QSOs will be marked!

- +
- +
diff --git a/application/views/qslcard/index.php b/application/views/qslcard/index.php index 0ba0e814bf..78c6105477 100644 --- a/application/views/qslcard/index.php +++ b/application/views/qslcard/index.php @@ -2,12 +2,12 @@
-

+

config->item('userdata'); if (isset($userdata_dir)) { ?> @@ -25,12 +25,12 @@ echo '
Station Callsign
- - - - - - + + + + + + diff --git a/application/views/qslcard/searchresult.php b/application/views/qslcard/searchresult.php index 24d7d7fc5c..d175cd8e7a 100644 --- a/application/views/qslcard/searchresult.php +++ b/application/views/qslcard/searchresult.php @@ -1,90 +1,90 @@
'.lang('gen_hamradio_callsign').''.lang('gen_hamradio_mode').''.lang('general_word_date').''.lang('general_word_time').''.lang('gen_hamradio_band').''.lang('gen_hamradio_qsl').' '.lang('general_word_date').''.__("Callsign").''.__("Mode").''.__("Date").''.__("Time").''.__("Band").''.__("QSL").' '.__("Date").'
- + config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE || ($this->config->item('show_time'))) { ?> - + - + '; switch($this->session->userdata('user_column1')==""?'Mode':$this->session->userdata('user_column1')) { - case 'Mode': echo lang('gen_hamradio_mode'); break; - case 'RSTS': echo lang('gen_hamradio_rsts'); break; - case 'RSTR': echo lang('gen_hamradio_rstr'); break; - case 'Country': echo lang('general_word_country'); break; - case 'IOTA': echo lang('gen_hamradio_iota'); break; - case 'SOTA': echo lang('gen_hamradio_sota'); break; - case 'State': echo lang('gen_hamradio_state'); break; - case 'Grid': echo lang('gen_hamradio_gridsquare'); break; - case 'Distance': echo lang('gen_hamradio_distance'); break; - case 'Band': echo lang('gen_hamradio_band'); break; - case 'Frequency': echo lang('gen_hamradio_frequency'); break; - case 'Operator': echo lang('gen_hamradio_operator'); break; + case 'Mode': echo __("Mode"); break; + case 'RSTS': echo __("RST (S)"); break; + case 'RSTR': echo __("RST (R)"); break; + case 'Country': echo __("Country"); break; + case 'IOTA': echo __("IOTA"); break; + case 'SOTA': echo __("SOTA"); break; + case 'State': echo __("State"); break; + case 'Grid': echo __("Gridsquare"); break; + case 'Distance': echo __("Distance"); break; + case 'Band': echo __("Band"); break; + case 'Frequency': echo __("Frequency"); break; + case 'Operator': echo __("Operator"); break; } echo ''; echo ''; echo ''; echo ''; echo ''; diff --git a/application/views/qslprint/index.php b/application/views/qslprint/index.php index 69efcf1a15..e40115da18 100644 --- a/application/views/qslprint/index.php +++ b/application/views/qslprint/index.php @@ -13,21 +13,21 @@
- +
- : + : -

-

+

+

- - - - - - - - - - - - - + + + + + + + + + + + + +'; @@ -64,18 +64,18 @@ function echo_qsl_sent_via($method) { echo '
'; switch($this->session->userdata('user_column2')==""?'RSTS':$this->session->userdata('user_column2')) { - case 'Mode': echo lang('gen_hamradio_mode'); break; - case 'RSTS': echo lang('gen_hamradio_rsts'); break; - case 'RSTR': echo lang('gen_hamradio_rstr'); break; - case 'Country': echo lang('general_word_country'); break; - case 'IOTA': echo lang('gen_hamradio_iota'); break; - case 'SOTA': echo lang('gen_hamradio_sota'); break; - case 'State': echo lang('gen_hamradio_state'); break; - case 'Grid': echo lang('gen_hamradio_gridsquare'); break; - case 'Distance': echo lang('gen_hamradio_distance'); break; - case 'Band': echo lang('gen_hamradio_band'); break; - case 'Frequency': echo lang('gen_hamradio_frequency'); break; - case 'Operator': echo lang('gen_hamradio_band'); break; + case 'Mode': echo __("Mode"); break; + case 'RSTS': echo __("RST (S)"); break; + case 'RSTR': echo __("RST (R)"); break; + case 'Country': echo __("Country"); break; + case 'IOTA': echo __("IOTA"); break; + case 'SOTA': echo __("SOTA"); break; + case 'State': echo __("State"); break; + case 'Grid': echo __("Gridsquare"); break; + case 'Distance': echo __("Distance"); break; + case 'Band': echo __("Band"); break; + case 'Frequency': echo __("Frequency"); break; + case 'Operator': echo __("Band"); break; } echo ''; switch($this->session->userdata('user_column3')==""?'RSTR':$this->session->userdata('user_column3')) { - case 'Mode': echo lang('gen_hamradio_mode'); break; - case 'RSTS': echo lang('gen_hamradio_rsts'); break; - case 'RSTR': echo lang('gen_hamradio_rstr'); break; - case 'Country': echo lang('general_word_country'); break; - case 'IOTA': echo lang('gen_hamradio_iota'); break; - case 'SOTA': echo lang('gen_hamradio_sota'); break; - case 'State': echo lang('gen_hamradio_state'); break; - case 'Grid': echo lang('gen_hamradio_gridsquare'); break; - case 'Distance': echo lang('gen_hamradio_distance'); break; - case 'Band': echo lang('gen_hamradio_band'); break; - case 'Frequency': echo lang('gen_hamradio_frequency'); break; - case 'Operator': echo lang('gen_hamradio_operator'); break; + case 'Mode': echo __("Mode"); break; + case 'RSTS': echo __("RST (S)"); break; + case 'RSTR': echo __("RST (R)"); break; + case 'Country': echo __("Country"); break; + case 'IOTA': echo __("IOTA"); break; + case 'SOTA': echo __("SOTA"); break; + case 'State': echo __("State"); break; + case 'Grid': echo __("Gridsquare"); break; + case 'Distance': echo __("Distance"); break; + case 'Band': echo __("Band"); break; + case 'Frequency': echo __("Frequency"); break; + case 'Operator': echo __("Operator"); break; } echo ''; switch($this->session->userdata('user_column4')==""?'Band':$this->session->userdata('user_column4')) { - case 'Mode': echo lang('gen_hamradio_mode'); break; - case 'RSTS': echo lang('gen_hamradio_rsts'); break; - case 'RSTR': echo lang('gen_hamradio_rstr'); break; - case 'Country': echo lang('general_word_country'); break; - case 'IOTA': echo lang('gen_hamradio_iota'); break; - case 'SOTA': echo lang('gen_hamradio_sota'); break; - case 'State': echo lang('gen_hamradio_state'); break; - case 'Grid': echo lang('gen_hamradio_gridsquare'); break; - case 'Distance': echo lang('gen_hamradio_distance'); break; - case 'Band': echo lang('gen_hamradio_band'); break; - case 'Frequency': echo lang('gen_hamradio_frequency'); break; - case 'Operator': echo lang('gen_hamradio_operator'); break; + case 'Mode': echo __("Mode"); break; + case 'RSTS': echo __("RST (S)"); break; + case 'RSTR': echo __("RST (R)"); break; + case 'Country': echo __("Country"); break; + case 'IOTA': echo __("IOTA"); break; + case 'SOTA': echo __("SOTA"); break; + case 'State': echo __("State"); break; + case 'Grid': echo __("Gridsquare"); break; + case 'Distance': echo __("Distance"); break; + case 'Band': echo __("Band"); break; + case 'Frequency': echo __("Frequency"); break; + case 'Operator': echo __("Operator"); break; } echo ''; switch($this->session->userdata('user_column5')==""?'Country':$this->session->userdata('user_column5')) { - case 'Mode': echo lang('gen_hamradio_mode'); break; - case 'RSTS': echo lang('gen_hamradio_rsts'); break; - case 'RSTR': echo lang('gen_hamradio_rstr'); break; - case 'Country': echo lang('general_word_country'); break; - case 'IOTA': echo lang('gen_hamradio_iota'); break; - case 'SOTA': echo lang('gen_hamradio_sota'); break; - case 'State': echo lang('gen_hamradio_state'); break; - case 'Grid': echo lang('gen_hamradio_gridsquare'); break; - case 'Distance': echo lang('gen_hamradio_distance'); break; - case 'Band': echo lang('gen_hamradio_band'); break; - case 'Frequency': echo lang('gen_hamradio_frequency'); break; - case 'Operator': echo lang('gen_hamradio_operator'); break; + case 'Mode': echo __("Mode"); break; + case 'RSTS': echo __("RST (S)"); break; + case 'RSTR': echo __("RST (R)"); break; + case 'Country': echo __("Country"); break; + case 'IOTA': echo __("IOTA"); break; + case 'SOTA': echo __("SOTA"); break; + case 'State': echo __("State"); break; + case 'Grid': echo __("Gridsquare"); break; + case 'Distance': echo __("Distance"); break; + case 'Band': echo __("Band"); break; + case 'Frequency': echo __("Frequency"); break; + case 'Operator': echo __("Operator"); break; } echo '
'.lang('gen_hamradio_callsign').'' . lang('general_word_date') . ''. lang('general_word_time') .'' . lang('gen_hamradio_mode') . '' . lang('gen_hamradio_band') . '' . lang('gen_hamradio_rsts') . '' . lang('gen_hamradio_rstr') . '' . lang('gen_hamradio_qsl') . ' ' . lang('general_word_qslcard_via') . '' . lang('gen_hamradio_station') . '' . lang('qslcard_qslprint_send_method') . '' . lang('qslcard_qslprint_mark_as_sent') . '' . lang('admin_remove') . '' . lang('qso_simplefle_qso_list') . ''.__("Callsign").'' . __("Date") . ''. __("Time") .'' . __("Mode") . '' . __("Band") . '' . __("RST (S)") . '' . __("RST (R)") . '' . __("QSL") . ' ' . __("Via") . '' . __("Station") . '' . __("Send Method") . '' . __("Mark as sent") . '' . __("Remove") . '' . __("QSO List") . '
'; ?> -

+

-

+

-

+

- + -

+

' . lang('qslcard_qslprint_no_qsls_found') . ''; + echo '
' . __("No QSLs to print were found!") . '
'; } ?> diff --git a/application/views/qslprint/qsolist.php b/application/views/qslprint/qsolist.php index 8198764a26..4a59defeed 100644 --- a/application/views/qslprint/qsolist.php +++ b/application/views/qslprint/qsolist.php @@ -3,22 +3,22 @@ echo ' - - - - - - - - - - - '; + + + + + + + + + + + '; if ($this->session->userdata('user_eqsl_name') != "") { - echo ''; + echo ''; } if($this->session->userdata('user_lotw_name') != "") { - echo ''; + echo ''; } echo ' @@ -55,16 +55,16 @@ } switch ($qsl->COL_QSL_SENT) { case "Y": - echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_sent').$timestamp; + echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".__("Sent").$timestamp; break; case "Q": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_queued').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Queued").$timestamp; break; case "R": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_requested').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Requested").$timestamp; break; case "I": - echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_invalid_ignore').$timestamp; + echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".__("Invalid (Ignore)").$timestamp; break; default: echo "class=\"qsl-red"; @@ -74,16 +74,16 @@ if ($qsl->COL_QSL_SENT_VIA != "") { switch ($qsl->COL_QSL_SENT_VIA) { case "B": - echo " (".lang('general_word_qslcard_bureau').")"; + echo " (".__("Bureau").")"; break; case "D": - echo " (".lang('general_word_qslcard_direct').")"; + echo " (".__("Direct").")"; break; case "M": - echo " (".lang('general_word_qslcard_via').": ".($qsl->COL_QSL_VIA!="" ? $qsl->COL_QSL_VIA:"n/a").")"; + echo " (".__("Via").": ".($qsl->COL_QSL_VIA!="" ? $qsl->COL_QSL_VIA:"n/a").")"; break; case "E": - echo " (".lang('general_word_qslcard_electronic').")"; + echo " (".__("Electronic").")"; break; } } @@ -97,16 +97,16 @@ } switch ($qsl->COL_QSL_RCVD) { case "Y": - echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_received').$timestamp; + echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".__("Received").$timestamp; break; case "Q": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_queued').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Queued").$timestamp; break; case "R": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_requested').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Requested").$timestamp; break; case "I": - echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_invalid_ignore').$timestamp; + echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".__("Invalid (Ignore)").$timestamp; break; default: echo "class=\"qsl-red"; @@ -116,16 +116,16 @@ if ($qsl->COL_QSL_RCVD_VIA != "") { switch ($qsl->COL_QSL_RCVD_VIA) { case "B": - echo " (".lang('general_word_qslcard_bureau').")"; + echo " (".__("Bureau").")"; break; case "D": - echo " (".lang('general_word_qslcard_direct').")"; + echo " (".__("Direct").")"; break; case "M": - echo " (".lang('general_word_qslcard_manager').")"; + echo " (".__("Manager").")"; break; case "E": - echo " (".lang('general_word_qslcard_electronic').")"; + echo " (".__("Electronic").")"; break; } } @@ -135,7 +135,7 @@ echo ''; } - echo ''; + echo ''; echo ''; } @@ -198,14 +198,14 @@ ' . lang('qslcard_qslprint_no_additional_qso_found') . ''; + echo '
' . __("No additional QSO's were found. That means they are probably already in the queue.") . '
'; } function echo_qsl_sent_via($method) { switch($method) { - case 'B': echo lang('general_word_qslcard_bureau'); break; - case 'D': echo lang('general_word_qslcard_direct'); break; - case 'E': echo lang('general_word_qslcard_electronic'); break; + case 'B': echo __("Bureau"); break; + case 'D': echo __("Direct"); break; + case 'E': echo __("Electronic"); break; } } ?> diff --git a/application/views/qso/components/previous_contacts.php b/application/views/qso/components/previous_contacts.php index 2838182699..fcdc764ab2 100644 --- a/application/views/qso/components/previous_contacts.php +++ b/application/views/qso/components/previous_contacts.php @@ -3,8 +3,8 @@
'.lang('gen_hamradio_callsign').'' . lang('general_word_date') . ''. lang('general_word_time') .'' . lang('gen_hamradio_mode') . '' . lang('gen_hamradio_band') . '' . lang('gen_hamradio_rsts') . '' . lang('gen_hamradio_rstr') . '' . lang('gen_hamradio_station') . '' . lang('gen_hamradio_qsl') . ' ' . lang('general_word_qslcard_via') . '' . lang('qslcard_qslprint_send_method') . '' . lang('gen_hamradio_qsl') . ''.__("Callsign").'' . __("Date") . ''. __("Time") .'' . __("Mode") . '' . __("Band") . '' . __("RST (S)") . '' . __("RST (R)") . '' . __("Station") . '' . __("QSL") . ' ' . __("Via") . '' . __("Send Method") . '' . __("QSL") . '' . lang('eqsl_short') . '' . __("eQSL") . '' . lang('lotw_short') . '' . __("LoTW") . '
'; echo 'COL_EQSL_QSL_SENT == "Y") { - echo "title=\"".lang('eqsl_short')." ".lang('general_word_sent'); + echo "title=\"".__("eQSL")." ".__("Sent"); if ($qsl->COL_EQSL_QSLSDATE != null) { $timestamp = strtotime($qsl->COL_EQSL_QSLSDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -148,7 +148,7 @@ echo 'COL_EQSL_QSL_RCVD == "Y") { - echo "title=\"".lang('eqsl_short')." ".lang('general_word_received'); + echo "title=\"".__("eQSL")." ".__("Received"); if ($qsl->COL_EQSL_QSLRDATE != null) { $timestamp = strtotime($qsl->COL_EQSL_QSLRDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -164,7 +164,7 @@ echo ''; echo 'COL_LOTW_QSL_SENT == "Y") { - echo "title=\"".lang('lotw_short')." ".lang('general_word_sent'); + echo "title=\"".__("LoTW")." ".__("Sent"); if ($qsl->COL_LOTW_QSLSDATE != null) { $timestamp = strtotime($qsl->COL_LOTW_QSLSDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -177,7 +177,7 @@ echo 'COL_LOTW_QSL_RCVD == "Y") { - echo "title=\"".lang('lotw_short')." ".lang('general_word_received'); + echo "title=\"".__("LoTW")." ".__("Received"); if ($qsl->COL_LOTW_QSLRDATE) { $timestamp = strtotime($qsl->COL_LOTW_QSLRDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -189,7 +189,7 @@ echo '">▼'; echo '
- - + + session->userdata('user_column1')==""?'Mode':$this->session->userdata('user_column1')); echo_table_header_col($this, $this->session->userdata('user_column2')==""?'RSTS':$this->session->userdata('user_column2')); @@ -56,7 +56,7 @@ function echo_table_col($row, $name) { case 'Mode': echo ''; break; case 'RSTS': echo ''; break; case 'RSTR': echo ''; break; - case 'Country': echo ''; break; + case 'Country': echo ''; break; case 'IOTA': echo ''; break; case 'SOTA': echo ''; break; case 'WWFF': echo ''; break; @@ -76,20 +76,20 @@ function echo_table_col($row, $name) { function echo_table_header_col($ctx, $name) { switch($name) { - case 'Mode': echo ''; break; - case 'RSTS': echo ''; break; - case 'RSTR': echo ''; break; - case 'Country': echo ''; break; - case 'IOTA': echo ''; break; - case 'SOTA': echo ''; break; - case 'WWFF': echo ''; break; - case 'POTA': echo ''; break; - case 'State': echo ''; break; - case 'Grid': echo ''; break; - case 'Distance': echo ''; break; - case 'Band': echo ''; break; - case 'Frequency': echo ''; break; - case 'Operator': echo ''; break; + case 'Mode': echo ''; break; + case 'RSTS': echo ''; break; + case 'RSTR': echo ''; break; + case 'Country': echo ''; break; + case 'IOTA': echo ''; break; + case 'SOTA': echo ''; break; + case 'WWFF': echo ''; break; + case 'POTA': echo ''; break; + case 'State': echo ''; break; + case 'Grid': echo ''; break; + case 'Distance': echo ''; break; + case 'Band': echo ''; break; + case 'Frequency': echo ''; break; + case 'Operator': echo ''; break; } } diff --git a/application/views/qso/edit_ajax.php b/application/views/qso/edit_ajax.php index 2155648310..ce8363a60d 100644 --- a/application/views/qso/edit_ajax.php +++ b/application/views/qso/edit_ajax.php @@ -180,33 +180,33 @@
- +
- +
@@ -226,7 +226,7 @@ } echo '>' . $d->prefix . ' - ' . ucwords(strtolower(($d->name))); if ($d->Enddate != null) { - echo ' ('.lang('gen_hamradio_deleted_dxcc').')'; + echo ' ('.__("Deleted DXCC").')'; } echo ''; } @@ -235,16 +235,16 @@
- +
@@ -473,11 +473,11 @@
- + diff --git a/application/views/qso/index.php b/application/views/qso/index.php index f28f6ed8a0..80804aa3aa 100755 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -1,10 +1,10 @@
@@ -17,35 +17,35 @@
- - - - + + + + - + '; diff --git a/application/views/search/lotw_unconfirmed_result.php b/application/views/search/lotw_unconfirmed_result.php index 9b5c468d9e..2445c09d83 100644 --- a/application/views/search/lotw_unconfirmed_result.php +++ b/application/views/search/lotw_unconfirmed_result.php @@ -3,12 +3,12 @@ echo '
// '; echo $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE . '' . $row->COL_RST_SENT; if ($row->COL_STX) { echo ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; printf("%03d", $row->COL_STX); echo '';} if ($row->COL_STX_STRING) { echo ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_STX_STRING . '';} echo '' . $row->COL_RST_RCVD; if ($row->COL_SRX) { echo ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; printf("%03d", $row->COL_SRX); echo '';} if ($row->COL_SRX_STRING) { echo ' COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_SRX_STRING . '';} echo '' . ucwords(strtolower(($row->COL_COUNTRY))); if ($row->end != NULL) echo ' '.$ci->lang->line('gen_hamradio_deleted_dxcc').'' . '' . ucwords(strtolower(($row->COL_COUNTRY))); if ($row->end != NULL) echo ' '.__("Deleted DXCC").'' . '' . ($row->COL_IOTA) . '' . ($row->COL_SOTA_REF) . '' . ($row->COL_WWFF_REF) . ''.$ctx->lang->line('gen_hamradio_mode').''.$ctx->lang->line('gen_hamradio_rsts').''.$ctx->lang->line('gen_hamradio_rstr').''.$ctx->lang->line('general_word_country').''.$ctx->lang->line('gen_hamradio_iota').''.$ctx->lang->line('gen_hamradio_sota').''.$ctx->lang->line('gen_hamradio_wwff').''.$ctx->lang->line('gen_hamradio_pota').''.$ctx->lang->line('gen_hamradio_state').''.$ctx->lang->line('gen_hamradio_gridsquare').''.$ctx->lang->line('gen_hamradio_distance').''.$ctx->lang->line('gen_hamradio_band').''.$ctx->lang->line('gen_hamradio_frequency').''.$ctx->lang->line('gen_hamradio_operator').''.__("Mode").''.__("RST (S)").''.__("RST (R)").''.__("Country").''.__("IOTA").''.__("SOTA").''.__("WWFF").''.__("POTA").''.__("State").''.__("Gridsquare").''.__("Distance").''.__("Band").''.__("Frequency").''.__("Operator").'
Date Time'.lang('gen_hamradio_callsign').'' . lang('gen_hamradio_mode') . '' . lang('gen_hamradio_band') . '' . lang('gen_hamradio_gridsquare') . ''.__("Callsign").'' . __("Mode") . '' . __("Band") . '' . __("Gridsquare") . ' CQ Zone DXCC CQ Zone DXCC' . lang('gen_hamradio_station') . '' . __("Station") . '
- + - - + + - + '; diff --git a/application/views/search/search_result_ajax.php b/application/views/search/search_result_ajax.php index ff976fdc11..35669ea84b 100644 --- a/application/views/search/search_result_ajax.php +++ b/application/views/search/search_result_ajax.php @@ -1,22 +1,22 @@ - + config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE || ($this->config->item('show_time'))) { ?> - + - + '; @@ -124,7 +124,7 @@ function echo_table_col($row, $name) { - + config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?> @@ -177,16 +177,16 @@ function echo_table_col($row, $name) { } switch ($row->COL_QSL_SENT) { case "Y": - echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_sent').$timestamp; + echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".__("Sent").$timestamp; break; case "Q": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_queued').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Queued").$timestamp; break; case "R": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_requested').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Requested").$timestamp; break; case "I": - echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_invalid_ignore').$timestamp; + echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".__("Invalid (Ignore)").$timestamp; break; default: echo "class=\"qsl-red"; @@ -196,16 +196,16 @@ function echo_table_col($row, $name) { if ($row->COL_QSL_SENT_VIA != "") { switch ($row->COL_QSL_SENT_VIA) { case "B": - echo " (".lang('general_word_qslcard_bureau').")"; + echo " (".__("Bureau").")"; break; case "D": - echo " (".lang('general_word_qslcard_direct').")"; + echo " (".__("Direct").")"; break; case "M": - echo " (".lang('general_word_qslcard_via').": ".($row->COL_QSL_VIA!="" ? $row->COL_QSL_VIA:"n/a").")"; + echo " (".__("Via").": ".($row->COL_QSL_VIA!="" ? $row->COL_QSL_VIA:"n/a").")"; break; case "E": - echo " (".lang('general_word_qslcard_electronic').")"; + echo " (".__("Electronic").")"; break; } } @@ -219,16 +219,16 @@ function echo_table_col($row, $name) { } switch ($row->COL_QSL_RCVD) { case "Y": - echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_received').$timestamp; + echo "class=\"qsl-green\" data-bs-toggle=\"tooltip\" title=\"".__("Received").$timestamp; break; case "Q": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_queued').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Queued").$timestamp; break; case "R": - echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_requested').$timestamp; + echo "class=\"qsl-yellow\" data-bs-toggle=\"tooltip\" title=\"".__("Requested").$timestamp; break; case "I": - echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".lang('general_word_invalid_ignore').$timestamp; + echo "class=\"qsl-grey\" data-bs-toggle=\"tooltip\" title=\"".__("Invalid (Ignore)").$timestamp; break; default: echo "class=\"qsl-red"; @@ -238,16 +238,16 @@ function echo_table_col($row, $name) { if ($row->COL_QSL_RCVD_VIA != "") { switch ($row->COL_QSL_RCVD_VIA) { case "B": - echo " (".lang('general_word_qslcard_bureau').")"; + echo " (".__("Bureau").")"; break; case "D": - echo " (".lang('general_word_qslcard_direct').")"; + echo " (".__("Direct").")"; break; case "M": echo " (Manager)"; break; case "E": - echo " (".lang('general_word_qslcard_electronic').")"; + echo " (".__("Electronic").")"; break; } } @@ -257,7 +257,7 @@ function echo_table_col($row, $name) { echo ' diff --git a/application/views/simplefle/index.php b/application/views/simplefle/index.php index df555657cc..a2ba09c64a 100644 --- a/application/views/simplefle/index.php +++ b/application/views/simplefle/index.php @@ -9,34 +9,34 @@

- +
session->flashdata('message')) { ?> @@ -60,19 +60,19 @@
- +
- + - +
-

+

@@ -80,7 +80,7 @@
- + Station Location"); ?>
- +
@@ -109,7 +109,7 @@
-

+

@@ -117,22 +117,22 @@
- +
'.lang('gen_hamradio_callsign').''.__("Callsign").' Date / time' . lang('gen_hamradio_mode') . '' . lang('gen_hamradio_band') . '' . __("Mode") . '' . __("Band") . ' Last LoTW upload' . lang('gen_hamradio_station') . '' . __("Station") . '
Clublog '; echo 'COL_EQSL_QSL_SENT == "Y") { - echo "title=\"".lang('eqsl_short')." ".lang('general_word_sent'); + echo "title=\"".__("eQSL")." ".__("Sent"); if ($row->COL_EQSL_QSLSDATE != null) { $timestamp = strtotime($row->COL_EQSL_QSLSDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -270,7 +270,7 @@ function echo_table_col($row, $name) { echo 'COL_EQSL_QSL_RCVD == "Y") { - echo "title=\"".lang('eqsl_short')." ".lang('general_word_received'); + echo "title=\"".__("eQSL")." ".__("Received"); if ($row->COL_EQSL_QSLRDATE != null) { $timestamp = strtotime($row->COL_EQSL_QSLRDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -295,7 +295,7 @@ function echo_table_col($row, $name) { echo ''; echo 'COL_LOTW_QSL_SENT == "Y") { - echo "title=\"".lang('lotw_short')." ".lang('general_word_sent'); + echo "title=\"".__("LoTW")." ".__("Sent"); if ($row->COL_LOTW_QSLSDATE != null) { $timestamp = strtotime($row->COL_LOTW_QSLSDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -308,7 +308,7 @@ function echo_table_col($row, $name) { echo 'COL_LOTW_QSL_RCVD == "Y") { - echo "title=\"".lang('lotw_short')." ".lang('general_word_received'); + echo "title=\"".__("LoTW")." ".__("Received"); if ($row->COL_LOTW_QSLRDATE != null) { $timestamp = strtotime($row->COL_LOTW_QSLRDATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -325,7 +325,7 @@ function echo_table_col($row, $name) { echo ''; echo 'COL_QRZCOM_QSO_UPLOAD_STATUS == "Y") { - echo "title=\"QRZ ".lang('general_word_sent'); + echo "title=\"QRZ ".__("Sent"); if ($row->COL_QRZCOM_QSO_UPLOAD_DATE != null) { $timestamp = strtotime($row->COL_QRZCOM_QSO_UPLOAD_DATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -338,7 +338,7 @@ function echo_table_col($row, $name) { echo 'COL_QRZCOM_QSO_DOWNLOAD_STATUS == "Y") { - echo "title=\"QRZ ".lang('general_word_received'); + echo "title=\"QRZ ".__("Received"); if ($row->COL_QRZCOM_QSO_DOWNLOAD_DATE != null) { $timestamp = strtotime($row->COL_QRZCOM_QSO_DOWNLOAD_DATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -355,7 +355,7 @@ function echo_table_col($row, $name) { echo ''; echo 'COL_CLUBLOG_QSO_UPLOAD_STATUS == "Y") { - echo "title=\"Clublog ".lang('general_word_sent'); + echo "title=\"Clublog ".__("Sent"); if ($row->COL_CLUBLOG_QSO_UPLOAD_DATE != null) { $timestamp = strtotime($row->COL_CLUBLOG_QSO_UPLOAD_DATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -368,7 +368,7 @@ function echo_table_col($row, $name) { echo 'COL_CLUBLOG_QSO_DOWNLOAD_STATUS == "Y") { - echo "title=\"Clublog ".lang('general_word_received'); + echo "title=\"Clublog ".__("Received"); if ($row->COL_CLUBLOG_QSO_DOWNLOAD_DATE != null) { $timestamp = strtotime($row->COL_CLUBLOG_QSO_DOWNLOAD_DATE); echo " ".($timestamp != '' ? date($custom_date_format, $timestamp) : ''); @@ -397,35 +397,35 @@ function echo_table_col($row, $name) {
- - - - - - - - - + + + + + + + + + @@ -144,18 +144,18 @@
- + SOTA, IOTA, POTA or WWFF"); ?>
- - - - - + + + + +
diff --git a/application/views/simplefle/syntax_help.php b/application/views/simplefle/syntax_help.php index d4c3cda487..7c798661bd 100644 --- a/application/views/simplefle/syntax_help.php +++ b/application/views/simplefle/syntax_help.php @@ -1,20 +1,20 @@ -

:

-

-

-

+

:

+

+

+

     20m ssb
     2134 2m0sql
 
-

-

+

+

     20m ssb
     2134 2m0sql
     6 la8aja 47 46
 
-

-

+

+

     20m ssb
     2134 2m0sql
@@ -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 58e531b10f..f515785344 100644 --- a/application/views/station_profile/create.php +++ b/application/views/station_profile/create.php @@ -29,41 +29,41 @@
- - - + + " required> +
- + - +
- + - +
- + num_rows() > 0) { ?> - +
- + - +
@@ -72,19 +72,19 @@ - +
- + - +
- + - ".lang("gen_find_zone_part2")." ".lang("gen_find_zone_part3"); ?> + ".__("click here")." "); ?>
- + - ".lang("gen_find_zone_part2")." ".lang("gen_find_zone_part3"); ?> + ".__("click here")." "); ?>
- +
- +
- - + ".__("click here").""); ?>
+
- + - - + + ".__("IOTA World website").""); ?>
- + - + ".__("SOTA Maps website").""); ?>
- + - + ".__("GMA Map website").""); ?>
- + - + ".__("POTA Map website").""); ?>
- + - +
- + - +
- + - +
- + - +
- + - +
- +
- + - +
- + - + ".__("HRDLog.net Userprofile page").""); ?>
- +
- +
- +
- + ".__("the QRZ.com Logbook settings page").""); ?>
- +
- + - + ".__("QO-100 Dx Club's profile page").""); ?>
- +
- +
- + - +
- + - +
- + diff --git a/application/views/station_profile/edit.php b/application/views/station_profile/edit.php index 7667a59cf4..421cdf98b2 100644 --- a/application/views/station_profile/edit.php +++ b/application/views/station_profile/edit.php @@ -19,13 +19,13 @@ station_id != NULL) { - $form_action = lang("admin_update"); + $form_action = __("Update"); ?> @@ -33,25 +33,25 @@
-
station_callsign; ?>)
+
station_callsign; ?>)
- + station_profile_name; } ?>" required> - +
- + station_callsign; } ?>" required> - +
- + station_power; } ?>"> - +
@@ -62,35 +62,35 @@
-
+
- + num_rows() > 0) { ?> - - + +
- + station_city; } ?>"> - +
@@ -102,14 +102,14 @@ - +
- + station_cnty; } ?>"> - +
@@ -119,11 +119,11 @@
-
+
- + - ".lang("gen_find_zone_part2")." ".lang("gen_find_zone_part3"); ?> + ".__("click here")." "); ?>
- + - ".lang("gen_find_zone_part2")." ".lang("gen_find_zone_part3"); ?> + ".__("click here")." "); ?>
@@ -164,20 +164,20 @@
-
+
- +
station_gridsquare; } ?>" required>
- +
- - + ".__("click here").""); ?>
+
@@ -185,10 +185,10 @@
-
+
- + - - + + ".__("IOTA World website").""); ?>
@@ -213,12 +213,12 @@
-
+
- + station_sota; } ?>"> - + ".__("SOTA Maps website").""); ?>
@@ -226,12 +226,12 @@
-
+
- + station_wwff; } ?>"> - + ".__("GMA Map website").""); ?>
@@ -239,12 +239,12 @@
-
+
- + station_pota; } ?>"> - + ".__("POTA Map website").""); ?>
@@ -254,18 +254,18 @@
-
+
- + station_sig; } ?>"> - +
- + station_sig_info; } ?>"> - +
@@ -275,18 +275,18 @@
-
+
- + eqslqthnickname; } ?>"> - +
- + - +
@@ -294,7 +294,7 @@
-
QRZ.com
+
QRZ.com
@@ -303,15 +303,15 @@
- + ".__("the QRZ.com Logbook settings page").""); ?>
- +
@@ -325,18 +325,18 @@
ClubLog
- + - +
- +
@@ -349,20 +349,20 @@
HRDLog.net
- + hrdlog_username; } ?>"> - +
- + hrdlog_code; } ?>"> - + ".__("HRDLog.net Userprofile page").""); ?>
- +
@@ -375,15 +375,15 @@
QO-100 Dx Club
- + webadifapikey; } ?>"> - + ".__("QO-100 Dx Club's profile page").""); ?>
- +
@@ -396,24 +396,24 @@
OQRS
- +
- + - +
- + oqrs_text; } ?>"> - +
@@ -421,7 +421,7 @@
- + diff --git a/application/views/station_profile/index.php b/application/views/station_profile/index.php index 6e6c09a30a..8ca9ecc7d5 100644 --- a/application/views/station_profile/index.php +++ b/application/views/station_profile/index.php @@ -12,25 +12,25 @@
-

-

-

+

+

+

-

+

num_rows() > 0) { ?> = 1) && ($is_admin)) { ?> @@ -38,21 +38,21 @@
**
- - - - + + + + - - + + user_options_model->get_options('header_menu', array('option_name'=>'locations_quickswitch'))->row()->option_value ?? 'false'); if ($quickswitch_enabled == 'true') { ?> - - + + @@ -62,24 +62,24 @@ station_profile_name;?>
- + + station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');"> diff --git a/application/views/stationsetup/create.php b/application/views/stationsetup/create.php index 2b208b4d6f..666d1b441d 100644 --- a/application/views/stationsetup/create.php +++ b/application/views/stationsetup/create.php @@ -14,9 +14,9 @@ load->helper('form'); ?>
- + - +
diff --git a/application/views/stationsetup/exportmapoptions.php b/application/views/stationsetup/exportmapoptions.php index 45e4414d25..6db0ec03be 100644 --- a/application/views/stationsetup/exportmapoptions.php +++ b/application/views/stationsetup/exportmapoptions.php @@ -3,7 +3,7 @@ - + diff --git a/application/views/stationsetup/linkedlocations.php b/application/views/stationsetup/linkedlocations.php index 4bf17d311a..9105bd4494 100644 --- a/application/views/stationsetup/linkedlocations.php +++ b/application/views/stationsetup/linkedlocations.php @@ -10,11 +10,11 @@ ?>
- + @@ -22,16 +22,16 @@ - +

Favorite
station_callsign;?>station_country == '' ? '- NONE -' : $row->station_country; if ($row->dxcc_end != NULL) { echo ' '.lang('gen_hamradio_deleted_dxcc').''; } ?>station_country == '' ? '- NONE -' : $row->station_country; if ($row->dxcc_end != NULL) { echo ' '.__("Deleted DXCC").''; } ?> station_gridsquare;?> station_active != 1) { ?> - station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm(' station_profile_name; ?>');"> + station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm(' station_profile_name; ?>');"> - +
ID: station_id;?> - qso_total;?> + qso_total;?>
- station_id; ?>" title= class="btn btn-outline-primary btn-sm"> + station_id; ?>" title= class="btn btn-outline-primary btn-sm"> - station_id; ?>" title= class="btn btn-outline-primary btn-sm"> + station_id; ?>" title= class="btn btn-outline-primary btn-sm"> - station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');"> station_active != 1) { ?> - station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm(' station_profile_name; ?> ');"> + station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm(' station_profile_name; ?> ');">
Options
- - - - + + + + @@ -42,7 +42,7 @@ - +
- +
-

- +

+ @@ -27,12 +27,12 @@
station_profile_name;?> station_callsign;?>station_country; if ($row->end != NULL) { echo ' '.lang('gen_hamradio_deleted_dxcc').''; } ?>station_country; if ($row->end != NULL) { echo ' '.__("Deleted DXCC").''; } ?>
- - + + - + - + @@ -41,9 +41,9 @@ @@ -62,7 +62,7 @@ class="fas fa-trash-alt">public_slug; ?>" class="btn btn-outline-primary btn-sm"> + title="logbook_name;?>"> @@ -70,10 +70,10 @@ class="btn btn-outline-primary btn-sm"> @@ -91,23 +91,23 @@ class="btn btn-outline-primary btn-sm">
-

-

-

+

+

+

-

+

= 1) && ($is_admin)) { ?> @@ -115,22 +115,22 @@ class="btn btn-outline-primary btn-sm">
- - - - - + + + + + - - + + user_options_model->get_options('header_menu', array('option_name'=>'locations_quickswitch'))->row()->option_value ?? 'false'); if ($quickswitch_enabled == 'true') { ?> - - + + @@ -143,24 +143,24 @@ class="btn btn-outline-primary btn-sm">station_profile_name;?>
- + + station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');"> diff --git a/application/views/stationsetup/visitor.php b/application/views/stationsetup/visitor.php index 77b04e5a0c..29ed313392 100644 --- a/application/views/stationsetup/visitor.php +++ b/application/views/stationsetup/visitor.php @@ -1,20 +1,20 @@ -

-


- /

+

+


+ /

- +
public_slug != "") { ?> diff --git a/application/views/statistics/index.php b/application/views/statistics/index.php index 05880c92df..860e649bbc 100644 --- a/application/views/statistics/index.php +++ b/application/views/statistics/index.php @@ -11,21 +11,21 @@

- +


@@ -47,19 +47,19 @@
@@ -93,10 +93,10 @@ Satellites
diff --git a/application/views/statistics/qsotable.php b/application/views/statistics/qsotable.php index 7f963fb3c4..01d37d24ad 100644 --- a/application/views/statistics/qsotable.php +++ b/application/views/statistics/qsotable.php @@ -7,7 +7,7 @@ foreach($bands as $band) { echo '
'; } - echo ''; + echo ''; echo ''; @@ -20,7 +20,7 @@ echo ''; echo ''; } - echo ''; + echo ''; $grandtotal = 0; foreach ($bandtotal as $band => $value) { diff --git a/application/views/statistics/satqsotable.php b/application/views/statistics/satqsotable.php index a1efade3ce..b5d44670f8 100644 --- a/application/views/statistics/satqsotable.php +++ b/application/views/statistics/satqsotable.php @@ -7,7 +7,7 @@ foreach($modes as $mode) { echo ''; } - echo ''; + echo ''; echo ''; @@ -19,7 +19,7 @@ echo ''; echo ''; } - echo ''; + echo ''; $grandtotal=0; foreach($modes as $mode) { echo ''; diff --git a/application/views/statistics/satuniquetable.php b/application/views/statistics/satuniquetable.php index 855a477a0f..711b9fe81b 100644 --- a/application/views/statistics/satuniquetable.php +++ b/application/views/statistics/satuniquetable.php @@ -7,7 +7,7 @@ foreach($modes as $mode) { echo ''; } - echo ''; + echo ''; echo ''; @@ -19,7 +19,7 @@ echo ''; echo ''; } - echo ''; + echo ''; foreach($modes as $mode) { echo ''; } diff --git a/application/views/statistics/uniquetable.php b/application/views/statistics/uniquetable.php index 0a25b170dc..af7f15c0f4 100644 --- a/application/views/statistics/uniquetable.php +++ b/application/views/statistics/uniquetable.php @@ -7,7 +7,7 @@ foreach($bands as $band) { echo ''; } - echo ''; + echo ''; echo ''; @@ -20,7 +20,7 @@ echo ''; echo ''; } - echo ''; + echo ''; foreach($bands as $band) { echo ''; diff --git a/application/views/timeline/details.php b/application/views/timeline/details.php index 52b59c9298..a9a0062d04 100644 --- a/application/views/timeline/details.php +++ b/application/views/timeline/details.php @@ -1,4 +1,4 @@
-
+
load->view('view_log/partial/log_ajax') ?> diff --git a/application/views/timeline/index.php b/application/views/timeline/index.php index 8bb2ce5d49..0995c3f416 100644 --- a/application/views/timeline/index.php +++ b/application/views/timeline/index.php @@ -1,13 +1,13 @@
-

+

- +
- +
@@ -48,19 +48,19 @@
-
+
input->post('qsl')) echo ' checked="checked"'; ?> > - +
input->post('lotw')) echo ' checked="checked"'; ?> > - +
input->post('eqsl')) echo ' checked="checked"'; ?> > - +
@@ -68,7 +68,7 @@
- +
@@ -106,18 +106,17 @@
- - - - - - + + + + + + '; @@ -130,25 +129,24 @@ function write_dxcc_timeline($timeline_array, $custom_date_format, $bandselect, - + '; } echo '
Linked locations Visitor site
logbook_name;?> session->userdata('active_station_logbook') != $row->logbook_id) { ?> - + " . lang('station_logbooks_active_logbook') . ""; + echo "" . __("Active Logbook") . ""; }?> @@ -52,7 +52,7 @@ session->userdata('active_station_logbook') != $row->logbook_id) { ?> public_search == 1) { - echo "" . lang('general_word_enabled') . "";?> + echo "" . __("Enabled") . "";?>
" . lang('general_word_disabled') . ""; ?> + echo "" . __("Disabled") . ""; ?>
Favorite
station_callsign;?>station_country == '' ? '- NONE -' : $row->station_country; if ($row->dxcc_end != NULL) { echo ' '.lang('gen_hamradio_deleted_dxcc').''; } ?>station_country == '' ? '- NONE -' : $row->station_country; if ($row->dxcc_end != NULL) { echo ' '.__("Deleted DXCC").''; } ?> station_gridsquare;?> station_active != 1) { ?> - station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm(' station_profile_name; ?>');"> + station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm(' station_profile_name; ?>');"> - +
ID: station_id;?> - qso_total;?> + qso_total;?>
- station_id; ?>" title= class="btn btn-outline-primary btn-sm"> + station_id; ?>" title= class="btn btn-outline-primary btn-sm"> - station_id; ?>" title= class="btn btn-outline-primary btn-sm"> + station_id; ?>" title= class="btn btn-outline-primary btn-sm"> - station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');"> station_active != 1) { ?> - station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm(' station_profile_name; ?> ');"> + station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm(' station_profile_name; ?> ');">
' . $band . ''.lang('statistics_total').''.__("Total").'
' . $modetotal[$mode] . '
'.lang('statistics_total').'
'.__("Total").'' . $mode . ''.lang('statistics_total').''.__("Total").'
' . $sattotal[$sat] . '
'.lang('statistics_total').'
'.__("Total").'' . $modetotal[$mode] . '' . $mode . ''.lang('statistics_total').''.__("Total").'
' . $satunique[$sat] . '
'.lang('statistics_total').'
'.__("Total").'' . $modeunique[$mode] . '' . $band . ''.lang('statistics_total').''.__("Total").'
' . $modeunique[$mode] . '
'.lang('statistics_total').'
'.__("Total").'' . $bandunique[$band] . '
#'.$ci->lang->line('general_word_date').''.$ci->lang->line('gen_hamradio_prefix').''.$ci->lang->line('general_word_country').''.$ci->lang->line('station_logbooks_status').''.$ci->lang->line('general_word_enddate').''.$ci->lang->line('gridsquares_show_qsos').''.__("Date").''.__("Prefix").''.__("Country").''.__("Status").''.__("End Date").''.__("Show QSO's").'
' . $line->prefix . ' ' . $line->col_country . ' '; - if (!empty($line->end)) echo ''.$ci->lang->line('gen_hamradio_deleted_dxcc').''; + if (!empty($line->end)) echo ''.__("Deleted DXCC").''; echo ' ' . $line->end . 'adif . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').'adif . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.__("Show").'
'; } function write_was_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { - $ci =& get_instance(); $i = count($timeline_array); echo ' - - - + + + '; @@ -159,24 +157,23 @@ function write_was_timeline($timeline_array, $custom_date_format, $bandselect, $ - + '; } echo '
#'.$ci->lang->line('general_word_date').''.$ci->lang->line('gen_hamradio_state').''.$ci->lang->line('gridsquares_show_qsos').''.__("Date").''.__("State").''.__("Show QSO's").'
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_state . 'col_state . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').'col_state . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.__("Show").'
'; } function write_iota_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { - $ci =& get_instance(); $i = count($timeline_array); echo ' - - - - - + + + + + '; @@ -189,22 +186,21 @@ function write_iota_timeline($timeline_array, $custom_date_format, $bandselect, - + '; } echo '
#'.$ci->lang->line('general_word_date').''.$ci->lang->line('gen_hamradio_iota').''.$ci->lang->line('general_word_name').''.$ci->lang->line('gen_hamradio_prefix').''.$ci->lang->line('gridsquares_show_qsos').''.__("Date").''.__("IOTA").''.__("Name").''.__("Prefix").''.__("Show QSO's").'
' . $line->col_iota . ' ' . $line->name . ' ' . $line->prefix . 'col_iota . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').'col_iota . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.__("Show").'
'; } function write_waz_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { - $ci =& get_instance(); $i = count($timeline_array); echo ' - - - + + + '; @@ -215,23 +211,22 @@ function write_waz_timeline($timeline_array, $custom_date_format, $bandselect, $ - + '; } echo '
#'.$ci->lang->line('general_word_date').''.$ci->lang->line('gen_hamradio_cq_zone').''.$ci->lang->line('gridsquares_show_qsos').''.__("Date").''.__("CQ Zone").''.__("Show QSO's").'
' . $i-- . ' ' . date($custom_date_format, $date_as_timestamp) . ' ' . $line->col_cqz . 'col_cqz . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.$ci->lang->line('filter_options_show').'col_cqz . '","'. $bandselect . '","'. $modeselect . '","' . $award .'")>'.__("Show").'
'; } function write_vucc_timeline($timeline_array, $custom_date_format, $bandselect, $modeselect, $award) { - $ci =& get_instance(); $i = count($timeline_array); echo ' - - - - + + + + '; @@ -243,7 +238,7 @@ function write_vucc_timeline($timeline_array, $custom_date_format, $bandselect, - + '; } echo '
#'.$ci->lang->line('general_word_date').''.$ci->lang->line('general_word_time').''.$ci->lang->line('gen_hamradio_gridsquare').''.$ci->lang->line('gridsquares_show_qsos').''.__("Date").''.__("Time").''.__("Gridsquare").''.__("Show QSO's").'
' . date($custom_date_format, $date_as_timestamp) . ' ' . date('H:i', $date_as_timestamp) . ' ' . $line['gridsquare'] . ''.$ci->lang->line('filter_options_show').''.__("Show").'
'; diff --git a/application/views/timeplotter/index.php b/application/views/timeplotter/index.php index e613f1e81d..03c015b22f 100644 --- a/application/views/timeplotter/index.php +++ b/application/views/timeplotter/index.php @@ -1,36 +1,36 @@
-

-

+

+

- +
- +
- + '. $i .''; @@ -56,7 +56,7 @@
- +
diff --git a/application/views/user/delete.php b/application/views/user/delete.php index 91587efede..a73d5072c4 100644 --- a/application/views/user/delete.php +++ b/application/views/user/delete.php @@ -2,16 +2,16 @@
- +
-

?

+

?

uri->segment(3); ?>" name="users"> - + " />
diff --git a/application/views/user/edit.php b/application/views/user/edit.php index 8a3ddab460..f2281f4b56 100644 --- a/application/views/user/edit.php +++ b/application/views/user/edit.php @@ -1,9 +1,9 @@

".$user_name.""; + echo __("Edit Account")." ".$user_name.""; } ?> @@ -38,7 +38,7 @@

+

@@ -46,22 +46,22 @@
-
+
- + ".$username_error.""; } ?>
- + ".$email_error.""; } ?>
- +
@@ -74,7 +74,7 @@
- + session->userdata('user_type') == 99) { ?> ".$firstname_error.""; } else { ?>
- + ".$lastname_error.""; } else { ?> @@ -117,17 +117,17 @@
-
+
- + ".$callsign_error.""; } else { ?>
- + ".$locator_error.""; } else { ?> @@ -143,7 +143,7 @@

+

@@ -151,10 +151,10 @@
-
+
- + @@ -197,11 +197,11 @@ - +
- + - +
@@ -218,117 +218,117 @@
-
+
- +
- +
- +
- +
- +
@@ -338,68 +338,68 @@
-
+
- + - +

- + - +

- + - +
- + - +
- + - +
- + - +
@@ -410,37 +410,37 @@
-
+
- +

- + - +
- + - +
session->userdata('user_id') == $this->uri->segment(3)) { ?>
@@ -471,30 +471,30 @@ session->userdata('user_id') == $this->uri->segment(3)) { ?>
-
lang->line('account_map_params'); ?>
+
-
+
-
+
-
lang->line('general_word_not_display'),0,10).'.':("")); ?>
+
")); ?>
".(($val=="0")?$this->lang->line('general_word_not_display'):("")).""; + echo ""; } ?>
-
" data-icon="station" />
+
" data-icon="station" />
- +
@@ -513,17 +513,17 @@
- - + +
-
lang->line('general_word_no'):("")); ?>
+
")); ?>
".(($val=="0")?$this->lang->line('general_word_no'):("")).""; + echo ""; } ?>
@@ -533,12 +533,12 @@
- +
@@ -552,16 +552,16 @@
-
+
- + @@ -573,34 +573,34 @@
-
+
- +
> - +
> - +
> - +
> - +
> - +
> - +
@@ -616,7 +616,7 @@

+

@@ -624,10 +624,10 @@
- +
- +
- +
'; ?> - +
'; ?> - +
'; ?> - +

+

@@ -702,16 +702,16 @@
-
+
- + ".$userlotwname_error.""; } ?>
- +
@@ -728,16 +728,16 @@
-
+
- + ".$eqslusername_error.""; } ?>
- +
@@ -754,17 +754,17 @@
-
+
- + - + ".$userclublogname_error.""; } ?>
- +
@@ -785,7 +785,7 @@

+

@@ -793,14 +793,14 @@
-
+
@@ -810,12 +810,12 @@
-
+
- + - + https://radiosocial.de"); ?>
@@ -824,16 +824,16 @@
-
+
- + - + https://github.com/wavelog/wavelog/wiki/Winkey"); ?>
@@ -844,21 +844,21 @@
-
+
- + - + https://hams.at/users/settings"); ?>
- + - +
@@ -870,6 +870,6 @@
- +
diff --git a/application/views/user/forgot_password.php b/application/views/user/forgot_password.php index be92c5529f..07d0fb06f6 100644 --- a/application/views/user/forgot_password.php +++ b/application/views/user/forgot_password.php @@ -30,8 +30,8 @@
-

-

+

+

@@ -44,11 +44,11 @@
- + " class="form-control" type="email" autofocus>
- + " type="submit">
diff --git a/application/views/user/login.php b/application/views/user/login.php index f939ef97a5..7ad5febb45 100644 --- a/application/views/user/login.php +++ b/application/views/user/login.php @@ -42,21 +42,21 @@ form_validation->set_error_delimiters('', ''); ?>
- - + " value="input->post('user_name'); ?>" autofocus>
- + + placeholder="">
-

+

load->view('layout/messages'); ?> - +
diff --git a/application/views/user/main.php b/application/views/user/main.php index d098e60dc2..4706ac8000 100644 --- a/application/views/user/main.php +++ b/application/views/user/main.php @@ -1,12 +1,12 @@
@@ -27,31 +27,31 @@
- +
-

-

-

-

+

+

+

+

- - + +

- - - - - + + + + + - - - + + + @@ -76,17 +76,17 @@ echo " " . $row->last_seen . ""; } } else { - echo lang('general_word_never'); + echo __("Never"); }?>
- : stationcount; ?> + : stationcount; ?>
- : logbookcount; ?> + : logbookcount; ?> qsocount > 0) { ?> - qsocount; ?> +
lastqso; ?>">qsocount; ?>
- qsocount; ?> + ">qsocount; ?>
user_id; ?>" class="btn btn-outline-primary btn-sm"> diff --git a/application/views/user/reset_password.php b/application/views/user/reset_password.php index e83184c293..f86fa1f6a9 100644 --- a/application/views/user/reset_password.php +++ b/application/views/user/reset_password.php @@ -5,8 +5,8 @@

-

?

-

+

?

+

@@ -18,21 +18,21 @@
- +
- + ">
- +
- + ">
- + " type="submit">
diff --git a/application/views/version_dialog/index.php b/application/views/version_dialog/index.php index 4ac806cefe..fb9914254f 100644 --- a/application/views/version_dialog/index.php +++ b/application/views/version_dialog/index.php @@ -72,11 +72,11 @@ - + - +
diff --git a/application/views/view_log/index.php b/application/views/view_log/index.php index 965df3f6ab..a73f224f6e 100644 --- a/application/views/view_log/index.php +++ b/application/views/view_log/index.php @@ -1,14 +1,14 @@
-

+

session->flashdata('notice')) { ?>