mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
@@ -82,41 +82,6 @@ $autoload['helper'] = array('url', 'security', 'language');
|
||||
|
||||
$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
|
||||
|
||||
@@ -143,7 +143,7 @@ $config['url_suffix'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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 @@ $config['url_suffix'] = '';
|
||||
| than english.
|
||||
|
|
||||
*/
|
||||
$lang = 'english'; // this language will be used per default
|
||||
// $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;
|
||||
}
|
||||
// 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;
|
||||
// $config['cl_multilanguage']=true;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -52,6 +52,9 @@ $config['gettext_domain'] = NULL;
|
||||
| -------------------------------------------------------------------
|
||||
| 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(
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ class Accumulated extends CI_Controller
|
||||
public function index()
|
||||
{
|
||||
// Render Page
|
||||
$data['page_title'] = $this->lang->line('menu_accumulated_statistics');
|
||||
$data['page_title'] = __("Accumulated Statistics");
|
||||
|
||||
$this->load->model('bands');
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ class Activated_gridmap extends CI_Controller {
|
||||
}
|
||||
|
||||
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 @@ class Activated_gridmap extends CI_Controller {
|
||||
|
||||
$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'] = [
|
||||
|
||||
@@ -892,10 +892,10 @@ class Awards extends CI_Controller {
|
||||
|
||||
$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 @@ class Awards extends CI_Controller {
|
||||
|
||||
$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();
|
||||
|
||||
|
||||
@@ -96,7 +96,7 @@ class Contesting extends CI_Controller {
|
||||
$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 @@ class Contesting extends CI_Controller {
|
||||
|
||||
$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');
|
||||
|
||||
@@ -15,7 +15,7 @@ class Dayswithqso extends CI_Controller {
|
||||
{
|
||||
$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();
|
||||
|
||||
@@ -29,6 +29,7 @@ class Debug extends CI_Controller
|
||||
$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']) {
|
||||
|
||||
@@ -79,7 +79,7 @@ class Distances extends CI_Controller {
|
||||
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ class Gridmap extends CI_Controller {
|
||||
}
|
||||
|
||||
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 @@ class Gridmap extends CI_Controller {
|
||||
|
||||
$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'] = [
|
||||
|
||||
@@ -34,7 +34,7 @@ class Logbook extends CI_Controller {
|
||||
$data['user_map_custom'] = $this->optionslib->get_map_custom();
|
||||
|
||||
if(!$data['results']) {
|
||||
$this->session->set_flashdata('notice', lang('error_no_logbook_found') . ' <a href="' . site_url('logbooks') . '" title="Station Logbooks">Station Logbooks</a>');
|
||||
$this->session->set_flashdata('notice', __("No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:") . ' <a href="' . site_url('logbooks') . '" title="Station Logbooks">' . __('Station Logbooks') . '</a>');
|
||||
}
|
||||
|
||||
// Calculate Lat/Lng from Locator to use on Maps
|
||||
@@ -664,13 +664,13 @@ class Logbook extends CI_Controller {
|
||||
$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 .= "<th>".lang('gen_hamradio_qsl')."</th>";
|
||||
$html .= "<th>".__("QSL")."</th>";
|
||||
break;
|
||||
case 1:
|
||||
$html .= "<th>".lang('lotw_short')."</th>";
|
||||
$html .= "<th>".__("LoTW")."</th>";
|
||||
break;
|
||||
case 2:
|
||||
$html .= "<th>".lang('eqsl_short')."</th>";
|
||||
$html .= "<th>".__("eQSL")."</th>";
|
||||
break;
|
||||
case 4:
|
||||
$html .= "<th>QRZ</th>";
|
||||
@@ -679,7 +679,7 @@ class Logbook extends CI_Controller {
|
||||
$html .= "<th>Clublog</th>";
|
||||
break;
|
||||
default:
|
||||
$html .= "<th>".lang('gen_hamradio_qsl')."</th>";
|
||||
$html .= "<th>".__("QSL")."</th>";
|
||||
break;
|
||||
}
|
||||
$html .= "<th></th>";
|
||||
@@ -1272,20 +1272,20 @@ class Logbook extends CI_Controller {
|
||||
function part_table_header_col($ctx, $name) {
|
||||
$ret='';
|
||||
switch($name) {
|
||||
case 'Mode': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_mode').'</th>'; break;
|
||||
case 'RSTS': $ret.= '<th class="d-none d-sm-table-cell">'.$ctx->lang->line('gen_hamradio_rsts').'</th>'; break;
|
||||
case 'RSTR': $ret.= '<th class="d-none d-sm-table-cell">'.$ctx->lang->line('gen_hamradio_rstr').'</th>'; break;
|
||||
case 'Country': $ret.= '<th>'.$ctx->lang->line('general_word_country').'</th>'; break;
|
||||
case 'IOTA': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_iota').'</th>'; break;
|
||||
case 'SOTA': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_sota').'</th>'; break;
|
||||
case 'WWFF': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_wwff').'</th>'; break;
|
||||
case 'POTA': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_pota').'</th>'; break;
|
||||
case 'State': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_state').'</th>'; break;
|
||||
case 'Grid': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_gridsquare').'</th>'; break;
|
||||
case 'Distance': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_distance').'</th>'; break;
|
||||
case 'Band': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_band').'</th>'; break;
|
||||
case 'Frequency': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_frequency').'</th>'; break;
|
||||
case 'Operator': $ret.= '<th>'.$ctx->lang->line('gen_hamradio_operator').'</th>'; break;
|
||||
case 'Mode': $ret.= '<th>'.__("Mode").'</th>'; break;
|
||||
case 'RSTS': $ret.= '<th class="d-none d-sm-table-cell">'.__("RST (S)").'</th>'; break;
|
||||
case 'RSTR': $ret.= '<th class="d-none d-sm-table-cell">'.__("RST (R)").'</th>'; break;
|
||||
case 'Country': $ret.= '<th>'.__("Country").'</th>'; break;
|
||||
case 'IOTA': $ret.= '<th>'.__("IOTA").'</th>'; break;
|
||||
case 'SOTA': $ret.= '<th>'.__("SOTA").'</th>'; break;
|
||||
case 'WWFF': $ret.= '<th>'.__("WWFF").'</th>'; break;
|
||||
case 'POTA': $ret.= '<th>'.__("POTA").'</th>'; break;
|
||||
case 'State': $ret.= '<th>'.__("State").'</th>'; break;
|
||||
case 'Grid': $ret.= '<th>'.__("Gridsquare").'</th>'; break;
|
||||
case 'Distance': $ret.= '<th>'.__("Distance").'</th>'; break;
|
||||
case 'Band': $ret.= '<th>'.__("Band").'</th>'; break;
|
||||
case 'Frequency': $ret.= '<th>'.__("Frequency").'</th>'; break;
|
||||
case 'Operator': $ret.= '<th>'.__("Operator").'</th>'; break;
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
@@ -1307,7 +1307,7 @@ class Logbook extends CI_Controller {
|
||||
case 'Mode': $ret.= '<td>'; $ret.= $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE . '</td>'; break;
|
||||
case 'RSTS': $ret.= '<td class="d-none d-sm-table-cell">' . $row->COL_RST_SENT; if ($row->COL_STX) { $ret.= ' <span data-bs-toggle="tooltip" title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; $ret.=sprintf("%03d", $row->COL_STX); $ret.= '</span>';} if ($row->COL_STX_STRING) { $ret.= ' <span data-bs-toggle="tooltip" title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_STX_STRING . '</span>';} $ret.= '</td>'; break;
|
||||
case 'RSTR': $ret.= '<td class="d-none d-sm-table-cell">' . $row->COL_RST_RCVD; if ($row->COL_SRX) { $ret.= ' <span data-bs-toggle="tooltip" title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">'; $ret.=sprintf("%03d", $row->COL_SRX); $ret.= '</span>';} if ($row->COL_SRX_STRING) { $ret.= ' <span data-bs-toggle="tooltip" title="'.($row->COL_CONTEST_ID!=""?$row->COL_CONTEST_ID:"n/a").'" class="badge text-bg-light">' . $row->COL_SRX_STRING . '</span>';} $ret.= '</td>'; break;
|
||||
case 'Country': $ret.= '<td>' . ucwords(strtolower(($row->COL_COUNTRY ?? ''))); if ($row->end ?? '' != '') $ret.= ' <span class="badge text-bg-danger">'.$ci->lang->line('gen_hamradio_deleted_dxcc').'</span>' . '</td>'; break;
|
||||
case 'Country': $ret.= '<td>' . ucwords(strtolower(($row->COL_COUNTRY ?? ''))); if ($row->end ?? '' != '') $ret.= ' <span class="badge text-bg-danger">'.__("Deleted DXCC").'</span>' . '</td>'; break;
|
||||
case 'IOTA': $ret.= '<td>' . ($row->COL_IOTA) . '</td>'; break;
|
||||
case 'SOTA': $ret.= '<td>' . ($row->COL_SOTA_REF) . '</td>'; break;
|
||||
case 'WWFF': $ret.= '<td>' . ($row->COL_WWFF_REF) . '</td>'; break;
|
||||
|
||||
@@ -28,7 +28,7 @@ class Options extends CI_Controller {
|
||||
|
||||
//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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
} 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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
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 @@ class Options extends CI_Controller {
|
||||
|
||||
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 @@ class Options extends CI_Controller {
|
||||
$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 @@ class Options extends CI_Controller {
|
||||
$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 @@ class Options extends CI_Controller {
|
||||
// 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 @@ class Options extends CI_Controller {
|
||||
|
||||
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 @@ class Options extends CI_Controller {
|
||||
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 @@ class Options extends CI_Controller {
|
||||
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');
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ class QSLPrint extends CI_Controller {
|
||||
'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');
|
||||
|
||||
@@ -38,10 +38,10 @@ class Sattimers extends CI_Controller {
|
||||
|
||||
$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!"), '<a href="' . site_url('stationsetup') . '">' . __("here") . '</a>'));
|
||||
}
|
||||
|
||||
$data['page_title'] = "Satellite Timers";
|
||||
$data['page_title'] = __("Satellite Timers");
|
||||
|
||||
$CI =& get_instance();
|
||||
if($CI->session->userdata('user_date_format')) {
|
||||
|
||||
@@ -32,7 +32,7 @@ class Station extends CI_Controller
|
||||
$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 @@ class Station extends CI_Controller
|
||||
$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 @@ class Station extends CI_Controller
|
||||
$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 @@ class Station extends CI_Controller
|
||||
$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');
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ class Stationsetup extends CI_Controller {
|
||||
];
|
||||
|
||||
// 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 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success']=1;
|
||||
} else {
|
||||
$data['success']=0;
|
||||
$data['flashdata']='Not allowed';
|
||||
$data['flashdata'] = __('Not allowed');
|
||||
}
|
||||
} else {
|
||||
$data['success']=0;
|
||||
@@ -65,11 +65,11 @@ class Stationsetup extends CI_Controller {
|
||||
$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 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success']=1;
|
||||
} else {
|
||||
$data['success']=0;
|
||||
$data['flashdata']='Error';
|
||||
$data['flashdata'] = __('Error');
|
||||
}
|
||||
echo json_encode($data);
|
||||
}
|
||||
@@ -102,7 +102,7 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success'] = 1;
|
||||
} else {
|
||||
$data['success'] = 0;
|
||||
$data['flashdata'] ='Error';
|
||||
$data['flashdata'] = __('Error');
|
||||
}
|
||||
echo json_encode($data);
|
||||
}
|
||||
@@ -115,7 +115,7 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success']=1;
|
||||
} else {
|
||||
$data['success']=0;
|
||||
$data['flashdata']='Error';
|
||||
$data['flashdata'] = __('Error');
|
||||
}
|
||||
echo json_encode($data);
|
||||
}
|
||||
@@ -128,7 +128,7 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success']=1;
|
||||
} else {
|
||||
$data['success']=0;
|
||||
$data['flashdata']='Error';
|
||||
$data['flashdata'] = __('Error');
|
||||
}
|
||||
echo json_encode($data);
|
||||
}
|
||||
@@ -149,7 +149,7 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success']=1;
|
||||
} else {
|
||||
$data['success']=0;
|
||||
$data['flashdata']='Error';
|
||||
$data['flashdata'] = __('Error');
|
||||
}
|
||||
echo json_encode($data);
|
||||
}
|
||||
@@ -187,7 +187,7 @@ class Stationsetup extends CI_Controller {
|
||||
$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 @@ class Stationsetup extends CI_Controller {
|
||||
$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 @@ class Stationsetup extends CI_Controller {
|
||||
$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 @@ class Stationsetup extends CI_Controller {
|
||||
}
|
||||
|
||||
private function lbpublicsearch2html($publicsearch, $id) {
|
||||
$htmret = ($publicsearch=='1' ? '<span class="badge text-bg-success">Enabled</span>' : '<span class="badge bg-dark">Disabled</span>');
|
||||
$htmret = ($publicsearch=='1' ? '<span class="badge text-bg-success">Enabled</span>' : '<span class="badge bg-dark">' . __('Disabled') . '</span>');
|
||||
$htmret .= '<div class="form-check" style="margin-top: -1.5em"><input id="'.$id.'" class="form-check-input publicSearchCheckbox" type="checkbox"'. ($publicsearch=='1' ? 'checked' : '') . '/></div>';
|
||||
return $htmret;
|
||||
|
||||
@@ -258,16 +258,16 @@ class Stationsetup extends CI_Controller {
|
||||
|
||||
private function lbstate2html($id) {
|
||||
if($this->session->userdata('active_station_logbook') != $id) {
|
||||
$htmret='<button id="'.$id.'" class="setActiveLogbook btn btn-outline-primary btn-sm">'.lang('station_logbooks_set_active').'</button>';
|
||||
$htmret='<button id="'.$id.'" class="setActiveLogbook btn btn-outline-primary btn-sm">'.__("Set as Active Logbook").'</button>';
|
||||
} else {
|
||||
$htmret="<span class='badge text-bg-success'>" . lang('station_logbooks_active_logbook') . "</span>";
|
||||
$htmret="<span class='badge text-bg-success'>" . __("Active Logbook") . "</span>";
|
||||
}
|
||||
return $htmret;
|
||||
}
|
||||
|
||||
private function lbdel2html($id, $logbook_name) {
|
||||
if($this->session->userdata('active_station_logbook') != $id) {
|
||||
$htmret='<button id="'.$id.'" class="deleteLogbook btn btn-outline-danger btn-sm" cnftext="'.lang('station_logbooks_confirm_delete').$logbook_name.'"><i class="fas fa-trash-alt"></i></button>';
|
||||
$htmret='<button id="'.$id.'" class="deleteLogbook btn btn-outline-danger btn-sm" cnftext="'.__("Are you sure you want to delete the following station logbook? You must re-link any locations linked here to another logbook.: ").$logbook_name.'"><i class="fas fa-trash-alt"></i></button>';
|
||||
} else {
|
||||
$htmret='';
|
||||
}
|
||||
@@ -277,8 +277,8 @@ class Stationsetup extends CI_Controller {
|
||||
private function lblnk2html($public_slug, $logbook_name, $id) {
|
||||
$htmret = '<button class="btn btn-outline-primary btn-sm editVisitorLink" id="' . $id . '"><i class="fas fa-edit"></i></button> ';
|
||||
if($public_slug != '') {
|
||||
$htmret .= '<a target="_blank" href="'.site_url('visitor')."/".$public_slug.'" class="btn btn-outline-primary btn-sm"><i class="fas fa-globe" title="'.lang('station_logbooks_view_public') . $logbook_name.'"></i></a>';
|
||||
$htmret .= ' <button id="' . $id . '" class="deletePublicSlug btn btn-outline-danger btn-sm" cnftext="Are you sure you want to delete the public slug?"><i class="fas fa-trash-alt"></i></button>';
|
||||
$htmret .= '<a target="_blank" href="'.site_url('visitor')."/".$public_slug.'" class="btn btn-outline-primary btn-sm"><i class="fas fa-globe" title="'.__("View Public Page for Logbook: ") . $logbook_name.'"></i></a>';
|
||||
$htmret .= ' <button id="' . $id . '" class="deletePublicSlug btn btn-outline-danger btn-sm" cnftext="' . __('Are you sure you want to delete the public slug?') . '"><i class="fas fa-trash-alt"></i></button>';
|
||||
$htmret .= ' <button id="' . $id . '" class="editExportmapOptions btn btn-outline-primary btn-sm"><i class="fas fa-globe-europe"></i></button>';
|
||||
}
|
||||
return $htmret;
|
||||
@@ -338,39 +338,39 @@ class Stationsetup extends CI_Controller {
|
||||
private function stationbadge2html($station_active, $qso_total, $current_active, $station_profile_name, $id) {
|
||||
$returntext = '';
|
||||
if($station_active != 1) {
|
||||
$returntext .= '<button id="'.$id.'" class="setActiveStation btn btn-outline-secondary btn-sm" cnftext="'. lang('station_location_confirm_active') . $station_profile_name .'">' . lang('station_location_set_active') . '</button><br/>';
|
||||
$returntext .= '<button id="'.$id.'" class="setActiveStation btn btn-outline-secondary btn-sm" cnftext="'. __("Are you sure you want to make the following station the active station: ") . $station_profile_name .'">' . __("Set Active") . '</button><br/>';
|
||||
} else {
|
||||
$returntext .= '<span class="badge bg-success text-bg-success">' . lang('station_location_active') . '</span><br/>';
|
||||
$returntext .= '<span class="badge bg-success text-bg-success">' . __("Active Station") . '</span><br/>';
|
||||
}
|
||||
|
||||
$returntext .='<span class="badge bg-dark">' . $qso_total .' '. lang('gen_hamradio_qso') . '</span>';
|
||||
$returntext .='<span class="badge bg-dark">' . $qso_total .' '. __("QSO") . '</span>';
|
||||
return $returntext;
|
||||
}
|
||||
|
||||
private function stationedit2html($id) {
|
||||
return '<a href="' . site_url('station/edit')."/" . $id . '" title="' . lang('admin_edit') . '" class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i></a>';
|
||||
return '<a href="' . site_url('station/edit')."/" . $id . '" title="' . __("Edit") . '" class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i></a>';
|
||||
}
|
||||
|
||||
private function stationemptylog2html($id) {
|
||||
return '<button id="'. $id . '" class="EmptyStation btn btn-danger btn-sm" title="' . lang('station_location_emptylog') . '" cnftext="' . lang('station_location_confirm_del_qso') . '"><i class="fas fa-trash-alt"></i></button>';
|
||||
return '<button id="'. $id . '" class="EmptyStation btn btn-danger btn-sm" title="' . __("Empty Log") . '" cnftext="' . __("Are you sure you want to delete all QSOs within this station profile?") . '"><i class="fas fa-trash-alt"></i></button>';
|
||||
}
|
||||
|
||||
private function stationcopy2html($id) {
|
||||
return '<a href="' . site_url('station/copy') . "/" . $id . '" title="' . lang('admin_copy') . '" class="btn btn-outline-primary btn-sm"><i class="fas fa-copy"></i></a>';
|
||||
return '<a href="' . site_url('station/copy') . "/" . $id . '" title="' . __("Copy") . '" class="btn btn-outline-primary btn-sm"><i class="fas fa-copy"></i></a>';
|
||||
}
|
||||
|
||||
private function stationdelete2html($id, $station_profile_name, $station_active) {
|
||||
if($station_active != 1) {
|
||||
return '<button id="'.$id . '" class="DeleteStation btn btn-danger btn-sm" title="' . lang('admin_delete') . '" cnftext="' . lang('station_location_confirm_del_stationlocation') . $station_profile_name . lang('station_location_confirm_del_stationlocation_qso') . '"><i class="fas fa-trash-alt"></i></button>';
|
||||
return '<button id="'.$id . '" class="DeleteStation btn btn-danger btn-sm" title="' . __("Delete") . '" cnftext="' . __("Are you sure you want delete station profile ") . $station_profile_name . __("This will delete all QSOs within this station profile?") . '"><i class="fas fa-trash-alt"></i></button>';
|
||||
}
|
||||
|
||||
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 .= ' <span class="badge badge-danger">'.lang('gen_hamradio_deleted_dxcc').'</span>';
|
||||
$returntext .= ' <span class="badge badge-danger">'.__("Deleted DXCC").'</span>';
|
||||
}
|
||||
|
||||
return $returntext;
|
||||
@@ -384,7 +384,7 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success']=1;
|
||||
} else {
|
||||
$data['success']=0;
|
||||
$data['flashdata']='Not allowed';
|
||||
$data['flashdata'] = __('Not allowed');
|
||||
}
|
||||
echo json_encode($data);
|
||||
}
|
||||
@@ -398,7 +398,7 @@ class Stationsetup extends CI_Controller {
|
||||
$data['success']=1;
|
||||
} else {
|
||||
$data['success']=0;
|
||||
$data['flashdata']='Not allowed';
|
||||
$data['flashdata'] = __('Not allowed');
|
||||
}
|
||||
echo json_encode($data);
|
||||
}
|
||||
@@ -425,7 +425,7 @@ class Stationsetup extends CI_Controller {
|
||||
$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 @@ class Stationsetup extends CI_Controller {
|
||||
|
||||
$data['exportmapoptions'] = $exportmapoptions;
|
||||
|
||||
$data['page_title'] = "Edit Export Map options";
|
||||
$data['page_title'] = __("Edit Export Map options");
|
||||
$this->load->view('stationsetup/exportmapoptions', $data);
|
||||
}
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ class Statistics extends CI_Controller {
|
||||
// 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
|
||||
|
||||
@@ -9,7 +9,7 @@ class User extends CI_Controller {
|
||||
|
||||
$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 @@ class User extends CI_Controller {
|
||||
}
|
||||
$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;
|
||||
|
||||
@@ -369,10 +369,10 @@ class Visitor extends CI_Controller {
|
||||
$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;
|
||||
|
||||
|
||||
@@ -1,136 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['account_logbook_fields'] = 'Полета в дневника';
|
||||
$lang['account_column1_text'] = 'Избор за колона 1';
|
||||
$lang['account_column2_text'] = 'Избор за колона 2';
|
||||
$lang['account_column3_text'] = 'Избор за колона 3';
|
||||
$lang['account_column4_text'] = 'Избор за колона 4';
|
||||
$lang['account_column5_text'] = 'Избор за колона 5 (само за дневника)';
|
||||
|
||||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
$lang['account_email_address'] = 'Email Address';
|
||||
$lang['account_password'] = 'Password';
|
||||
|
||||
$lang['account_roles'] = 'Roles';
|
||||
$lang['account_user_role'] = 'User Role';
|
||||
$lang['account_word_admin'] = 'Admin';
|
||||
|
||||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_wavelog_preferences'] = 'Wavelog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
$lang['account_log_end_time_hint'] = '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.';
|
||||
$lang['account_quicklog_feature'] = "Quicklog Field";
|
||||
$lang['account_quicklog_feature_hint'] = "With this feature, you can log callsigns using the search field in the header.";
|
||||
$lang['account_quicklog_enter'] = "Quicklog - Action on press Enter";
|
||||
$lang['account_quicklog_enter_hint'] = "What action should be performed when Enter is pressed in the quicklog field?";
|
||||
$lang['account_quicklog_enter_log'] = "Log Callsign";
|
||||
$lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_wavelog_language'] = 'Wavelog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
|
||||
$lang['account_gridsquare_and_location_autocomplete'] = 'Gridsquare and Location Autocomplete';
|
||||
$lang['account_location_auto_lookup'] = 'Location auto lookup.';
|
||||
$lang['account_if_set_gridsquare_is_fetched_based_on_location_name'] = 'If set, gridsquare is fetched based on location name.';
|
||||
$lang['account_sota_auto_lookup_gridsquare_and_name_for_summit'] = 'SOTA auto lookup gridsquare and name for summit.';
|
||||
$lang['account_wwff_auto_lookup_gridsquare_and_name_for_reference'] = 'WWFF auto lookup gridsquare and name for reference.';
|
||||
$lang['account_pota_auto_lookup_gridsquare_and_name_for_park'] = 'POTA auto lookup gridsquare and name for park.';
|
||||
$lang['account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'] = 'If set, name and gridsquare is fetched from the API and filled in location and locator.';
|
||||
|
||||
$lang['account_previous_qsl_type'] = 'Previous QSL Type';
|
||||
$lang['account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'] = 'Select the type of QSL to show in the previous QSOs section.';
|
||||
|
||||
$lang['account_qrzcom_hamqthcom_images'] = 'qrz.com/hamqth.com Images';
|
||||
$lang['account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'] = 'Show profile picture of QSO partner from qrz.com/hamqth.com profile in the log QSO section.';
|
||||
$lang['account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'] = 'Please set your qrz.com/hamqth.com credentials in the general config file.';
|
||||
|
||||
$lang['account_amsat_status_upload'] = 'AMSAT Status Upload';
|
||||
$lang['account_upload_status_of_sat_qsos_to'] = 'Upload status of SAT QSOs to';
|
||||
|
||||
$lang['account_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['account_logbook_of_the_world_lotw_username'] = 'Logbook of The World (LoTW) Username';
|
||||
$lang['account_logbook_of_the_world_lotw_password'] = 'Logbook of The World (LoTW) Password';
|
||||
|
||||
$lang['account_clublog'] = 'Club Log';
|
||||
$lang['account_clublog_email_callsign'] = 'Club Log Email/Callsign';
|
||||
$lang['account_clublog_password'] = 'Club Log Password';
|
||||
$lang['account_the_email_or_callsign_you_use_to_login_to_club_log'] = 'The Email or Callsign you use to login to Club Log';
|
||||
|
||||
$lang['account_eqsl'] = 'eQSL';
|
||||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
$lang['account_are_you_sure_you_want_to_delete_the_user_account'] = 'Are you sure you want to delete the user account';
|
||||
$lang['account_yes_delete_this_user'] = 'Yes, delete this user';
|
||||
$lang['account_no_do_not_delete_this_user'] = 'No, do not delete this user';
|
||||
|
||||
$lang['account_forgot_password'] = 'Forgot Password?';
|
||||
$lang['account_you_can_reset_your_password_here'] = 'You can reset your password here.';
|
||||
$lang['account_reset_password'] = 'Reset Password';
|
||||
$lang['account_the_email_field_is_required'] = 'The Email field is required';
|
||||
$lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
$lang['account_user_mastodon'] = 'URL of Mastodonserver';
|
||||
$lang['account_user_mastodon_hint'] = "Main URL of your Mastodon server, e.g. <a href='https://radiosocial.de/' target='_blank'>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 <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> 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 <a href='https://hams.at/users/settings' target='_blank'>https://hams.at/users/settings</a>.";
|
||||
$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.";
|
||||
@@ -1,139 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_import'] = "ADIF Import";
|
||||
$lang['adif_export'] = "ADIF Export";
|
||||
// $lang['lotw_title'] --> 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 <b>all</b> 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'] = " <b>Dupes were inserted!</b>";
|
||||
$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";
|
||||
@@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.';
|
||||
$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.';
|
||||
$lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.';
|
||||
$lang['admin_user_line4'] = "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.";
|
||||
|
||||
$lang['admin_user_list'] = 'User List';
|
||||
|
||||
$lang['admin_user'] = 'User';
|
||||
$lang['admin_email'] = 'E-mail';
|
||||
$lang['admin_type'] = 'Type';
|
||||
$lang['admin_last_seen'] = "Last seen";
|
||||
$lang['admin_last_qso'] = "Last QSO:";
|
||||
$lang['admin_no_qso_in_log'] = "No QSOs in Log";
|
||||
$lang['admin_refresh_list'] = "Refresh List";
|
||||
$lang['admin_options'] = 'Options';
|
||||
|
||||
$lang['admin_station_logbooks'] = 'Logbooks';
|
||||
$lang['admin_station_locations'] = 'Locations';
|
||||
|
||||
$lang['admin_create_user'] = 'Create user';
|
||||
$lang['admin_delete'] = 'Delete';
|
||||
$lang['admin_remove'] = "Remove";
|
||||
$lang['admin_edit'] = 'Edit';
|
||||
$lang['admin_create'] = 'Create';
|
||||
$lang['admin_update'] = 'Update';
|
||||
$lang['admin_copy'] = 'Copy';
|
||||
$lang['admin_save'] = 'Save';
|
||||
$lang['admin_close'] = 'Close';
|
||||
$lang['admin_clear'] = "Clear";
|
||||
$lang['admin_user_accounts'] = 'User Accounts';
|
||||
$lang['admin_danger'] = 'DANGER!';
|
||||
$lang['admin_experimental'] = "Experimental";
|
||||
$lang['admin_password_reset'] = "Password Reset";
|
||||
|
||||
$lang['admin_email_settings_incorrect'] = "Email settings are incorrect.";
|
||||
$lang['admin_password_reset_processed'] = "Password-reset e-mail sent to user:";
|
||||
$lang['admin_confirm_pwd_reset'] = "Do you really want to send this user a password-reset link?";
|
||||
|
||||
|
||||
// Contest Menu
|
||||
|
||||
$lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.';
|
||||
$lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.';
|
||||
$lang['admin_contest_menu_name'] = 'Name';
|
||||
$lang['admin_contest_menu_adif'] = 'ADIF Name';
|
||||
$lang['admin_contest_menu_active'] = 'Active';
|
||||
$lang['admin_contest_menu_n_active'] = 'Not Active';
|
||||
$lang['admin_contest_menu_activate'] = 'Activate';
|
||||
$lang['admin_contest_menu_deactivate'] = 'Deactivate';
|
||||
|
||||
$lang['admin_contest_add_contest'] = 'Add a Contest';
|
||||
$lang["admin_contest_create"] = "Create";
|
||||
$lang['admin_contest_all_active'] = 'Activate All';
|
||||
$lang['admin_contest_all_deactive'] = 'Deactivate All';
|
||||
|
||||
$lang['admin_contest_name_adif'] = 'Contest ADIF Name';
|
||||
$lang['admin_contest_name_of_contest'] = 'Name of the Contest';
|
||||
$lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification';
|
||||
$lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list';
|
||||
$lang['admin_contest_edit_update_contest'] = 'Update Contest';
|
||||
$lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: ';
|
||||
$lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?';
|
||||
$lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?';
|
||||
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['awards_info_button'] = "Award Info";
|
||||
$lang['awards_show_worked'] = "Show worked";
|
||||
$lang['awards_show_confirmed'] = "Show confirmed";
|
||||
$lang['awards_show_not_worked'] = "Show not worked";
|
||||
$lang['awards_qsl_type'] = "Show QSO with QSL Type";
|
||||
$lang['awards_show_cq_map'] = "Show CQ Zone Map";
|
||||
$lang['awards_summary'] = "Summary";
|
||||
$lang['awards_total'] = "Total";
|
||||
$lang['awards_total_worked'] = "Total worked";
|
||||
$lang['awards_total_confirmed'] = "Total confirmed";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Awards - CQ Magazine WAZ";
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
$lang['awards_show_itu_map'] = "Show ITU Zone Map";
|
||||
$lang['awards_show_jcc_map'] = "Show JCC Map";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
CQ -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_cq_description_ln1'] = "CQ Magazine WAZ Award";
|
||||
$lang['awards_cq_description_ln2'] = "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.";
|
||||
$lang['awards_cq_description_ln3'] = "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to all 40 CQ Zones along with the corresponding confirmation.";
|
||||
$lang['awards_cq_description_ln4'] = "You can find all the information and rules on the Website of the <a href='https://cq-amateur-radio.com/cq_awards/cq_waz_awards/index_cq_waz_award.html' target='_blank'>CQ Magazine</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/districtsdoks/' target='_blank'>DARC website</a>. Information about the DOK Awards and its rules can be found <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/award-check/' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='http://www.arrl.org/desoto' target='_blank'>'How to Count Countries Worked, A New DX Scoring System'</a>.";
|
||||
$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL website</a>.";
|
||||
$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: <a href='https://www.arrl.org/ffma' target='_blank'>https://www.arrl.org/ffma</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.uska.ch/contest/uska-diplome/' target='_blank'>https://www.uska.ch/contest/uska-diplome/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.iota-world.org/' target='_blank'>IOTA WORLD website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://parksontheair.com/pota-awards/' target='_blank'>Parks on the Air® website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.sota.org.uk/' target='_blank'>https://www.sota.org.uk/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://cq-amateur-radio.com/cq_awards/cq_usa_ca_awards/cq_usa_ca_awards.html' target='_blank'>here</a>.";
|
||||
$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 <a href='https://www.amsat.org/gridmaster/' target='_blank'>website</a>: 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: <a href='https://www.arrl.org/vucc' target='_blank'>Click here</a>.";
|
||||
$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 <a href='https://www.arrl.org/was' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wwff.co/awards/' target='_blank'>https://wwff.co/awards/</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wab.intermip.net/default.php' target='_blank'>https://wab.intermip.net/default.php</a>.";
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://rsgb.org/main/files/2019/01/Worked_ITU_Zones_Award_Form_2019.pdf' target='_blank'>RSGB</a>.";
|
||||
@@ -1,33 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['contesting_page_title'] = 'Регистриране на състезание';
|
||||
$lang['contesting_button_reset_contest_session'] = 'Нулиране на сесията на състезанието';
|
||||
$lang['contesting_operator_callsign'] = 'Operator Callsign';
|
||||
|
||||
$lang['contesting_exchange_type'] = 'Тип обмен';
|
||||
$lang['contesting_exchange_type_serial'] = 'Serial';
|
||||
$lang['contesting_exchange_type_none'] = 'None';
|
||||
$lang['contesting_exchange_type_exchange'] = 'Exchange';
|
||||
$lang['contesting_exchange_type_gridsquare'] = 'Gridsquare';
|
||||
$lang['contesting_exchange_type_other'] = 'Друг';
|
||||
$lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange';
|
||||
$lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare';
|
||||
$lang['contesting_exchange_serial_s'] = 'Serial (S)';
|
||||
$lang['contesting_exchange_serial_r'] = 'Serial (R)';
|
||||
$lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)';
|
||||
$lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)';
|
||||
|
||||
$lang['contesting_contest_name'] = 'Име на състезанието';
|
||||
|
||||
$lang['contesting_btn_reset_qso'] = 'Нулиране на QSO';
|
||||
$lang['contesting_btn_save_qso'] = 'Запазване на QSO';
|
||||
|
||||
$lang['contesting_title_callsign_suggestions'] = 'Предложения за инициали';
|
||||
$lang['contesting_title_contest_logbook'] = 'Дневник на състезанието';
|
||||
|
||||
$lang['contesting_copy_exch_to'] = 'Copy received exchange to';
|
||||
$lang['contesting_copy_exch_hint'] = 'Exchange is only copied if it is matching rules for the selected field!';
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['eqsl_short'] = 'eQSL';
|
||||
@@ -1,76 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
KML Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_kml_header'] = "KML Export";
|
||||
$lang['export_kml_description'] = "Export your logbook to a KML file for use in Google Earth.";
|
||||
$lang['export_kml_grisquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DX Atlas Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_dxatlas_header'] = "DX Atlas Export";
|
||||
$lang['export_dxatlas_description'] = "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares.";
|
||||
$lang['export_dxatlas_gridsquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
SOTA Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_sota_header'] = "SOTA CSV Export";
|
||||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See <a href=\"https://toplist.darc.de\" target=\"_new\">https://toplist.darc.de</a>)";
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Quickfilters';
|
||||
$lang['filter_qsl_filters'] = 'QSL Filters';
|
||||
$lang['filter_filters'] = 'Filters';
|
||||
$lang['filter_actions'] = 'Actions';
|
||||
$lang['filter_results'] = '# Results';
|
||||
$lang['filter_search'] = 'Search';
|
||||
$lang['filter_dupes'] = "Dupes";
|
||||
$lang['filter_map'] = 'Map';
|
||||
$lang['filter_options'] = 'Options';
|
||||
$lang['filter_reset'] = 'Reset';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Quicksearch with selected: ';
|
||||
$lang['filter_search_callsign'] = 'Search Callsign';
|
||||
$lang['filter_search_dxcc'] = 'Search DXCC';
|
||||
$lang['filter_search_state'] = 'Search State';
|
||||
$lang['filter_search_gridsquare'] = 'Search Gridsquare';
|
||||
$lang['filter_search_cq_zone'] = 'Search CQ Zone';
|
||||
$lang['filter_search_itu_zone'] = 'Search ITU Zone';
|
||||
$lang['filter_search_mode'] = 'Search Mode';
|
||||
$lang['filter_search_band'] = 'Search Band';
|
||||
$lang['filter_search_iota'] = 'Search IOTA';
|
||||
$lang['filter_search_sota'] = 'Search SOTA';
|
||||
$lang['filter_search_wwff'] = 'Search WWFF';
|
||||
$lang['filter_search_pota'] = 'Search POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL sent';
|
||||
$lang['filter_qsl_recv'] = 'QSL received';
|
||||
$lang['filter_qsl_sent_method'] = 'QSL send. method';
|
||||
$lang['filter_qsl_recv_method'] = 'QSL recv. method';
|
||||
$lang['filter_lotw_sent'] = 'LoTW sent';
|
||||
$lang['filter_lotw_recv'] = 'LoTW received';
|
||||
$lang['filter_eqsl_sent'] = 'eQSL sent';
|
||||
$lang['filter_eqsl_recv'] = 'eQSL received';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'QSL Images';
|
||||
|
||||
// $lang['general_word_all'] --> 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';
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['error_no_active_station_profile'] = 'Внимание: трябва да зададете местоположение на активната станция.';
|
||||
|
||||
$lang['notice_turn_the_radio_on'] = 'Днес не сте правили QSO; време е да включите радиото!';
|
||||
|
||||
$lang['general_word_important'] = 'Важно';
|
||||
$lang['general_word_warning'] = 'Warning';
|
||||
$lang['general_word_danger'] = 'DANGER';
|
||||
$lang['general_word_maintenance'] = 'Maintenance';
|
||||
$lang['general_word_info'] = 'Инфо';
|
||||
$lang['general_word_choose_file'] = 'Изберете файл';
|
||||
$lang['general_word_please_wait'] = "Please Wait ...";
|
||||
$lang['general_word_next'] = 'Next';
|
||||
$lang['general_word_previous'] = 'Previous';
|
||||
$lang['general_word_cancel'] = "Cancel";
|
||||
$lang['general_word_ok'] = "OK";
|
||||
$lang['general_word_show'] = "Show";
|
||||
$lang['general_word_attention'] = "Attention";
|
||||
$lang['general_word_message'] = "Message";
|
||||
$lang['general_word_enabled'] = "Enabled";
|
||||
$lang['general_word_disabled'] = "Disabled";
|
||||
$lang['general_word_export'] = "Export";
|
||||
$lang['general_word_import'] = "Import";
|
||||
$lang['general_word_count'] = "Count";
|
||||
$lang['general_word_filtering_on'] = "Filtering on";
|
||||
$lang['general_word_not_display'] = "Not display";
|
||||
$lang['general_word_icon'] = "Icon";
|
||||
$lang['general_word_never'] = "Never";
|
||||
$lang['general_word_active'] = "Active";
|
||||
$lang['general_word_inactive'] = "Inactive";
|
||||
|
||||
$lang['general_word_date'] = 'Дата';
|
||||
$lang['general_word_startdate'] = "Start Date";
|
||||
$lang['general_word_enddate'] = "End Date";
|
||||
$lang['general_word_time'] = 'Час';
|
||||
$lang['general_word_time_on'] = 'Time on';
|
||||
$lang['general_word_time_off'] = 'Time off';
|
||||
$lang['general_word_datetime'] = 'Дата/Час';
|
||||
$lang['general_word_none'] = 'Нито едно';
|
||||
$lang['general_word_name'] = 'Име';
|
||||
$lang['general_word_location'] = 'Местоположение';
|
||||
$lang['general_word_comment'] = 'Коментар';
|
||||
$lang['general_word_general'] = 'Общи';
|
||||
$lang['general_word_satellite'] = 'Сателит';
|
||||
$lang['general_word_orbit'] = 'Orbit';
|
||||
$lang['general_word_satellite_short'] = 'Сат';
|
||||
$lang['general_word_notes'] = 'Бележки';
|
||||
$lang['general_word_country'] = 'Държава';
|
||||
$lang['general_word_city'] = 'Град';
|
||||
$lang['general_word_age'] = 'Age';
|
||||
|
||||
$lang['general_word_total'] = 'Общо';
|
||||
$lang['general_word_year'] = 'Година';
|
||||
$lang['general_word_month'] = 'Месец';
|
||||
$lang['general_word_day'] = "Day";
|
||||
$lang['general_word_days'] = "Days";
|
||||
$lang['general_word_period'] = "Period";
|
||||
$lang['general_word_yearly'] = "Yearly";
|
||||
$lang['general_word_monthly'] = "Monthly";
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Работени';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
$lang['general_word_confirmed'] = 'Потвърдени';
|
||||
$lang['general_word_not_confirmed'] = "Not Confirmed";
|
||||
$lang['general_word_confirmation'] = "Confirmation";
|
||||
$lang['general_word_needed'] = 'Необходими';
|
||||
|
||||
$lang['general_word_all'] = 'All';
|
||||
$lang['general_word_no'] = 'Не';
|
||||
$lang['general_word_yes'] = 'Да';
|
||||
$lang['general_word_method'] = 'Метод';
|
||||
|
||||
$lang['general_word_sent'] = 'Изпратени';
|
||||
$lang['general_word_received'] = 'Получени';
|
||||
$lang['general_word_requested'] = 'Заявени';
|
||||
$lang['general_word_queued'] = 'Queued';
|
||||
$lang['general_word_table'] = "Table";
|
||||
$lang['general_word_invalid_ignore'] = 'Invalid (Ignore)';
|
||||
$lang['general_word_qslcard'] = 'QSL катичка';
|
||||
$lang['general_word_qslcard_management'] = 'Управление на QSL';
|
||||
$lang['general_word_qslcards'] = 'QSL картички';
|
||||
$lang['general_word_qslcard_direct'] = 'Директено';
|
||||
$lang['general_word_qslcard_bureau'] = 'Бюро';
|
||||
$lang['general_word_qslcard_electronic'] = 'Electronic';
|
||||
$lang['general_word_qslcard_manager'] = 'Manager';
|
||||
$lang['general_word_qslcard_via'] = 'Чрез';
|
||||
$lang['general_word_eqslcard'] = 'eQSL Card';
|
||||
$lang['general_word_eqslcards'] = 'eQSL Cards';
|
||||
$lang['general_word_lotw'] = 'Logbook of the World';
|
||||
$lang['general_word_lotw_short'] = 'LoTW';
|
||||
|
||||
$lang['general_word_details'] = 'Details';
|
||||
$lang['general_word_qso_data'] = 'QSO Data';
|
||||
|
||||
$lang['general_edit_qso'] = 'Редактирай QSO';
|
||||
$lang['general_mark_qsl_rx_bureau'] = 'Маркирайте QSL получена (Бюро)';
|
||||
$lang['general_mark_qsl_rx_direct'] = 'Маркирайте QSL получена (Директно)';
|
||||
$lang['general_mark_qsl_rx_electronic'] = 'Маркирайте получено QSL (електронно)';
|
||||
$lang['general_mark_qsl_tx_bureau'] = 'Маркирайте QSL като изпратено (Бюро)';
|
||||
$lang['general_mark_qsl_tx_direct'] = 'Маркирайте QSL като изпратено(Директно)';
|
||||
$lang['general_mark_qsl_requested'] = 'Маркирайте QSL карта като поискана';
|
||||
$lang['general_mark_qsl_requested_bureau'] = 'Маркирайте QSL карта като поискана (Бюро)';
|
||||
$lang['general_mark_qsl_requested_direct'] = 'Маркирайте QSL карта като поискана(Директно)';
|
||||
$lang['general_mark_qsl_not_required'] = 'Маркирайте QSL картата като неизискваща';
|
||||
|
||||
$lang['general_delete_qso'] = 'Изтрий QSO';
|
||||
$lang['general_more_qso'] = 'More QSOs';
|
||||
|
||||
$lang['general_lookup_qrz'] = 'Lookup on QRZ.com';
|
||||
$lang['general_lookup_hamqth'] = 'Lookup on HamQTH';
|
||||
|
||||
$lang['general_total_distance'] = 'Общо разстояние';
|
||||
|
||||
// PHP Upload Warning
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Wavelog Terms
|
||||
$lang['wavelog_station_profile'] = 'Местоположение на станцията';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
$lang['gen_hamradio_qso'] = 'QSO';
|
||||
$lang['gen_hamradio_station'] = 'Станция';
|
||||
|
||||
$lang['gen_hamradio_call'] = 'Инициал';
|
||||
$lang['gen_hamradio_callsign'] = 'Инициал';
|
||||
$lang['gen_hamradio_prefix'] = "Prefix";
|
||||
$lang['gen_hamradio_suffix'] = "Suffix";
|
||||
$lang['gen_hamradio_de'] = 'De';
|
||||
$lang['gen_hamradio_dx'] = 'Dx';
|
||||
$lang['gen_hamradio_mode'] = 'Режим';
|
||||
$lang['gen_hamradio_ant_az'] = 'Antenna Azimuth';
|
||||
$lang['gen_hamradio_ant_el'] = 'Antenna Elevation';
|
||||
$lang['gen_hamradio_rst_sent'] = 'Sent';
|
||||
$lang['gen_hamradio_rst_rcvd'] = 'Recv\'d';
|
||||
$lang['gen_hamradio_band'] = 'Обхват';
|
||||
$lang['gen_hamradio_bandgroup'] = "Bandgroup";
|
||||
$lang['gen_hamradio_band_rx'] = 'Обхват (RX)';
|
||||
$lang['gen_hamradio_frequency'] = 'Честота';
|
||||
$lang['gen_hamradio_frequency_rx'] = 'Честота (RX)';
|
||||
$lang['gen_hamradio_radio'] = 'Радио';
|
||||
$lang['gen_hamradio_rsts'] = 'RST (S)';
|
||||
$lang['gen_hamradio_rstr'] = 'RST (R)';
|
||||
$lang['gen_hamradio_refs'] = 'Refs';
|
||||
$lang['gen_hamradio_myrefs'] = 'My Refs';
|
||||
$lang['gen_hamradio_exchange_sent_short'] = 'Exch (S)';
|
||||
$lang['gen_hamradio_exchange_rcvd_short'] = 'Exch (R)';
|
||||
$lang['gen_hamradio_qsl'] = 'QSL';
|
||||
$lang['gen_hamradio_qsltype'] = "QSL Type";
|
||||
$lang['gen_hamradio_qslvia'] = 'QSL via';
|
||||
$lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||
$lang['gen_hamradio_locator'] = 'Локатор';
|
||||
$lang['gen_hamradio_transmit_power'] = 'Мощност на предавателя (W)';
|
||||
$lang['gen_hamradio_receive_power'] = 'RX Power (W)';
|
||||
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
||||
|
||||
$lang['gen_hamradio_satellite_name'] = 'Име на сателита';
|
||||
$lang['gen_hamradio_satellite_mode'] = 'Режим на сателита';
|
||||
|
||||
$lang['gen_hamradio_logbook'] = 'Дневник';
|
||||
$lang['gen_hamradio_active_logbook'] = 'Active Logbook';
|
||||
$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook";
|
||||
$lang['gen_hamradio_award'] = "Award";
|
||||
|
||||
$lang['gen_hamradio_zones'] = 'Zones';
|
||||
$lang['gen_hamradio_cq_zone'] = 'CQ зона';
|
||||
$lang['gen_hamradio_itu_zone'] = 'ITU Zone';
|
||||
$lang['gen_hamradio_dxcc'] = 'DXCC';
|
||||
$lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC';
|
||||
$lang['gen_hamradio_continent'] = 'Continent';
|
||||
$lang['gen_hamradio_usa_state'] = 'USA щат';
|
||||
$lang['gen_hamradio_county_reference'] = 'USA окръг';
|
||||
$lang['gen_hamradio_iota_reference'] = 'IOTA референция';
|
||||
$lang['gen_hamradio_sota_reference'] = 'SOTA референция';
|
||||
$lang['gen_hamradio_wwff_reference'] = 'WWFF референция';
|
||||
$lang['gen_hamradio_pota_reference'] = 'POTA Reference(s)';
|
||||
$lang['gen_hamradio_dok'] = 'DOK';
|
||||
$lang['gen_hamradio_state'] = 'State';
|
||||
$lang['gen_hamradio_iota'] = 'IOTA';
|
||||
$lang['gen_hamradio_sota'] = 'SOTA';
|
||||
$lang['gen_hamradio_wwff'] = 'WWFF';
|
||||
$lang['gen_hamradio_pota'] = 'POTA';
|
||||
$lang['gen_hamradio_gridsquare'] = 'Gridsquare';
|
||||
$lang['gen_hamradio_get_gridsquare'] = 'Get Gridsquare';
|
||||
$lang['gen_hamradio_gridsquare_show'] = "Show Locator";
|
||||
$lang['gen_hamradio_latitude'] = "Latitude";
|
||||
$lang['gen_hamradio_longitude'] = "Longitude";
|
||||
$lang['gen_hamradio_bearing'] = "Bearing";
|
||||
$lang['gen_hamradio_distance'] = 'Distance';
|
||||
$lang['gen_hamradio_operator'] = 'Operator';
|
||||
|
||||
$lang['gen_hamradio_sig'] = 'Sig';
|
||||
$lang['gen_hamradio_sig_info'] = 'Sig Info';
|
||||
|
||||
// Find your CQ/ITU Zone
|
||||
$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then";
|
||||
$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then";
|
||||
$lang['gen_find_zone_part2'] = "click here";
|
||||
$lang['gen_find_zone_part3'] = "to find it!";
|
||||
|
||||
// Dashboard Words
|
||||
$lang['dashboard_you_have_had'] = 'Вие сте имали';
|
||||
$lang['dashboard_qsos_today'] = 'QSO-та днес!';
|
||||
$lang['dashboard_qso_breakdown'] = 'Разбивка на QSO-тата';
|
||||
$lang['dashboard_countries_breakdown'] = 'Разбивка по държави';
|
||||
$lang['gen_to_date'] = 'To date';
|
||||
|
||||
$lang['gen_from_date'] = 'От дата';
|
||||
|
||||
$lang['gen_this_qso_was_confirmed_on'] = 'Това QSO беше потвърдено на';
|
||||
|
||||
$lang['error_no_logbook_found'] = 'No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:';
|
||||
|
||||
$lang['copy_to_clipboard'] = 'Copy to clipboard';
|
||||
|
||||
$lang['africa'] = 'Africa';
|
||||
$lang['antarctica'] = 'Antarctica';
|
||||
$lang['asia'] = 'Asia';
|
||||
$lang['europe'] = 'Europe';
|
||||
$lang['northamerica'] = 'North America';
|
||||
$lang['oceania'] = 'Oceania';
|
||||
$lang['southamerica'] = 'South America';
|
||||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('stationsetup') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('stationsetup') . '">here</a> 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";
|
||||
@@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['gridsquares_gridsquare_map'] = 'Gridsquare Map';
|
||||
$lang['gridsquares_activated_gridsquare_map'] = "Activated Gridsquare Map";
|
||||
$lang['gridsquares_gridsquare_activators'] = "Gridsquare Activators";
|
||||
|
||||
$lang['gridsquares_confirmed_is_green'] = 'Confirmed is Green';
|
||||
$lang['gridsquares_worked_but_not_confirmed_is_red'] = 'Worked but not confirmed is Red';
|
||||
$lang['gridsquares_activated_but_not_confirmed_is_red'] = 'Activated but not confirmed is Red';
|
||||
|
||||
$lang['gridsquares_this_map_does_not_include_satellite_internet_or_repeater_qsos'] = 'This map does not include satellite, internet or repeater QSOs';
|
||||
|
||||
$lang['gridsquares_grid_squares'] = 'grid square';
|
||||
$lang['gridsquares_total_count'] = 'Total count';
|
||||
$lang['gridsquares_orbit'] = "Orbit";
|
||||
|
||||
$lang['gridsquares_minimum_count'] = "Minimum Count";
|
||||
$lang['gridsquares_show_qsos'] = "Show QSO's";
|
||||
$lang['gridsquares_show_map'] = "Show Map";
|
||||
$lang['gridsquares_band'] = 'Band';
|
||||
$lang['gridsquares_mode'] = 'Mode';
|
||||
$lang['gridsquares_sat'] = 'Satellite';
|
||||
$lang['gridsquares_confirmation'] = 'Confirmation';
|
||||
|
||||
$lang['gridsquares_button_plot'] = 'Plot';
|
||||
$lang['gridsquares_button_clear_markers'] = "Clear Markers";
|
||||
|
||||
$lang['gridsquares_gridsquares'] = 'Gridsquares';
|
||||
$lang['gridsquares_gridsquares_worked'] = 'Gridsquares worked';
|
||||
$lang['gridsquares_gridsquares_confirmed'] = 'Gridsquares confirmed';
|
||||
$lang['gridsquares_gridsquares_lotw'] = 'Gridsquares confirmed on LoTW';
|
||||
$lang['gridsquares_gridsquares_paper'] = 'Gridsquares confirmed by paper QSL';
|
||||
$lang['gridsquares_gridsquares_not_confirmed'] = 'Gridsquares not confirmed';
|
||||
$lang['gridsquares_gridsquares_total_worked'] = 'Total gridsquares worked';
|
||||
$lang['gridsquares_gridsquares_total_activated'] = 'Total gridsquares activated';
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Забранено</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Достъпът до директорията е забранен.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['lotw_short'] = 'LoTW';
|
||||
$lang['lotw_title'] = 'Logbook of the World';
|
||||
$lang['lotw_title_available_cert'] = 'Налични сертификати';
|
||||
$lang['lotw_title_information'] = 'Информация';
|
||||
$lang['lotw_title_upload_p12_cert'] = 'Качване на Logbook of the World .p12 сертификат';
|
||||
$lang['lotw_title_export_p12_file_instruction'] = 'Инструкции за експортиране на .p12 файл';
|
||||
$lang['lotw_title_adif_import'] = 'ADIF импорт';
|
||||
$lang['lotw_title_adif_import_options'] = 'Опции за импортиране';
|
||||
|
||||
$lang['lotw_beta_warning'] = 'Моля, имайте предвид, че LoTW Sync е БЕТА, вижте wiki за помощ.';
|
||||
$lang['lotw_no_certs_uploaded'] = 'Трябва да качите някои LoTW p12 сертификати, за да използвате тази област.';
|
||||
|
||||
$lang['lotw_date_created'] = 'Дата на създаване';
|
||||
$lang['lotw_date_expires'] = 'Дата изтичане';
|
||||
$lang['lotw_qso_start_date'] = 'QSO Start Date';
|
||||
$lang['lotw_qso_end_date'] = 'QSO End Date';
|
||||
$lang['lotw_status'] = 'Състояние';
|
||||
$lang['lotw_options'] = 'Опции';
|
||||
$lang['lotw_valid'] = 'Валиден';
|
||||
$lang['lotw_expired'] = 'Изтекъл';
|
||||
$lang['lotw_expiring'] = 'Expiring';
|
||||
$lang['lotw_not_synced'] = 'Не е синхронизиран';
|
||||
|
||||
$lang['lotw_certificate_dxcc'] = 'DXCC сертификат';
|
||||
$lang['lotw_certificate_dxcc_help_text'] = 'Certificate DXCC entity. Например: Scotland';
|
||||
|
||||
$lang['lotw_input_a_file'] = 'Качете файл';
|
||||
|
||||
$lang['lotw_upload_exported_adif_file_from_lotw'] = 'Upload the Exported ADIF file from LoTW from the <a href="https://p1k.arrl.org/lotwuser/qsos?qsoscmd=adif" target="_blank">Download Report</a> 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.';
|
||||
@@ -1,121 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['menu_badge_developer_mode'] = 'Developer Mode';
|
||||
|
||||
$lang['menu_logbook'] = 'Logbook';
|
||||
$lang['menu_overview'] = 'Overview';
|
||||
$lang['menu_advanced'] = 'Advanced';
|
||||
|
||||
$lang['menu_qso'] = 'QSO';
|
||||
$lang['menu_live_qso'] = 'Live QSO';
|
||||
$lang['menu_post_qso'] = 'Post QSO';
|
||||
$lang['menu_fast_log_entry'] = "Simple Fast Log Entry";
|
||||
$lang['menu_live_contest_logging'] = 'Live Contest Logging';
|
||||
$lang['menu_post_contest_logging'] = 'Post Contest Logging';
|
||||
$lang['menu_bandmap'] = 'Bandmap';
|
||||
$lang['menu_view_qsl'] = 'View QSL Cards';
|
||||
$lang['menu_view_eqsl'] = 'View eQSL Cards';
|
||||
|
||||
$lang['menu_notes'] = 'Notes';
|
||||
|
||||
$lang['menu_analytics'] = 'Analytics';
|
||||
$lang['menu_statistics'] = 'Statistics';
|
||||
$lang['menu_gridsquares'] = 'Gridsquares';
|
||||
$lang['menu_gridmap'] = 'Gridsquare Map';
|
||||
$lang['menu_activated_gridsquares'] = 'Activated Gridsquares';
|
||||
$lang['menu_gridsquare_activators'] = 'Gridsquare Activators';
|
||||
$lang['menu_distances_worked'] = 'Distances Worked';
|
||||
$lang['menu_days_with_qsos'] = 'Days with QSOs';
|
||||
$lang['menu_timeline'] = 'Timeline';
|
||||
$lang['menu_accumulated_statistics'] = 'Accumulated Statistics';
|
||||
$lang['menu_timeplotter'] = 'Timeplotter';
|
||||
$lang['menu_continents'] = 'Continents';
|
||||
|
||||
$lang['menu_awards'] = 'Awards';
|
||||
$lang['menu_cq'] = 'CQ';
|
||||
$lang['menu_dok'] = 'DOK';
|
||||
$lang['menu_dxcc'] = 'DXCC';
|
||||
$lang['menu_ffma'] = 'Fred Fish Memorial Award';
|
||||
$lang['menu_helvetia'] = "H26";
|
||||
$lang['menu_gridmaster'] = "Gridmaster";
|
||||
$lang['menu_dl_gridmaster'] = 'DL Gridmaster';
|
||||
$lang['menu_lx_gridmaster'] = 'LX Gridmaster';
|
||||
$lang['menu_ja_gridmaster'] = 'JA Gridmaster';
|
||||
$lang['menu_us_gridmaster'] = 'US Gridmaster';
|
||||
$lang['menu_iota'] = 'IOTA';
|
||||
$lang['menu_jcc'] = 'JCC';
|
||||
$lang['menu_pota'] = 'POTA';
|
||||
$lang['menu_rac'] = 'RAC';
|
||||
$lang['menu_sig'] = 'SIG';
|
||||
$lang['menu_sota'] = 'SOTA';
|
||||
$lang['menu_us_counties'] = 'US Counties';
|
||||
$lang['menu_vucc'] = 'VUCC';
|
||||
$lang['menu_waja'] = 'WAJA';
|
||||
$lang['menu_was'] = 'WAS';
|
||||
$lang['menu_wwff'] = 'WWFF';
|
||||
|
||||
$lang['menu_tools'] = "Tools";
|
||||
$lang['menu_sat_timers'] = "SAT Timers";
|
||||
|
||||
$lang['menu_admin'] = 'Admin';
|
||||
$lang['menu_user_account'] = 'User Accounts';
|
||||
$lang['menu_global_options'] = 'Global Options';
|
||||
$lang['menu_modes'] = 'Modes';
|
||||
$lang['menu_contests'] = 'Contests';
|
||||
$lang['menu_themes'] = 'Themes';
|
||||
$lang['menu_backup'] = 'Backup';
|
||||
$lang['menu_update_country_files'] = 'Update Country Files';
|
||||
$lang['menu_debug_information'] = 'Debug Information';
|
||||
$lang['menu_search_text_quicklog'] = "Add/Search Callsign";
|
||||
|
||||
$lang['menu_search_text'] = 'Search Callsign';
|
||||
$lang['menu_search_button_qicksearch_log'] = "Log";
|
||||
|
||||
$lang['menu_search_button'] = 'Search';
|
||||
$lang['menu_login_button'] = 'Login';
|
||||
|
||||
$lang['menu_account'] = 'Account';
|
||||
$lang['menu_station_logbooks'] = 'Station Logbooks';
|
||||
$lang['menu_station_locations'] = 'Station Locations';
|
||||
$lang['menu_select_location'] = "Select a Location";
|
||||
$lang['menu_station_setup'] = 'Station Setup';
|
||||
$lang['menu_bands'] = 'Bands';
|
||||
$lang['menu_adif_import_export'] = 'ADIF Import / Export';
|
||||
$lang['menu_other_export'] = "Other Export Options";
|
||||
$lang['menu_kml_export'] = 'KML Export';
|
||||
$lang['menu_dx_atlas_gridsquare_export'] = 'DX Atlas Gridsquare Export';
|
||||
$lang['menu_sota_csv_export'] = 'SOTA CSV Export';
|
||||
$lang['menu_cabrillo_export'] = 'Cabrillo Export';
|
||||
$lang['menu_cfd_export'] = "CFD Export";
|
||||
$lang['menu_oqrs_requests'] = 'OQRS Requests';
|
||||
$lang['menu_print_requested_qsls'] = 'Print Requested QSLs';
|
||||
$lang['menu_labels'] = 'Labels';
|
||||
$lang['menu_third_party_services'] = "Third-Party Services";
|
||||
$lang['menu_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['menu_eqsl_import_export'] = 'eQSL Import / Export';
|
||||
$lang['menu_qrz_logbook'] = 'QRZ Logbook';
|
||||
$lang['menu_hrd_logbook'] = 'HRDLog Logbook';
|
||||
$lang['menu_qo_100_dx_club_upload'] = 'QO-100 Dx Club Upload';
|
||||
$lang['menu_api_keys'] = 'API Keys';
|
||||
$lang['menu_hardware_interfaces'] = 'Hardware Interfaces';
|
||||
$lang['menu_help'] = 'Help';
|
||||
$lang['menu_forum'] = 'Forum';
|
||||
$lang['menu_logout'] = 'Logout';
|
||||
|
||||
$lang['menu_extras'] = "Extras";
|
||||
$lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU';
|
||||
|
||||
$lang['menu_canada'] = 'Canada';
|
||||
$lang['menu_germany'] = 'Germany';
|
||||
$lang['menu_great_britain'] = 'Great Britain';
|
||||
$lang['menu_japan'] = 'Japan';
|
||||
$lang['menu_luxemburg'] = 'Luxemburg';
|
||||
$lang['menu_switzerland'] = 'Switzerland';
|
||||
$lang['menu_usa'] = 'USA';
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['notes_menu_notes'] = 'Бележки';
|
||||
$lang['notes_edit_note'] = 'Редактиране на бележката';
|
||||
$lang['notes_your_notes'] = 'Вашите бележки';
|
||||
|
||||
$lang['notes_welcome'] = "В момента нямате бележки, това е фантастичен начин за съхранение на данни като настройки на ATU, маяци и общи бележки за станции и е по-добре от хартия, тъй като не можете да ги загубите!";
|
||||
|
||||
$lang['notes_create_note'] = 'Създаване на бележка';
|
||||
|
||||
$lang['notes_input_title'] = 'Заглавие';
|
||||
$lang['notes_input_category'] = 'Категория';
|
||||
$lang['notes_input_notes_content'] = 'Съдържание на бележката';
|
||||
$lang['notes_input_btn_save_note'] = 'Запазване на бележката';
|
||||
$lang['notes_input_btn_edit_note'] = 'Редактиране на бележката';
|
||||
$lang['notes_input_btn_delete_note'] = 'Изтриване на бележката';
|
||||
|
||||
$lang['notes_selection_general'] = 'Общи';
|
||||
$lang['notes_selection_antennas'] = 'Антени';
|
||||
$lang['notes_selection_satellites'] = 'Сателити';
|
||||
@@ -1,124 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['options_wavelog_options'] = 'Wavelog Options';
|
||||
$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.';
|
||||
|
||||
$lang['options_appearance'] = 'Appearance';
|
||||
$lang['options_theme'] = 'Theme';
|
||||
$lang['options_saved'] = "Options saved";
|
||||
$lang['options_global_theme_choice_this_is_used_when_users_arent_logged_in'] = 'Global Theme Choice, this is used when users arent logged in.';
|
||||
$lang['options_public_search_bar'] = 'Public Search Bar';
|
||||
$lang['options_this_allows_non_logged_in_users_to_access_the_search_functions'] = 'This allows non logged in users to access the search functions.';
|
||||
$lang['options_dashboard_notification_banner'] = 'Dashboard Notification Banner';
|
||||
$lang['options_this_allows_to_disable_the_global_notification_banner_on_the_dashboard'] = 'This allows to disable the global notification banner on the dashboard.';
|
||||
$lang['options_dashboard_map'] = 'Dashboard Map';
|
||||
$lang['options_this_allows_the_map_on_the_dashboard_to_be_disabled_or_placed_on_the_right'] = 'This allows the map on the dashboard to be disabled or placed on the right.';
|
||||
$lang['options_logbook_map'] = 'Logbook Map';
|
||||
$lang['options_this_allows_to_disable_the_map_in_the_logbook'] = 'This allows to disable the map in the logbook.';
|
||||
$lang['options_public_maps'] = "Public Maps";
|
||||
$lang['options_this_allows_to_disable_all_maps_in_the_public_view'] = "This allows to disable all maps in the public view. This affects the main map and the gridsquares map.";
|
||||
|
||||
$lang['options_radios'] = 'Radios';
|
||||
$lang['options_radio_settings'] = 'Radio Settings';
|
||||
$lang['options_radio_timeout_warning'] = 'Radio Timeout Warning';
|
||||
$lang['options_the_radio_timeout_warning_is_used_on_the_qso_entry_panel_to_alert_you_to_radio_interface_disconnects'] = 'The Radio Timeout Warning is used on the QSO entry panel to alert you to radio interface disconnects.';
|
||||
$lang['options_this_number_is_in_seconds'] = 'This number is in seconds.';
|
||||
$lang['options_radio_timeout_warning_changed_to'] = 'Radio Timeout Warning changed to ';
|
||||
|
||||
$lang['options_email'] = 'Email';
|
||||
$lang['options_outgoing_protocol'] = 'Outgoing Protocol';
|
||||
$lang['options_smtp_encryption'] = 'SMTP Encryption';
|
||||
$lang['options_email_address'] = 'Email Address';
|
||||
$lang['options_email_sender_name'] = 'Email Sender Name';
|
||||
$lang['options_smtp_host'] = 'SMTP Host';
|
||||
$lang['options_smtp_port'] = 'SMTP Port';
|
||||
$lang['options_smtp_username'] = 'SMTP Username';
|
||||
$lang['options_smtp_password'] = 'SMTP Password';
|
||||
$lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
|
||||
$lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '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 <a href="https://github.com/int2001/DXClusterAPI">DXClusterAPI</a> 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: ";
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
// Tiles
|
||||
$lang['qslcard_string_your_are_using'] = 'Вие използвате';
|
||||
$lang['qslcard_string_disk_space'] = 'дисково пространство за съхранение на QSL картички';
|
||||
|
||||
$lang['qslcard_info'] = 'QSL информация';
|
||||
$lang['qslcard_sent'] = 'QSL Card has been sent';
|
||||
$lang['qslcard_sent_bureau'] = 'QSL картичката е изпратена чрез бюрото';
|
||||
$lang['qslcard_sent_direct'] = 'QSL картичката е изпратена директно';
|
||||
$lang['qslcard_sent_electronic'] = 'QSL Card has been sent electronically';
|
||||
$lang['qslcard_sent_manager'] = 'QSL Card has been sent via manager';
|
||||
$lang['qslcard_rcvd'] = 'QSL Card has been received';
|
||||
$lang['qslcard_rcvd_bureau'] = 'QSL Card has been received via the bureau';
|
||||
$lang['qslcard_rcvd_direct'] = 'QSL картичката е получена директно';
|
||||
$lang['qslcard_rcvd_electronic'] = 'QSL Card has been received electronically';
|
||||
$lang['qslcard_rcvd_manager'] = 'QSL Card has been received via manager';
|
||||
|
||||
$lang['qslcard_upload_front'] = 'Качване на лице на QSL картичка';
|
||||
$lang['qslcard_upload_back'] = 'Качване на гръб на QSL картичка';
|
||||
|
||||
$lang['qslcard_upload_button'] = 'Качване на изображения на QSL картичка';
|
||||
|
||||
$lang['qslcard_qslprint_header'] = "Export Requested QSLs for Printing";
|
||||
$lang['qslcard_qslprint_text_line1'] = "Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent.";
|
||||
$lang['qslcard_qslprint_text_line2'] = "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their 'QSL Sent' field.";
|
||||
$lang['qslcard_qslprint_send_method'] = "Send Method";
|
||||
$lang['qslcard_qslprint_mark_as_sent'] = "Mark as sent";
|
||||
$lang['qslcard_qslprint_mark_selected_as_printed'] = "Mark selected QSOs as printed";
|
||||
$lang['qslcard_qslprint_remove_selected_from_queue'] = "Remove selected QSOs from the queue";
|
||||
$lang['qslcard_qslprint_export_csv'] = "Export requested QSLs to CSV-file";
|
||||
$lang['qslcard_qslprint_export_adif'] = "Export requested QSLs to ADIF-file";
|
||||
$lang['qslcard_qslprint_mark_requested_as_sent'] = "Mark requested QSLs as sent";
|
||||
$lang['qslcard_qslprint_no_qsls_found'] = "No QSLs to print were found!";
|
||||
$lang['qslcard_qslprint_add_to_queue'] = "Add to print queue";
|
||||
$lang['qslcard_qslprint_no_additional_qso_found'] = "No additional QSO's were found. That means they are probably already in the queue.";
|
||||
|
||||
@@ -1,103 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
// Tiles
|
||||
$lang['qso_title_qso_map'] = 'Карта на QSO';
|
||||
$lang['qso_title_suggestions'] = 'Предложения';
|
||||
$lang['qso_title_previous_contacts'] = 'Предишни контакти';
|
||||
$lang['qso_title_times_worked_before'] = "times worked before";
|
||||
$lang['qso_title_not_worked_before'] = "Not worked before";
|
||||
$lang['qso_title_image'] = 'Profile Picture';
|
||||
$lang['qso_previous_max_shown'] = "Max. 5 previous contacts are shown";
|
||||
|
||||
// Quicklog on Dashboard
|
||||
$lang['qso_quicklog_enter_callsign'] = 'QUICKLOG Enter Callsign';
|
||||
|
||||
// Input Help Text on the /QSO Display
|
||||
$lang['qso_transmit_power_helptext'] = 'Посочете стойността на мощността във ватове. Въведете само цифри.';
|
||||
|
||||
$lang['qso_sota_ref_helptext'] = 'Например: GM/NS-001.';
|
||||
$lang['qso_wwff_ref_helptext'] = 'Например: DLFF-0069.';
|
||||
$lang['qso_pota_ref_helptext'] = 'Например: PA-0150. Multiple values allowed.';
|
||||
|
||||
$lang['qso_sig_helptext'] = 'Например: GMA';
|
||||
$lang['qso_sig_info_helptext'] = 'Например: DA/NW-357';
|
||||
|
||||
$lang['qso_dok_helptext'] = 'Например: Q03';
|
||||
|
||||
$lang['qso_notes_helptext'] = 'Съдържанието на бележката се използва само в Wavelog и не се експортира в други услуги.';
|
||||
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
|
||||
|
||||
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
|
||||
|
||||
// error text //
|
||||
$lang['qso_error_timeoff_less_timeon'] = "TimeOff is less than TimeOn";
|
||||
|
||||
// Button Text on /qso Display
|
||||
|
||||
$lang['qso_btn_clear_qso'] = 'Clear';
|
||||
$lang['qso_btn_reset_to_default'] = 'Reset to Default';
|
||||
$lang['qso_btn_save_qso'] = 'Запази QSO';
|
||||
$lang['qso_btn_edit_qso'] = 'Редактирай QSO';
|
||||
$lang['qso_delete_warning'] = "Warning! Are you sure you want delete QSO with ";
|
||||
|
||||
// QSO Details
|
||||
|
||||
$lang['qso_details'] = 'Подробности за QSO';
|
||||
|
||||
$lang['fav_add'] = 'Add Band/Mode to Favs';
|
||||
$lang['qso_operator_callsign'] = 'Operator Callsign';
|
||||
|
||||
// Simple FLE (FastLogEntry)
|
||||
|
||||
$lang['qso_simplefle_info'] = "What is that?";
|
||||
$lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)";
|
||||
$lang['qso_simplefle_info_ln2'] = "'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.";
|
||||
$lang['qso_simplefle_info_ln3'] = "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.";
|
||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||
$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 <a href=". site_url('station') . ">Station Location</a>";
|
||||
$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 <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||
|
||||
$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 <a href='https://github.com/wavelog/wavelog/wiki/SimpleFLE' target='_blank'>this article</a> of our Wiki.";
|
||||
|
||||
$lang['qso_simplefle_options'] = 'Options';
|
||||
|
||||
@@ -1,120 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Station Logbooks
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['station_logbooks'] = "Station Logbooks";
|
||||
$lang['station_logbooks_description_header'] = "What are Station Logbooks";
|
||||
$lang['station_logbooks_description_text'] = "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.";
|
||||
$lang['station_logbooks_create'] = "Create Station Logbook";
|
||||
$lang['station_logbooks_status'] = "Status";
|
||||
$lang['station_logbooks_link'] = "Link";
|
||||
$lang['station_logbooks_public_search'] = "Public Search";
|
||||
$lang['station_logbooks_set_active'] = "Set as Active Logbook";
|
||||
$lang['station_logbooks_active_logbook'] = "Active Logbook";
|
||||
$lang['station_logbooks_edit_logbook'] = "Edit Station Logbook"; // 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'] = ' Updated.';
|
||||
$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 <a href='https://zone-check.eu/?m=loc' target='_blank'>click here</a>!";
|
||||
$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 <a target='_blank' href='https://www.iota-world.org/iota-directory/annex-f-short-title-iota-reference-number-list.html'>IOTA World</a> website.";
|
||||
$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the <a target='_blank' href='https://www.sotamaps.org/'>SOTA Maps</a> website.";
|
||||
$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the <a target='_blank' href='https://www.cqgma.org/mvs/'>GMA Map</a> website.";
|
||||
$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the <a target='_blank' href='https://pota.app/#/map/'>POTA Map</a> 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 <a href='https://logbook.qrz.com/logbook' target='_blank'>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 <a href='http://www.hrdlog.net/EditUser.aspx' target='_blank'>HRDLog.net Userprofile page";
|
||||
$lang['station_location_qo100_hint'] = "Create your API key on <a href='https://qo100dx.club' target='_blank'>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';
|
||||
|
||||
|
||||
@@ -1,83 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['statistics_statistics'] = 'Statistics';
|
||||
|
||||
$lang['statistics_explore_the_logbook'] = 'Explore the logbook.';
|
||||
|
||||
$lang['statistics_years'] = 'Years';
|
||||
$lang['statistics_modes'] = 'Mode';
|
||||
$lang['statistics_bands'] = 'Bands';
|
||||
$lang['statistics_qsos'] = 'QSOs';
|
||||
$lang['statistics_unique_callsigns'] = 'Unique callsigns';
|
||||
|
||||
$lang['statistics_total'] = 'Total';
|
||||
|
||||
$lang['statistics_year'] = 'Year';
|
||||
|
||||
$lang['statistics_number_of_qso_worked_each_year'] = "Number of QSOs worked each year";
|
||||
$lang['statistics_number_of_qso_worked'] = "# of QSO's worked";
|
||||
|
||||
/*
|
||||
*
|
||||
* Distances
|
||||
*
|
||||
*/
|
||||
|
||||
$lang['statistics_distances_worked'] = "Distances Worked";
|
||||
$lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> 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)";
|
||||
|
||||
@@ -1,136 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['account_logbook_fields'] = '日志显示内容';
|
||||
$lang['account_column1_text'] = '第 1 列';
|
||||
$lang['account_column2_text'] = '第 2 列';
|
||||
$lang['account_column3_text'] = '第 3 列';
|
||||
$lang['account_column4_text'] = '第 4 列';
|
||||
$lang['account_column5_text'] = '第 5 列(仅日志页面展示)';
|
||||
|
||||
$lang['account_create_user_account'] = '创建账户';
|
||||
$lang['account_edit_account'] = '编辑账户';
|
||||
|
||||
$lang['account_account_information'] = '账户信息';
|
||||
$lang['account_user'] = "用户";
|
||||
$lang['account_word_edited'] = "已编辑";
|
||||
$lang['account_username'] = '用户名';
|
||||
$lang['account_email_address'] = '电子邮件';
|
||||
$lang['account_password'] = '密码';
|
||||
|
||||
$lang['account_roles'] = '角色';
|
||||
$lang['account_user_role'] = '用户角色';
|
||||
$lang['account_word_admin'] = '管理员';
|
||||
|
||||
$lang['account_theme'] = '主题';
|
||||
$lang['account_stylesheet'] = '样式表';
|
||||
|
||||
$lang['account_personal_information'] = '个人信息';
|
||||
$lang['account_first_name'] = '姓';
|
||||
$lang['account_last_name'] = '名';
|
||||
|
||||
$lang['account_hamradio_information'] = "HAM 信息";
|
||||
$lang['account_callsign'] = '呼号';
|
||||
$lang['account_gridsquare'] = '网格坐标';
|
||||
|
||||
$lang['account_wavelog_preferences'] = '偏好';
|
||||
$lang['account_timezone'] = '时区';
|
||||
$lang['account_date_format'] = '日期格式';
|
||||
$lang['account_log_end_time'] = '单独记录 QSO 结束时间';
|
||||
$lang['account_log_end_time_hint'] = '如果想分别记录QSO的开始和结束时间,选择\'是\',若选择\'否\'则QSO开始与结束时间相同';
|
||||
$lang['account_quicklog_feature'] = "快速日志";
|
||||
$lang['account_quicklog_feature_hint'] = "快速日志功能可以使用标题栏中的搜索字段来记录呼号";
|
||||
$lang['account_quicklog_enter'] = "快速日志 - 回车键操作";
|
||||
$lang['account_quicklog_enter_hint'] = "在快速日志字段中按 '回车键' 后应执行的操作";
|
||||
$lang['account_quicklog_enter_log'] = "记录呼号";
|
||||
$lang['account_quicklog_enter_search'] = "查询呼号";
|
||||
$lang['account_measurement_preferences'] = '距离单位选择';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = '选择您登录账户时显示偏好的日期格式';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = '选择距离单位';
|
||||
$lang['account_wavelog_language'] = 'Wavelog 语言';
|
||||
$lang['account_choose_wavelog_language'] = '选择 Wavelog 语言';
|
||||
|
||||
$lang['account_main_menu'] = '主菜单';
|
||||
$lang['account_show_notes_in_the_main_menu'] = '在主菜单显示便签';
|
||||
|
||||
$lang['account_gridsquare_and_location_autocomplete'] = '自动填写网格坐标和位置';
|
||||
$lang['account_location_auto_lookup'] = '自动查找位置';
|
||||
$lang['account_if_set_gridsquare_is_fetched_based_on_location_name'] = '如果开启本选项,将根据位置名称获取网格坐标';
|
||||
$lang['account_sota_auto_lookup_gridsquare_and_name_for_summit'] = '根据 SOTA 编号自动查找网格坐标和山峰';
|
||||
$lang['account_wwff_auto_lookup_gridsquare_and_name_for_reference'] = '根据 WWFF 编号自动查找网格坐标和保护区';
|
||||
$lang['account_pota_auto_lookup_gridsquare_and_name_for_park'] = '根据 POTA 编号自动查找网格坐标和公园';
|
||||
$lang['account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'] = '开启此项设置,将会通过 API 获取名称和网格坐标,并填写位置和网格定位';
|
||||
|
||||
$lang['account_previous_qsl_type'] = '上一个 QSL 方式';
|
||||
$lang['account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'] = '选择要在上一个 QSO 部分中显示的 QSL 方式';
|
||||
|
||||
$lang['account_qrzcom_hamqthcom_images'] = 'qrz.com/hamqth.com 图片';
|
||||
$lang['account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'] = '在日志QSO部分中显示由 qrz.com 中 hamqth.com 配置文件所获得的对方个人资料图片';
|
||||
$lang['account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'] = '请在 general_config.php 中设置 qrz.com/hamqth.com 的凭据';
|
||||
|
||||
$lang['account_amsat_status_upload'] = '上传 AMSAT';
|
||||
$lang['account_upload_status_of_sat_qsos_to'] = '上传卫星状态到';
|
||||
|
||||
$lang['account_logbook_of_the_world'] = 'Logbook of the World(LoTW)';
|
||||
$lang['account_logbook_of_the_world_lotw_username'] = 'Logbook of The World (LoTW) 用户名';
|
||||
$lang['account_logbook_of_the_world_lotw_password'] = 'Logbook of The World (LoTW) 密码';
|
||||
|
||||
$lang['account_clublog'] = 'Clublog';
|
||||
$lang['account_clublog_email_callsign'] = 'Clublog 邮件地址/呼号';
|
||||
$lang['account_clublog_password'] = 'Clublog 密码';
|
||||
$lang['account_the_email_or_callsign_you_use_to_login_to_club_log'] = '登录Clublog的电子邮件或呼号';
|
||||
|
||||
$lang['account_eqsl'] = 'eQSL';
|
||||
$lang['account_eqslcc_username'] = 'eQSL.cc 用户名';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc 密码';
|
||||
|
||||
$lang['account_save_account_changes'] = '保存账户更改';
|
||||
$lang['account_create_account'] = '创建账户';
|
||||
|
||||
$lang['account_delete_user_account'] = '删除用户账户';
|
||||
$lang['account_are_you_sure_you_want_to_delete_the_user_account'] = '是否删除此用户账户';
|
||||
$lang['account_yes_delete_this_user'] = '是,删除';
|
||||
$lang['account_no_do_not_delete_this_user'] = '不,保留';
|
||||
|
||||
$lang['account_forgot_password'] = '忘记密码';
|
||||
$lang['account_you_can_reset_your_password_here'] = '在此处重置密码';
|
||||
$lang['account_reset_password'] = '重置密码';
|
||||
$lang['account_the_email_field_is_required'] = '电子邮件(必填)';
|
||||
$lang['account_confirm_password'] = '确认密码';
|
||||
|
||||
$lang['account_forgot_your_password'] = '忘记密码?';
|
||||
|
||||
$lang['account_login'] = '登录';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodon 服务器';
|
||||
$lang['account_user_mastodon'] = 'Mastodon 地址';
|
||||
$lang['account_user_mastodon_hint'] = "Mastodon 服务器的主 URL 地址,例如 <a href='https://radiosocial.de/' target='_blank'>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 的支持是实验性的,请在使用前先阅读 <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a>";
|
||||
$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'] = "在 <a href='https://hams.at/users/settings' target='_blank'>https://hams.at/users/settings</a> 查看个人信息。";
|
||||
$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 页面显示(非通用页面)。";
|
||||
@@ -1,139 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_import'] = "ADIF 导入";
|
||||
$lang['adif_export'] = "ADIF 导出";
|
||||
// $lang['lotw_title'] --> 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 文件中的 <b>所有</b> 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'] = " <b>重复的QSO已导入</b>";
|
||||
$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 无法匹配";
|
||||
@@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['admin_user_line1'] = 'Wavelog 至少需要配置一个用户才能运行。';
|
||||
$lang['admin_user_line2'] = '用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和访问 Wavelog API。';
|
||||
$lang['admin_user_line3'] = '页面右上方显示当前登录的用户。';
|
||||
$lang['admin_user_line4'] = "通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全局设定中的邮件设置配置正确";
|
||||
|
||||
$lang['admin_user_list'] = '用户列表';
|
||||
|
||||
$lang['admin_user'] = '用户名';
|
||||
$lang['admin_email'] = '电子邮件';
|
||||
$lang['admin_type'] = '用户类型';
|
||||
$lang['admin_last_seen'] = "上次出现";
|
||||
$lang['admin_last_qso'] = "上个 QSO:";
|
||||
$lang['admin_no_qso_in_log'] = "日志为空";
|
||||
$lang['admin_refresh_list'] = "刷新列表";
|
||||
$lang['admin_options'] = '设置';
|
||||
|
||||
$lang['admin_station_logbooks'] = '日志簿';
|
||||
$lang['admin_station_locations'] = '地点';
|
||||
|
||||
$lang['admin_create_user'] = '创建用户';
|
||||
$lang['admin_delete'] = '删除用户';
|
||||
$lang['admin_remove'] = "删除";
|
||||
$lang['admin_edit'] = '编辑用户';
|
||||
$lang['admin_create'] = '创建';
|
||||
$lang['admin_update'] = '更新';
|
||||
$lang['admin_copy'] = '复制';
|
||||
$lang['admin_save'] = '保存';
|
||||
$lang['admin_close'] = '关闭';
|
||||
$lang['admin_clear'] = "清除";
|
||||
$lang['admin_user_accounts'] = '用户账户';
|
||||
$lang['admin_danger'] = '危险';
|
||||
$lang['admin_experimental'] = "实验性功能";
|
||||
$lang['admin_password_reset'] = "重置密码";
|
||||
|
||||
$lang['admin_email_settings_incorrect'] = "邮件设定出现错误";
|
||||
$lang['admin_password_reset_processed'] = "密码重置邮件已发送";
|
||||
$lang['admin_confirm_pwd_reset'] = "确认发送重置密码链接?";
|
||||
|
||||
|
||||
// Contest Menu
|
||||
// 将Conetest统一翻译为竞赛,去除中英文混用
|
||||
$lang['admin_contest_menu_line_1'] = '使用竞赛列表,您可以控制在比赛中记录 QSO 时显示哪些竞赛';
|
||||
$lang['admin_contest_menu_line_2'] = '启用的竞赛将显示在竞赛名称下拉列表中,而停用的竞赛将被隐藏且无法选择';
|
||||
$lang['admin_contest_menu_name'] = '名称';
|
||||
$lang['admin_contest_menu_adif'] = 'ADIF 名称';
|
||||
$lang['admin_contest_menu_active'] = '启用';
|
||||
$lang['admin_contest_menu_n_active'] = '停用';
|
||||
$lang['admin_contest_menu_activate'] = '启用';
|
||||
$lang['admin_contest_menu_deactivate'] = '停用';
|
||||
|
||||
$lang['admin_contest_add_contest'] = '添加竞赛';
|
||||
$lang["admin_contest_create"] = "创建";
|
||||
$lang['admin_contest_all_active'] = '启用所有';
|
||||
$lang['admin_contest_all_deactive'] = '停用所有';
|
||||
|
||||
$lang['admin_contest_name_adif'] = '竞赛 ADIF 名称';
|
||||
$lang['admin_contest_name_of_contest'] = '竞赛 名称';
|
||||
$lang['admin_contest_name_of_adif'] = '竞赛 在 ADIF 中的名称';
|
||||
$lang['admin_contest_edit_active_hint'] = '如果要列在竞赛列表中,则设置为启用';
|
||||
$lang['admin_contest_edit_update_contest'] = '更新竞赛';
|
||||
$lang['admin_contest_deletion_warning'] = '注意!您确定要删除以下竞赛吗:';
|
||||
$lang['admin_contest_active_all_warning'] = '注意!您确定要启用所有竞赛吗?';
|
||||
$lang['admin_contest_deactive_all_warning'] = '注意!您确定要停用所有竞赛吗?';
|
||||
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['awards_info_button'] = "奖状详情";
|
||||
$lang['awards_show_worked'] = "显示已通联";
|
||||
$lang['awards_show_confirmed'] = "显示已确认";
|
||||
$lang['awards_show_not_worked'] = "显示未通联";
|
||||
$lang['awards_qsl_type'] = "显示 QSL 分类下的 QSO";
|
||||
$lang['awards_show_cq_map'] = "查看CQ分区地图";
|
||||
$lang['awards_summary'] = "概览";
|
||||
$lang['awards_total'] = "总计";
|
||||
$lang['awards_total_worked'] = "共通联";
|
||||
$lang['awards_total_confirmed'] = "共确认";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "CQ 杂志 WAZ 奖状";
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
$lang['awards_show_itu_map'] = "显示 ITU 分区地图";
|
||||
$lang['awards_show_jcc_map'] = "显示 JCC 地图";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
CQ -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_cq_description_ln1'] = "CQ 杂志 WAZ 奖状";
|
||||
$lang['awards_cq_description_ln2'] = "CQ 杂志来自美国,是世界上最受欢迎的业余无线电杂志之一 该杂志于 1945 年 1 月首次出版,重点关注业余无线电的奖项和实用方面";
|
||||
$lang['awards_cq_description_ln3'] = "WAZ 奖代表“Worked All Zones”,需要与所有 40 个 CQ 分区进行QSO并提供相应的确认";
|
||||
$lang['awards_cq_description_ln4'] = "您可以在<a href='https://cq-amateur-radio.com/cq_awards/cq_waz_awards/index_cq_waz_award.html' target='_blank'>CQ杂志</a>网站上,或查看童效勇和陈方老师编纂的《业余无线电通信》了解更多相关信息";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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'] = "此信息来自于<a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/districtsdoks/' target='_blank'>DARC 网站</ a>. 有关 DOK 奖项及其规则的信息,请参见 <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/award-check/' target=' _blank'>此处</a>";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 编写的一篇文章,标题为<a href='http://www.arrl.org/desoto' target='_blank'>“如何计算通联过的国家/地区, 新的 DX 评分系统'</a>";
|
||||
$lang['awards_dxcc_description_ln3'] = "您可以在 <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL 网站</a>上找到有关 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'] = "如需了解更多信息,您可以访问此链接:<a href='https://www.arrl.org/ffma' target='_blank'>https://www.arrl.org/ffma</a>";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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'] = "如了解更多信息可在:<a href='https://www.uska.ch/contest/uska-diplome/' target='_blank'>https://www.uska.ch/contest/uska-diplome/</a> 查看";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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'] = "您还可以在 <a href='https://www.iota-world.org/' target='_blank'>IOTA WORLD 网站</a>上找到此信息";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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'] = "有关可用奖项和类别的更多信息,请访问<a href='https://parksontheair.com/pota-awards/' target='_blank'>Parks on the Air® 网站</a>(译者注:目前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'] = "如需了解更多信息,请访问:<a href='https://www.sota.org.uk/' target='_blank'>https://www.sota.org.uk/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
US Counties -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_counties_description_ln1'] = "US County 奖状";
|
||||
$lang['awards_counties_description_ln2'] = "美国县奖 (USA-CA) 由 CQ 杂志赞助,颁发给与指定数量的美国县进行确认的双向无线电联络,其规则和条件可参见 <a href='https://cq -amateur-radio.com/cq_awards/cq_usa_ca_awards/cq_usa_ca_awards.html' target='_blank'>此处</a>";
|
||||
$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'] = "来自<a href='https://www.amsat.org/gridmaster/' target='_blank'>网站</a>的官方信息:必须通过业余卫星与每个网格建立双向通信 没有最低信号报告要求 联系必须在同一地点或两个地点相距不超过 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'] = "官方信息和规则可以在本文档中找到:<a href='https://www.amsat.org/gridmaster/' target='_blank'>点击此处</a>";
|
||||
$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 奖的所有信息和规则均可在<a href='https://www.arrl.org/was' target='_blank'>此处</a>找到";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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'] = "如需了解更多信息,请访问:<a href='https://wwff.co/awards/' target='_blank'>https://wwff.co/awards/</a>";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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'] = "请访问 <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a> 获得更多信息";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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'] = "更多信息可在:<a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a> 查看";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 Radio)鼓励业余无线电操作员通联英国所有网格";
|
||||
$lang['awards_wab_description_ln3'] = "达成既定数量的通联网格可申请,可在如下链接查看";
|
||||
$lang['awards_wab_description_ln4'] = "更多信息请查看 <a href='https://wab.intermip.net/default.php' target='_blank'>https://wab.intermip.net/default.php</a>";
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
ITU
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_itu_description_ln1'] = "ITU 分区";
|
||||
$lang['awards_itu_description_ln2'] = "通联全球 75 个 ITU 分区中的 70 个可申请该奖";
|
||||
$lang['awards_itu_description_ln3'] = "更多信息请查看 <a href='https://rsgb.org/main/files/2019/01/Worked_ITU_Zones_Award_Form_2019.pdf' target='_blank'>RSGB</a>";
|
||||
@@ -1,33 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['contesting_page_title'] = '竞赛日志';
|
||||
$lang['contesting_button_reset_contest_session'] = '重置竞赛';
|
||||
$lang['contesting_operator_callsign'] = '操作员呼号';
|
||||
|
||||
$lang['contesting_exchange_type'] = '信息交换类型';
|
||||
$lang['contesting_exchange_type_serial'] = '序列编号';
|
||||
$lang['contesting_exchange_type_none'] = '无';
|
||||
$lang['contesting_exchange_type_exchange'] = '交换信息';
|
||||
$lang['contesting_exchange_type_gridsquare'] = '网格座标';
|
||||
$lang['contesting_exchange_type_other'] = '其他';
|
||||
$lang['contesting_exchange_type_serial_exchange'] = '序列编号 + 交换信息';
|
||||
$lang['contesting_exchange_type_serial_gridsquare'] = '序列编号 + 网格座标';
|
||||
$lang['contesting_exchange_serial_s'] = '序列编号 (S)';
|
||||
$lang['contesting_exchange_serial_r'] = '序列编号 (R)';
|
||||
$lang['contesting_exchange_gridsquare_s'] = '网格座标 (S)';
|
||||
$lang['contesting_exchange_gridsquare_r'] = '网格座标 (R)';
|
||||
|
||||
$lang['contesting_contest_name'] = '竞赛名称';
|
||||
|
||||
$lang['contesting_btn_reset_qso'] = '重置 QSO';
|
||||
$lang['contesting_btn_save_qso'] = '保存 QSO';
|
||||
|
||||
$lang['contesting_title_callsign_suggestions'] = '呼号建议';
|
||||
$lang['contesting_title_contest_logbook'] = '竞赛日志簿';
|
||||
|
||||
$lang['contesting_copy_exch_to'] = 'Copy received exchange to';
|
||||
$lang['contesting_copy_exch_hint'] = 'Exchange is only copied if it is matching rules for the selected field!';
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['eqsl_short'] = 'eQSL';
|
||||
@@ -1,76 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
KML Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_kml_header'] = "KML 导出";
|
||||
$lang['export_kml_description'] = "将日志导出为 KML 文件以在 Google 地球中使用";
|
||||
$lang['export_kml_grisquare_warning'] = "只有有网格座标的 QSO 才会被导出";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DX Atlas Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_dxatlas_header'] = "DX Atlas 导出";
|
||||
$lang['export_dxatlas_description'] = "导出您的日志以在 DX Atlas 中使用以显示已工作/已确认的网格座标";
|
||||
$lang['export_dxatlas_gridsquare_warning'] = "只有有网格座标的 QSO 才会被导出!";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
SOTA Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_sota_header'] = "SOTA CSV 导出";
|
||||
$lang['export_sota_description'] = "导出您的日志以进行 SOTA 上传";
|
||||
$lang['export_sota_info_warning'] = "只有具有 SOTA 信息的 QSO 才会被导出!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo 导出";
|
||||
$lang['export_cabrillo_description'] = "将比赛导出到 Cabrillo 日志";
|
||||
$lang['export_cabrillo_select_station'] = "选择台站位置";
|
||||
$lang['export_cabrillo_proceed'] = "继续";
|
||||
$lang['export_cabrillo_select_year'] = "选择年份";
|
||||
$lang['export_cabrillo_select_contest'] = "选择比赛";
|
||||
$lang['export_cabrillo_select_date_range'] = "选择日期区间";
|
||||
$lang['export_cabrillo_club'] = "俱乐部";
|
||||
$lang['export_cabrillo_cat_operator'] = "操作员类型(Operator)";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "单操作员(Single Operator)";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "多操作员(Multi Operator)";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "检查日志(Checklog)";
|
||||
$lang['export_cabrillo_cat_assisted'] = "辅助类型(Assisted)";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "无辅助(Not Assisted)";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "有辅助(Assisted)";
|
||||
$lang['export_cabrillo_cat_band'] = "波段类型(Band)";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND 和 VHF-FM-ONLY (仅限 ARRL VHF 竞赛)";
|
||||
$lang['export_cabrillo_cat_mode'] = "模式类型(Mode)";
|
||||
$lang['export_cabrillo_cat_power'] = "功率类型(Power)";
|
||||
$lang['export_cabrillo_cat_station'] = "台站类型(Station)";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "发射机类型(Transmitter)";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Overlay类型";
|
||||
$lang['export_cabrillo_operators'] = "操作员";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox(附加信息)";
|
||||
$lang['export_cabrillo_address'] = "地址";
|
||||
$lang['export_cabrillo_address_city'] = "城市";
|
||||
$lang['export_cabrillo_address_state_province'] = "州/省";
|
||||
$lang['export_cabrillo_address_postalcode'] = "邮政编码";
|
||||
$lang['export_cabrillo_address_country'] = "国家";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "在日志中未发现任何竞赛";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "没有找到该台站位置的竞赛";
|
||||
|
||||
$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See <a href=\"https://toplist.darc.de\" target=\"_new\">https://toplist.darc.de</a>)";
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = '快速过滤';
|
||||
$lang['filter_qsl_filters'] = '过滤 QSL';
|
||||
$lang['filter_filters'] = '过滤器';
|
||||
$lang['filter_actions'] = '操作';
|
||||
$lang['filter_results'] = '每页结果数';
|
||||
$lang['filter_search'] = '搜索';
|
||||
$lang['filter_dupes'] = "重复 QSO";
|
||||
$lang['filter_map'] = '地图';
|
||||
$lang['filter_options'] = '显示列';
|
||||
$lang['filter_reset'] = '重置筛选条件';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = '用选中行的条件进行快速搜索:';
|
||||
$lang['filter_search_callsign'] = '搜索呼号';
|
||||
$lang['filter_search_dxcc'] = '搜索 DXCC';
|
||||
$lang['filter_search_state'] = '搜索 州/省';
|
||||
$lang['filter_search_gridsquare'] = '搜索 网格';
|
||||
$lang['filter_search_cq_zone'] = '搜索 CQ 分区';
|
||||
$lang['filter_search_itu_zone'] = '搜索 ITU 分区';
|
||||
$lang['filter_search_mode'] = '搜索 模式';
|
||||
$lang['filter_search_band'] = '搜索 频段';
|
||||
$lang['filter_search_iota'] = '搜索 IOTA';
|
||||
$lang['filter_search_sota'] = '搜索 SOTA';
|
||||
$lang['filter_search_wwff'] = '搜索 WWFF';
|
||||
$lang['filter_search_pota'] = '搜索 POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL 发送';
|
||||
$lang['filter_qsl_recv'] = 'QSL 接收';
|
||||
$lang['filter_qsl_sent_method'] = 'QSL 发送方式';
|
||||
$lang['filter_qsl_recv_method'] = 'QSL 接收方式';
|
||||
$lang['filter_lotw_sent'] = 'LoTW 发送';
|
||||
$lang['filter_lotw_recv'] = 'LoTW 接收';
|
||||
$lang['filter_eqsl_sent'] = 'eQSL 发送';
|
||||
$lang['filter_eqsl_recv'] = 'eQSL 接收';
|
||||
$lang['filter_qsl_via'] = 'QSL 通过';
|
||||
$lang['filter_qsl_images'] = 'QSL 图片';
|
||||
|
||||
// $lang['general_word_all'] --> 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'] = '关闭';
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['error_no_active_station_profile'] = '注意:你需要设置一个活动的电台站地址';
|
||||
|
||||
$lang['notice_turn_the_radio_on'] = '你今天还没进行 QSO,是时候打开你的电台开始通联了!';
|
||||
|
||||
$lang['general_word_important'] = '重要';
|
||||
$lang['general_word_warning'] = '注意';
|
||||
$lang['general_word_danger'] = '警告';
|
||||
$lang['general_word_maintenance'] = '维护';
|
||||
$lang['general_word_info'] = '消息';
|
||||
$lang['general_word_choose_file'] = '选择文件';
|
||||
$lang['general_word_please_wait'] = "请稍等…";
|
||||
$lang['general_word_next'] = '后一项';
|
||||
$lang['general_word_previous'] = '前一项';
|
||||
$lang['general_word_cancel'] = "取消";
|
||||
$lang['general_word_ok'] = "确认";
|
||||
$lang['general_word_show'] = "显示";
|
||||
$lang['general_word_attention'] = "注意";
|
||||
$lang['general_word_message'] = "消息";
|
||||
$lang['general_word_enabled'] = "已启用";
|
||||
$lang['general_word_disabled'] = "已禁用";
|
||||
$lang['general_word_export'] = "导出";
|
||||
$lang['general_word_import'] = "导入";
|
||||
$lang['general_word_count'] = "数量";
|
||||
$lang['general_word_filtering_on'] = "筛选打开";
|
||||
$lang['general_word_not_display'] = "不显示";
|
||||
$lang['general_word_icon'] = "图标";
|
||||
$lang['general_word_never'] = "从不";
|
||||
$lang['general_word_active'] = "启用";
|
||||
$lang['general_word_inactive'] = "关闭";
|
||||
|
||||
$lang['general_word_date'] = '日期';
|
||||
$lang['general_word_startdate'] = "开始时间";
|
||||
$lang['general_word_enddate'] = "结束时间";
|
||||
$lang['general_word_time'] = '时间';
|
||||
$lang['general_word_time_on'] = '打开时间';
|
||||
$lang['general_word_time_off'] = '关闭时间';
|
||||
$lang['general_word_datetime'] = '日期/时间';
|
||||
$lang['general_word_none'] = '无';
|
||||
$lang['general_word_name'] = '名称';
|
||||
$lang['general_word_location'] = '位置';
|
||||
$lang['general_word_comment'] = '备注';
|
||||
$lang['general_word_general'] = '通用';
|
||||
$lang['general_word_satellite'] = '卫星';
|
||||
$lang['general_word_orbit'] = '环绕';
|
||||
$lang['general_word_satellite_short'] = '卫星';
|
||||
$lang['general_word_notes'] = '笔记';
|
||||
$lang['general_word_country'] = 'DXCC 实体';
|
||||
$lang['general_word_city'] = '城市';
|
||||
$lang['general_word_age'] = 'Age';
|
||||
|
||||
$lang['general_word_total'] = '总计';
|
||||
$lang['general_word_year'] = '年';
|
||||
$lang['general_word_month'] = '月';
|
||||
$lang['general_word_day'] = "日";
|
||||
$lang['general_word_days'] = "天";
|
||||
$lang['general_word_period'] = "周期";
|
||||
$lang['general_word_yearly'] = "每年";
|
||||
$lang['general_word_monthly'] = "每月";
|
||||
|
||||
$lang['general_word_colors'] = "颜色";
|
||||
$lang['general_word_light'] = "浅色/高光";
|
||||
$lang['general_word_worked'] = '已通联';
|
||||
$lang['general_word_worked_not_confirmed'] = "已通联未确认";
|
||||
$lang['general_word_not_worked'] = "未通联";
|
||||
$lang['general_word_confirmed'] = '已确认';
|
||||
$lang['general_word_not_confirmed'] = "未确认";
|
||||
$lang['general_word_confirmation'] = "确认";
|
||||
$lang['general_word_needed'] = '待通联';
|
||||
|
||||
$lang['general_word_all'] = '所有';
|
||||
$lang['general_word_no'] = '否';
|
||||
$lang['general_word_yes'] = '是';
|
||||
$lang['general_word_method'] = '方法';
|
||||
|
||||
$lang['general_word_sent'] = '已发送';
|
||||
$lang['general_word_received'] = '已收到';
|
||||
$lang['general_word_requested'] = '已请求';
|
||||
$lang['general_word_queued'] = '已排队';
|
||||
$lang['general_word_table'] = "Table";
|
||||
$lang['general_word_invalid_ignore'] = '无效(忽略)';
|
||||
$lang['general_word_qslcard'] = 'QSL 卡片';
|
||||
$lang['general_word_qslcard_management'] = 'QSL 管理';
|
||||
$lang['general_word_qslcards'] = 'QSL 卡片';
|
||||
$lang['general_word_qslcard_direct'] = '直邮';
|
||||
$lang['general_word_qslcard_bureau'] = '卡片局';
|
||||
$lang['general_word_qslcard_electronic'] = '电子';
|
||||
$lang['general_word_qslcard_manager'] = '管理员';
|
||||
$lang['general_word_qslcard_via'] = '通过';
|
||||
$lang['general_word_eqslcard'] = '电子 QSL 卡片';
|
||||
$lang['general_word_eqslcards'] = 'eQSL 卡片';
|
||||
$lang['general_word_lotw'] = 'Logbook of the World(LoTW)';
|
||||
$lang['general_word_lotw_short'] = 'LoTW';
|
||||
|
||||
$lang['general_word_details'] = '详细';
|
||||
$lang['general_word_qso_data'] = 'QSO 数据';
|
||||
|
||||
$lang['general_edit_qso'] = '编辑 QSO';
|
||||
$lang['general_mark_qsl_rx_bureau'] = '标记 已收到卡片(卡片局)';
|
||||
$lang['general_mark_qsl_rx_direct'] = '标记 已收到卡片(直邮)';
|
||||
$lang['general_mark_qsl_rx_electronic'] = '标记 已收到卡片(电子)';
|
||||
$lang['general_mark_qsl_tx_bureau'] = '标记 已收到卡片(卡片局)';
|
||||
$lang['general_mark_qsl_tx_direct'] = '标记 已收到卡片(直邮)';
|
||||
$lang['general_mark_qsl_requested'] = '标记 已请求卡片';
|
||||
$lang['general_mark_qsl_requested_bureau'] = '标记 已请求卡片(卡片局)';
|
||||
$lang['general_mark_qsl_requested_direct'] = '标记 已请求卡片(直邮)';
|
||||
$lang['general_mark_qsl_not_required'] = '标记 不需要卡片';
|
||||
|
||||
$lang['general_delete_qso'] = '删除 QSO';
|
||||
$lang['general_more_qso'] = '更多 QSO';
|
||||
|
||||
$lang['general_lookup_qrz'] = '在 QRZ.com 上查询';
|
||||
$lang['general_lookup_hamqth'] = '在 HamQTH 上查询';
|
||||
|
||||
$lang['general_total_distance'] = '总计距离';
|
||||
|
||||
// PHP Upload Warning
|
||||
$lang['gen_max_file_upload_size'] = '最大上传文件大小是';
|
||||
|
||||
// Wavelog Terms
|
||||
$lang['wavelog_station_profile'] = '电台站地址';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
$lang['gen_hamradio_qso'] = 'QSO';
|
||||
$lang['gen_hamradio_station'] = '电台站';
|
||||
|
||||
$lang['gen_hamradio_call'] = '呼号';
|
||||
$lang['gen_hamradio_callsign'] = '呼号';
|
||||
$lang['gen_hamradio_prefix'] = "前缀";
|
||||
$lang['gen_hamradio_suffix'] = "后缀";
|
||||
$lang['gen_hamradio_mode'] = '模式';
|
||||
$lang['gen_hamradio_ant_az'] = '天线方位';
|
||||
$lang['gen_hamradio_ant_el'] = '天线仰角';
|
||||
$lang['gen_hamradio_de'] = '本台呼号(De)';
|
||||
$lang['gen_hamradio_dx'] = '对方呼号(Dx)';
|
||||
$lang['gen_hamradio_rst_sent'] = '信号报告(发送)';
|
||||
$lang['gen_hamradio_rst_rcvd'] = '信号报告(接收)';
|
||||
$lang['gen_hamradio_band'] = '频段';
|
||||
$lang['gen_hamradio_bandgroup'] = "波段";
|
||||
$lang['gen_hamradio_band_rx'] = '频段(接收)';
|
||||
$lang['gen_hamradio_frequency'] = '频率';
|
||||
$lang['gen_hamradio_frequency_rx'] = '频率(接收)';
|
||||
$lang['gen_hamradio_radio'] = '电台';
|
||||
$lang['gen_hamradio_rsts'] = '信号报告(发)';
|
||||
$lang['gen_hamradio_rstr'] = '信号报告(收)';
|
||||
$lang['gen_hamradio_refs'] = '对方网格';
|
||||
$lang['gen_hamradio_myrefs'] = '电台网格';
|
||||
$lang['gen_hamradio_exchange_sent_short'] = '信号交换(发)';
|
||||
$lang['gen_hamradio_exchange_rcvd_short'] = '信号交换(收)';
|
||||
$lang['gen_hamradio_qsl'] = 'QSL';
|
||||
$lang['gen_hamradio_qsltype'] = "QSL 类型";
|
||||
$lang['gen_hamradio_qslvia'] = 'QSL via';
|
||||
$lang['gen_hamradio_qslmsg'] = 'QSL 信息';
|
||||
$lang['gen_hamradio_locator'] = '定位地图';
|
||||
$lang['gen_hamradio_transmit_power'] = '发射功率(W)';
|
||||
$lang['gen_hamradio_receive_power'] = 'RX Power(W)';
|
||||
$lang['gen_hamradio_propagation_mode'] = '传播模式';
|
||||
|
||||
$lang['gen_hamradio_satellite_name'] = '卫星名称';
|
||||
$lang['gen_hamradio_satellite_mode'] = '卫星模式';
|
||||
|
||||
$lang['gen_hamradio_logbook'] = '日志簿';
|
||||
$lang['gen_hamradio_active_logbook'] = 'Active Logbook';
|
||||
$lang['gen_hamradio_active_logbook_hint'] = "显示该日志本下全部 QSO";
|
||||
$lang['gen_hamradio_award'] = "奖项";
|
||||
|
||||
$lang['gen_hamradio_zones'] = '分区';
|
||||
$lang['gen_hamradio_cq_zone'] = 'CQ 分区';
|
||||
$lang['gen_hamradio_itu_zone'] = 'ITU 分区';
|
||||
$lang['gen_hamradio_dxcc'] = 'DXCC实体';
|
||||
$lang['gen_hamradio_deleted_dxcc'] = '删除 DXCC 实体';
|
||||
$lang['gen_hamradio_continent'] = '大陆';
|
||||
$lang['gen_hamradio_usa_state'] = '州(美国)';
|
||||
$lang['gen_hamradio_county_reference'] = '县(美国)';
|
||||
$lang['gen_hamradio_iota_reference'] = 'IOTA 编号';
|
||||
$lang['gen_hamradio_sota_reference'] = 'SOTA 编号';
|
||||
$lang['gen_hamradio_wwff_reference'] = 'WWFF 编号';
|
||||
$lang['gen_hamradio_pota_reference'] = 'POTA 编号';
|
||||
$lang['gen_hamradio_dok'] = 'DOK';
|
||||
$lang['gen_hamradio_state'] = '州';
|
||||
$lang['gen_hamradio_iota'] = 'IOTA';
|
||||
$lang['gen_hamradio_sota'] = 'SOTA';
|
||||
$lang['gen_hamradio_wwff'] = 'WWFF';
|
||||
$lang['gen_hamradio_pota'] = 'POTA';
|
||||
$lang['gen_hamradio_gridsquare'] = '网格';
|
||||
$lang['gen_hamradio_get_gridsquare'] = '获取网格座标';
|
||||
$lang['gen_hamradio_gridsquare_show'] = "显示定位地图";
|
||||
$lang['gen_hamradio_latitude'] = "纬度";
|
||||
$lang['gen_hamradio_longitude'] = "经度";
|
||||
$lang['gen_hamradio_bearing'] = "方位角";
|
||||
$lang['gen_hamradio_distance'] = '距离';
|
||||
$lang['gen_hamradio_operator'] = '操作员';
|
||||
|
||||
$lang['gen_hamradio_sig'] = 'Sig';
|
||||
$lang['gen_hamradio_sig_info'] = 'Sig 属性';
|
||||
|
||||
// Find your CQ/ITU Zone
|
||||
$lang['gen_find_zone_cq_part1'] = "如果您不知道自己的 CQ 分区";
|
||||
$lang['gen_find_zone_itu_part1'] = "如果您不知道自己的 ITU 分区";
|
||||
$lang['gen_find_zone_part2'] = "点击此处";
|
||||
$lang['gen_find_zone_part3'] = "来查询";
|
||||
|
||||
// Dashboard Words
|
||||
$lang['dashboard_you_have_had'] = '今天你有';
|
||||
$lang['dashboard_qsos_today'] = '个 QSO!';
|
||||
$lang['dashboard_qso_breakdown'] = 'QSO 分析';
|
||||
$lang['dashboard_countries_breakdown'] = 'DXCC 实体分析';
|
||||
$lang['gen_to_date'] = 'To date';
|
||||
|
||||
$lang['gen_from_date'] = '起始日期';
|
||||
|
||||
$lang['gen_this_qso_was_confirmed_on'] = '该 QSO 确认于';
|
||||
|
||||
$lang['error_no_logbook_found'] = '没有找到日志本。您需要在电台站日志下添加一个日志本! 在这里添加:';
|
||||
|
||||
$lang['copy_to_clipboard'] = '复制到剪贴板';
|
||||
|
||||
$lang['africa'] = '非洲';
|
||||
$lang['antarctica'] = '南极洲';
|
||||
$lang['asia'] = '亚洲';
|
||||
$lang['europe'] = '欧洲';
|
||||
$lang['northamerica'] = '北美洲';
|
||||
$lang['oceania'] = '大洋洲';
|
||||
$lang['southamerica'] = '南美洲';
|
||||
|
||||
$lang['gen_band_selection'] = '波段选择';
|
||||
$lang['general_word_today'] = '今天';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = '您需要升级您的 PHP 版本。 最低版本为 7.4。 你的版本是';
|
||||
$lang['dashboard_country_files_warning'] = '您需要更新国家/地区文件! 请前往<a href="'.site_url('update').'">此处</a>执行此操作!';
|
||||
$lang['dashboard_locations_warning'] = '您没有电台站位置。 前往<a href="'.site_url('stationsetup') .'">此处</a>创建它!';
|
||||
$lang['dashboard_logbooks_warning'] = '你没有电台日志。 请前往<a href="'.site_url('stationsetup') .'">此处</a>创建它!';
|
||||
|
||||
$lang['hams_at_no_activations_found'] = '未找到即将进行的激活。 请稍后再回来查看。';
|
||||
|
||||
$lang['gen_add_to_contest'] = "向竞赛中添加 QSO";
|
||||
$lang['general_word_realtime'] = "实时";
|
||||
$lang['datatables_language'] = "en-GB";
|
||||
@@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['gridsquares_gridsquare_map'] = '网格地图';
|
||||
$lang['gridsquares_activated_gridsquare_map'] = "激活的网格";
|
||||
$lang['gridsquares_gridsquare_activators'] = "网格激活者";
|
||||
|
||||
$lang['gridsquares_confirmed_is_green'] = '已确认的网格是绿色';
|
||||
$lang['gridsquares_worked_but_not_confirmed_is_red'] = '已通联但未确认的网格是红色';
|
||||
$lang['gridsquares_activated_but_not_confirmed_is_red'] = '已激活但未确认的网格是红色';
|
||||
|
||||
$lang['gridsquares_this_map_does_not_include_satellite_internet_or_repeater_qsos'] = '此地图不包括通过卫星,互联网或中继的QSO';
|
||||
|
||||
$lang['gridsquares_grid_squares'] = '网格';
|
||||
$lang['gridsquares_total_count'] = '总数';
|
||||
$lang['gridsquares_orbit'] = "Orbit";
|
||||
|
||||
$lang['gridsquares_minimum_count'] = "最低数量";
|
||||
$lang['gridsquares_show_qsos'] = "显示 QSO";
|
||||
$lang['gridsquares_show_map'] = "显示地图";
|
||||
$lang['gridsquares_band'] = '频率';
|
||||
$lang['gridsquares_mode'] = '模式';
|
||||
$lang['gridsquares_sat'] = '卫星';
|
||||
$lang['gridsquares_confirmation'] = '确认';
|
||||
|
||||
$lang['gridsquares_button_plot'] = '绘制';
|
||||
$lang['gridsquares_button_clear_markers'] = "清除标记";
|
||||
|
||||
$lang['gridsquares_gridsquares'] = '网格';
|
||||
$lang['gridsquares_gridsquares_worked'] = '已通联的网格';
|
||||
$lang['gridsquares_gridsquares_confirmed'] = '已确认的网格';
|
||||
$lang['gridsquares_gridsquares_not_confirmed'] = '未确认的网格';
|
||||
$lang['gridsquares_gridsquares_lotw'] = '在 LoTW 上确认的网格';
|
||||
$lang['gridsquares_gridsquares_paper'] = '通过纸质 QSL 确认的网格';
|
||||
$lang['gridsquares_gridsquares_total_worked'] = '总共工作过的网格';
|
||||
$lang['gridsquares_gridsquares_total_activated'] = '总激活的网格';
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['lotw_short'] = 'LoTW';
|
||||
$lang['lotw_title'] = 'Logbook of the World';
|
||||
$lang['lotw_title_available_cert'] = '可用证书';
|
||||
$lang['lotw_title_information'] = '信息';
|
||||
$lang['lotw_title_upload_p12_cert'] = '上传 LoTW .p12 证书';
|
||||
$lang['lotw_title_export_p12_file_instruction'] = '导出 .p12 文件流程';
|
||||
$lang['lotw_title_adif_import'] = 'ADIF 导入';
|
||||
$lang['lotw_title_adif_import_options'] = '导入选项';
|
||||
|
||||
$lang['lotw_beta_warning'] = '请明确 LoTW 同步处于 BETA 测试阶段, 请查看 wiki 寻求帮助';
|
||||
$lang['lotw_no_certs_uploaded'] = '你需要上传 LoTW p12 证书以使用该功能';
|
||||
|
||||
$lang['lotw_date_created'] = '创建日期';
|
||||
$lang['lotw_date_expires'] = '过期日期';
|
||||
$lang['lotw_qso_start_date'] = 'QSO 起始日期';
|
||||
$lang['lotw_qso_end_date'] = 'QSO 结束日期';
|
||||
$lang['lotw_status'] = '状态';
|
||||
$lang['lotw_options'] = '选项';
|
||||
$lang['lotw_valid'] = '有效';
|
||||
$lang['lotw_expired'] = '过期';
|
||||
$lang['lotw_expiring'] = '即将到期';
|
||||
$lang['lotw_not_synced'] = '未同步';
|
||||
|
||||
$lang['lotw_certificate_dxcc'] = '证书 DXCC';
|
||||
$lang['lotw_certificate_dxcc_help_text'] = '证书的 DXCC 实体例如: Scotland';
|
||||
|
||||
$lang['lotw_input_a_file'] = '上传文件';
|
||||
|
||||
$lang['lotw_upload_exported_adif_file_from_lotw'] = '下载从 LoTW <a href="https://p1k.arrl.org/lotwuser/qsos?qsoscmd=adif" target="_blank">Download Report</a> 中导出的 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'] = '上传目录非可写,请联系本站管理员。';
|
||||
@@ -1,121 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['menu_badge_developer_mode'] = '开发者模式';
|
||||
|
||||
$lang['menu_logbook'] = '日志簿';
|
||||
$lang['menu_overview'] = '概览';
|
||||
$lang['menu_advanced'] = '详细信息';
|
||||
|
||||
$lang['menu_qso'] = 'QSO';
|
||||
$lang['menu_live_qso'] = '添加 QSO(实时)';
|
||||
$lang['menu_post_qso'] = '添加 QSO(手动)';
|
||||
$lang['menu_fast_log_entry'] = "快速记录 QSO";
|
||||
$lang['menu_live_contest_logging'] = '比赛日志(实时)';
|
||||
$lang['menu_post_contest_logging'] = '比赛日志(手动)';
|
||||
$lang['menu_bandmap'] = '波段地图';
|
||||
$lang['menu_view_qsl'] = '浏览 QSL 卡片';
|
||||
$lang['menu_view_eqsl'] = '浏览 eQSL 卡片';
|
||||
|
||||
$lang['menu_notes'] = '笔记';
|
||||
|
||||
$lang['menu_analytics'] = '分析';
|
||||
$lang['menu_statistics'] = '统计';
|
||||
$lang['menu_gridsquares'] = '网格';
|
||||
$lang['menu_gridmap'] = '网格地图';
|
||||
$lang['menu_activated_gridsquares'] = '激活的网格';
|
||||
$lang['menu_gridsquare_activators'] = '网格激活者';
|
||||
$lang['menu_distances_worked'] = '距离';
|
||||
$lang['menu_days_with_qsos'] = '天数';
|
||||
$lang['menu_timeline'] = '时间线';
|
||||
$lang['menu_accumulated_statistics'] = '累积统计';
|
||||
$lang['menu_timeplotter'] = '时间图';
|
||||
$lang['menu_continents'] = '大陆';
|
||||
|
||||
$lang['menu_awards'] = '奖项';
|
||||
$lang['menu_cq'] = 'CQ';
|
||||
$lang['menu_dok'] = 'DOK';
|
||||
$lang['menu_dxcc'] = 'DXCC';
|
||||
$lang['menu_ffma'] = 'Fred Fish Memorial Award';
|
||||
$lang['menu_helvetia'] = "H26";
|
||||
$lang['menu_gridmaster'] = "Gridmaster";
|
||||
$lang['menu_dl_gridmaster'] = 'DL Gridmaster';
|
||||
$lang['menu_lx_gridmaster'] = 'LX Gridmaster';
|
||||
$lang['menu_ja_gridmaster'] = 'JA Gridmaster';
|
||||
$lang['menu_us_gridmaster'] = 'US Gridmaster';
|
||||
$lang['menu_iota'] = 'IOTA';
|
||||
$lang['menu_jcc'] = 'JCC';
|
||||
$lang['menu_pota'] = 'POTA';
|
||||
$lang['menu_rac'] = 'RAC';
|
||||
$lang['menu_sig'] = 'SIG';
|
||||
$lang['menu_sota'] = 'SOTA';
|
||||
$lang['menu_us_counties'] = 'US Counties';
|
||||
$lang['menu_vucc'] = 'VUCC';
|
||||
$lang['menu_waja'] = 'WAJA';
|
||||
$lang['menu_was'] = 'WAS';
|
||||
$lang['menu_wwff'] = 'WWFF';
|
||||
|
||||
$lang['menu_tools'] = "工具";
|
||||
$lang['menu_sat_timers'] = "卫星过境时钟";
|
||||
|
||||
$lang['menu_admin'] = '管理';
|
||||
$lang['menu_user_account'] = '用户账户';
|
||||
$lang['menu_global_options'] = '全局选项';
|
||||
$lang['menu_modes'] = '模式';
|
||||
$lang['menu_contests'] = '比赛';
|
||||
$lang['menu_themes'] = '主题';
|
||||
$lang['menu_backup'] = '备份';
|
||||
$lang['menu_update_country_files'] = '更新国家文件';
|
||||
$lang['menu_debug_information'] = '调试信息';
|
||||
$lang['menu_search_text_quicklog'] = "添加/搜索 呼号";
|
||||
|
||||
$lang['menu_search_text'] = '搜索呼号';
|
||||
$lang['menu_search_button_qicksearch_log'] = "日志";
|
||||
|
||||
$lang['menu_search_button'] = '搜索';
|
||||
$lang['menu_login_button'] = '登录';
|
||||
|
||||
$lang['menu_account'] = '账户';
|
||||
$lang['menu_station_logbooks'] = '电台站日志簿';
|
||||
$lang['menu_station_locations'] = '电台站位置';
|
||||
$lang['menu_select_location'] = "选择电台站位置";
|
||||
$lang['menu_station_setup'] = '设置台站';
|
||||
$lang['menu_bands'] = '波段';
|
||||
$lang['menu_adif_import_export'] = 'ADIF 导入/导出';
|
||||
$lang['menu_other_export'] = "其它导出选项";
|
||||
$lang['menu_kml_export'] = 'KML 导出';
|
||||
$lang['menu_dx_atlas_gridsquare_export'] = 'DX Atlas Gridsquare 导出';
|
||||
$lang['menu_sota_csv_export'] = 'SOTA CSV 导出';
|
||||
$lang['menu_cabrillo_export'] = 'Cabrillo 导出';
|
||||
$lang['menu_cfd_export'] = "CFD Export";
|
||||
$lang['menu_oqrs_requests'] = 'OQRS';
|
||||
$lang['menu_print_requested_qsls'] = '打印请求的QSL卡片';
|
||||
$lang['menu_labels'] = '标签';
|
||||
$lang['menu_third_party_services'] = "第三方服务";
|
||||
$lang['menu_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['menu_eqsl_import_export'] = 'eQSL 导入/导出';
|
||||
$lang['menu_qrz_logbook'] = 'QRZ 日志簿';
|
||||
$lang['menu_hrd_logbook'] = 'HRDLog 日志簿';
|
||||
$lang['menu_qo_100_dx_club_upload'] = 'QO-100 Dx Club 上传';
|
||||
$lang['menu_api_keys'] = 'API 密钥';
|
||||
$lang['menu_hardware_interfaces'] = '硬件接口';
|
||||
$lang['menu_help'] = '帮助';
|
||||
$lang['menu_forum'] = '论坛';
|
||||
$lang['menu_logout'] = '注销';
|
||||
|
||||
$lang['menu_extras'] = "Extras";
|
||||
$lang['menu_satellites'] = '卫星';
|
||||
$lang['menu_dx_calendar'] = 'DX 日志';
|
||||
$lang['menu_contest_calendar'] = '竞赛日志';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU';
|
||||
|
||||
$lang['menu_canada'] = '加拿大';
|
||||
$lang['menu_germany'] = '德国';
|
||||
$lang['menu_great_britain'] = '英国';
|
||||
$lang['menu_japan'] = '日本';
|
||||
$lang['menu_luxemburg'] = '卢森堡';
|
||||
$lang['menu_switzerland'] = '瑞士';
|
||||
$lang['menu_usa'] = '美国';
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['notes_menu_notes'] = '笔记';
|
||||
$lang['notes_edit_note'] = '编辑笔记';
|
||||
$lang['notes_your_notes'] = '你的笔记';
|
||||
|
||||
$lang['notes_welcome'] = "你目前没有任何笔记,这里特别适合用来储存一些诸如 ATU 设置,信标和电台笔记等信息。同时,他们不会像纸片那样容易丢失";
|
||||
|
||||
$lang['notes_create_note'] = '创建笔记';
|
||||
|
||||
$lang['notes_input_title'] = '标题';
|
||||
$lang['notes_input_category'] = '分类';
|
||||
$lang['notes_input_notes_content'] = '笔记内容';
|
||||
$lang['notes_input_btn_save_note'] = '保存笔记';
|
||||
$lang['notes_input_btn_edit_note'] = '编辑笔记';
|
||||
$lang['notes_input_btn_delete_note'] = '删除笔记';
|
||||
|
||||
$lang['notes_selection_general'] = '一般';
|
||||
$lang['notes_selection_antennas'] = '天线';
|
||||
$lang['notes_selection_satellites'] = '卫星';
|
||||
@@ -1,124 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_wavelog_options'] = 'Wavelog 设置';
|
||||
$lang['options_message1'] = '本设置是针对所有用户的全局设置,会覆盖对于单个用户的设置。';
|
||||
|
||||
$lang['options_appearance'] = '外观';
|
||||
$lang['options_theme'] = '主题';
|
||||
$lang['options_saved'] = "Options saved";
|
||||
$lang['options_global_theme_choice_this_is_used_when_users_arent_logged_in'] = '全局主题选择,当用户未登录时使用。';
|
||||
$lang['options_public_search_bar'] = '公共搜索栏';
|
||||
$lang['options_this_allows_non_logged_in_users_to_access_the_search_functions'] = '允许未登录的用户访问搜索功能。';
|
||||
$lang['options_dashboard_notification_banner'] = '仪表盘通知栏';
|
||||
$lang['options_this_allows_to_disable_the_global_notification_banner_on_the_dashboard'] = '禁用仪表板上的全局通知横幅。';
|
||||
$lang['options_dashboard_map'] = '仪表盘的地图';
|
||||
$lang['options_this_allows_the_map_on_the_dashboard_to_be_disabled_or_placed_on_the_right'] = '允许禁用仪表板上的地图或将其放置在右侧。';
|
||||
$lang['options_logbook_map'] = '日志地图';
|
||||
$lang['options_this_allows_to_disable_the_map_in_the_logbook'] = '允许禁用日志中的地图。';
|
||||
$lang['options_public_maps'] = "Public Maps";
|
||||
$lang['options_this_allows_to_disable_all_maps_in_the_public_view'] = "选中以在公共视图中禁用地图,包括主地图和网格地图。";
|
||||
|
||||
$lang['options_radios'] = '电台';
|
||||
$lang['options_radio_settings'] = '电台设置';
|
||||
$lang['options_radio_timeout_warning'] = '电台连接超时警告';
|
||||
$lang['options_the_radio_timeout_warning_is_used_on_the_qso_entry_panel_to_alert_you_to_radio_interface_disconnects'] = '在 QSO 输入面板上使用电台连接超时警告,提醒您无线电接口断开。';
|
||||
$lang['options_this_number_is_in_seconds'] = '此数字以秒为单位。';
|
||||
$lang['options_radio_timeout_warning_changed_to'] = '无线电超时警告更改为 ';
|
||||
|
||||
$lang['options_email'] = '电子邮件';
|
||||
$lang['options_outgoing_protocol'] = '传出协议';
|
||||
$lang['options_smtp_encryption'] = 'SMTP 加密';
|
||||
$lang['options_email_address'] = '电子邮件地址';
|
||||
$lang['options_email_sender_name'] = '发件人姓名';
|
||||
$lang['options_smtp_host'] = 'SMTP 主机';
|
||||
$lang['options_smtp_port'] = 'SMTP 端口';
|
||||
$lang['options_smtp_username'] = 'SMTP 用户名';
|
||||
$lang['options_smtp_password'] = 'SMTP 密码';
|
||||
$lang['options_mail_settings_saved'] = "设置已保存";
|
||||
$lang['options_mail_settings_failed'] = "保存时出现问题,请重试";
|
||||
$lang['options_outgoing_protocol_hint'] = "发送邮件时使用的协议";
|
||||
$lang['options_smtp_encryption_hint'] = "选择邮件将会通过TLS还是SSL发送";
|
||||
$lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'wavelog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Wavelog'";
|
||||
$lang['options_smtp_host_hint'] = "邮件服务器的域名,例如:'mail.example.com' (不带'ssl://'或'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "邮件服务器的SMTP端口,例如:如果使用了TLS -> '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 的信息来源,您可以通过 <a href="https://github.com/int2001/DXClusterAPI">DXClusterAPI</a> 来设置自己的来源或使用公共来源';
|
||||
$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'] = "警告! 您确定要删除以下波段:";
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
// Tiles
|
||||
$lang['qslcard_string_your_are_using'] = '你已经用了';
|
||||
$lang['qslcard_string_disk_space'] = '的磁盘空间保存 QSL 卡片资源';
|
||||
|
||||
$lang['qslcard_info'] = 'QSL 信息';
|
||||
$lang['qslcard_sent'] = 'QSL 卡片已经发出';
|
||||
$lang['qslcard_sent_bureau'] = 'QSL 卡片已由卡片局发出';
|
||||
$lang['qslcard_sent_direct'] = 'QSL 卡片已直邮发出';
|
||||
$lang['qslcard_sent_electronic'] = 'eQSL 卡片已经发送';
|
||||
$lang['qslcard_sent_manager'] = 'QSL 卡片已经由卡片管理员发出';
|
||||
$lang['qslcard_rcvd'] = 'QSL Card 已被接收';
|
||||
$lang['qslcard_rcvd_bureau'] = 'QSL 卡片已由卡片局收妥';
|
||||
$lang['qslcard_rcvd_direct'] = 'QSL 卡片已直邮收妥';
|
||||
$lang['qslcard_rcvd_electronic'] = 'eQSL 卡片已经收妥';
|
||||
$lang['qslcard_rcvd_manager'] = 'QSL 卡片已经由卡片管理员收妥';
|
||||
|
||||
$lang['qslcard_upload_front'] = '上传 QSL 卡片正面图像';
|
||||
$lang['qslcard_upload_back'] = '上传 QSL 卡片背面图像';
|
||||
|
||||
$lang['qslcard_upload_button'] = '上传 QSL 卡片图像';
|
||||
|
||||
$lang['qslcard_qslprint_header'] = "导出用于打印的 QSL 请求";
|
||||
$lang['qslcard_qslprint_text_line1'] = "在这里,你可以导出QSL请求为 CSV 或 ADIF 文件用于打印,或者标记为已寄出";
|
||||
$lang['qslcard_qslprint_text_line2'] = "QSL 请求是指'已请求'或'已排队'的 QSL 信息";
|
||||
$lang['qslcard_qslprint_send_method'] = "发送方式";
|
||||
$lang['qslcard_qslprint_mark_as_sent'] = "标记为'已发送’";
|
||||
$lang['qslcard_qslprint_mark_selected_as_printed'] = "标记选中的 QSL 信息为'已打印'";
|
||||
$lang['qslcard_qslprint_remove_selected_from_queue'] = "从队列中删除选中的 QSL 信息";
|
||||
$lang['qslcard_qslprint_export_csv'] = "导出QSL请求为 CSV 文件";
|
||||
$lang['qslcard_qslprint_export_adif'] = "导出QSL请求为 ADIF 文件";
|
||||
$lang['qslcard_qslprint_mark_requested_as_sent'] = "标记 QSL 请求为'已发送'";
|
||||
$lang['qslcard_qslprint_no_qsls_found'] = "没有找到需要打印的 QSL 信息";
|
||||
$lang['qslcard_qslprint_add_to_queue'] = "添加到打印队列中";
|
||||
$lang['qslcard_qslprint_no_additional_qso_found'] = "没有找到附加的 QSL 信息,可能它们已经被添加到打印队列中";
|
||||
|
||||
@@ -1,103 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
// Tiles
|
||||
$lang['qso_title_qso_map'] = 'QSO 地图';
|
||||
$lang['qso_title_suggestions'] = '建议';
|
||||
$lang['qso_title_previous_contacts'] = '先前通联';
|
||||
$lang['qso_title_times_worked_before'] = "先前通联的次数";
|
||||
$lang['qso_title_not_worked_before'] = "Not worked before";
|
||||
$lang['qso_title_image'] = '操作员照片';
|
||||
$lang['qso_previous_max_shown'] = "最多五次先前通联将会被显示";
|
||||
|
||||
// Quicklog on Dashboard
|
||||
$lang['qso_quicklog_enter_callsign'] = '快速记录QSO输入呼号';
|
||||
|
||||
// Input Help Text on the /QSO Display
|
||||
$lang['qso_transmit_power_helptext'] = '以W为单位设置功率值。在输入中仅填写数值';
|
||||
|
||||
$lang['qso_sota_ref_helptext'] = '例如: GM/NS-001.';
|
||||
$lang['qso_wwff_ref_helptext'] = '例如: DLFF-0069.';
|
||||
$lang['qso_pota_ref_helptext'] = '例如: PA-0150. 可使用多个值';
|
||||
|
||||
$lang['qso_sig_helptext'] = '例如: GMA';
|
||||
$lang['qso_sig_info_helptext'] = '例如: DA/NW-357';
|
||||
|
||||
$lang['qso_dok_helptext'] = '例如: Q03';
|
||||
|
||||
$lang['qso_notes_helptext'] = '仅在 Wavelog 使用而不上传到其他的服务的笔记。';
|
||||
$lang['qsl_notes_helptext'] = '此笔记内容被导出到QSL服务,如 eqsl.cc。';
|
||||
|
||||
$lang['qso_eqsl_qslmsg_helptext'] = "获取该站的 eQSL 默认消息。";
|
||||
|
||||
// error text //
|
||||
$lang['qso_error_timeoff_less_timeon'] = "结束时间小于开始时间";
|
||||
|
||||
// Button Text on /qso Display
|
||||
|
||||
$lang['qso_btn_clear_qso'] = '清除';
|
||||
$lang['qso_btn_reset_to_default'] = '重置为默认';
|
||||
$lang['qso_btn_save_qso'] = '保存 QSO';
|
||||
$lang['qso_btn_edit_qso'] = '编辑 QSO';
|
||||
$lang['qso_delete_warning'] = "警告!您确定要删除 QSO 和 ";
|
||||
|
||||
// QSO Details
|
||||
|
||||
$lang['qso_details'] = 'QSO 详情';
|
||||
|
||||
$lang['fav_add'] = '添加 模式/频段 到收藏';
|
||||
$lang['qso_operator_callsign'] = '操作员呼号';
|
||||
|
||||
// Simple FLE (FastLogEntry)
|
||||
|
||||
$lang['qso_simplefle_info'] = "这是什么?";
|
||||
$lang['qso_simplefle_info_ln1'] = "简单快速日志输入 (FLE)";
|
||||
$lang['qso_simplefle_info_ln2'] = "“快速日志输入”,或简称“FLE”,是一个非常快速、高效地记录 QSO 的系统。 由于其语法,只需最少的输入即可以尽可能少的努力记录许多 QSO。";
|
||||
$lang['qso_simplefle_info_ln3'] = "FLE 最初由 DF3CB 编写。 他在他的网站上提供了一个适用于 Windows 的程序。 Simple FLE 是 OK2CQR 基于 DF3CB 的 FLE 编写的,并提供了一个 Web 界面来记录 QSO。";
|
||||
$lang['qso_simplefle_info_ln4'] = "一个常见的用例是,如果您必须野架之后将纸质日志导入电脑,现在 Wavelog 中也提供了 SimpleFLE。 有关语法和 FLE 工作原理的信息可以在<a href='https://df3cb.com/fle/documentation/' target='_blank'>此处</a>找到。";
|
||||
$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'] = "如果您确实在新位置进行操作,请首先创建一个新的<a href=".site_url('station') .">电台站位置</a>";
|
||||
$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'] = "标识代码可以是 <u>S</u>OTA、<u>I</u>OTA、<u>P</u>OTA 或 <u>W</u>WFF";
|
||||
|
||||
$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 中的 <a href='https://github.com/wavelog/wavelog/wiki/SimpleFLE' target='_blank'>这篇文章</a> 查看。";
|
||||
$lang['qso_simplefle_syntax_help_ln8'] = "";
|
||||
$lang['qso_simplefle_syntax_help_ln9'] = "";
|
||||
|
||||
$lang['qso_simplefle_options'] = 'Options';
|
||||
|
||||
@@ -1,120 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Station Logbooks
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['station_logbooks'] = "台站日志";
|
||||
$lang['station_logbooks_description_header'] = "什么是台站日志";
|
||||
$lang['station_logbooks_description_text'] = "台站日志可以让您对自己的台站位置进行分组,这对在同一 DXCC 或 VUCC 下的不同站点位置非常方便";
|
||||
$lang['station_logbooks_create'] = "新建台站日志";
|
||||
$lang['station_logbooks_status'] = "状态";
|
||||
$lang['station_logbooks_link'] = "链接";
|
||||
$lang['station_logbooks_public_search'] = "公开搜索";
|
||||
$lang['station_logbooks_set_active'] = "设置为正在使用的日志";
|
||||
$lang['station_logbooks_active_logbook'] = "正在使用的日志";
|
||||
$lang['station_logbooks_edit_logbook'] = "编辑台站日志"; // Full sentence will be generated 'Edit Station Logbook: [Logbook Name]'
|
||||
$lang['station_logbooks_confirm_delete'] = "确定删除此台站日志?你可能需要重新将台站位置链接到其他台站日志中: ";
|
||||
$lang['station_logbooks_view_public'] = "浏览日志公开页: ";
|
||||
$lang['station_logbooks_create_name'] = "台站日志名称";
|
||||
$lang['station_logbooks_create_name_hint'] = "你可以随意称呼你的台站日志";
|
||||
$lang['station_logbooks_edit_name_hint'] = "台站位置简称,例如:Home Log (HM54ip)";
|
||||
$lang['station_logbooks_edit_name_update'] = "更新台站日志名称";
|
||||
$lang['station_logbooks_public_slug'] = "自定义日志链接";
|
||||
$lang['station_logbooks_public_slug_hint'] = "通过自定义日志链接,你可以通过此链接让别人访问你的日志";
|
||||
$lang['station_logbooks_public_slug_format1'] = "他将会看起来像这样:";
|
||||
$lang['station_logbooks_public_slug_format2'] = "[个性地址]";
|
||||
$lang['station_logbooks_public_slug_input'] = "输入个性地址";
|
||||
$lang['station_logbooks_public_slug_visit'] = "访问公开页面";
|
||||
$lang['station_logbooks_public_search_hint'] = "启用可为日志本提供公开搜索功能,范围仅限此日志本。";
|
||||
$lang['station_logbooks_public_search_enabled'] = "已启用公开搜索";
|
||||
$lang['station_logbooks_select_avail_loc'] = "选择可用台站位置";
|
||||
$lang['station_logbooks_link_loc'] = "链接的台站位置";
|
||||
$lang['station_logbooks_linked_loc'] = "已链接的台站位置";
|
||||
$lang['station_logbooks_no_linked_loc'] = "未链接的台站位置";
|
||||
$lang['station_logbooks_unlink_station_location'] = "取消链接的台站位置";
|
||||
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Station Locations
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['station_location'] = '台站地址';
|
||||
$lang['station_location_plural'] = "台站地址";
|
||||
$lang['station_location_header_ln1'] = '台站地址为电台使用地址,如您或朋友的 QTH,或移动台的地址';
|
||||
$lang['station_location_header_ln2'] = '和日志簿类似,一个台站地址为 QSO 集合的承载主体';
|
||||
$lang['station_location_header_ln3'] = '同一时间只允许启用一个台站地址,详见如下表格中的 -启用- 标志';
|
||||
$lang['station_location_create_header'] = '创建台站地址';
|
||||
$lang['station_location_create'] = '创建一个台站地址';
|
||||
$lang['station_location_edit'] = '修改台站地址:';
|
||||
$lang['station_location_updated_suff'] = ' 已更新';
|
||||
$lang['station_location_warning'] = '警告:应事先设置一个\'启用\'的台站地址,请在 \'呼号\'->\'台站地址\'中选择一个';
|
||||
$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,可在 <a href='https://zone-check.eu/?m=loc' target='_blank'>这里</a> 查询自己的网格";
|
||||
$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 名录:<a target='_blank' href='https://www.iota-world.org/iota-directory/annex-f-short-title-iota-reference-number-list.html'>IOTA World</a>";
|
||||
$lang['station_location_sota_hint_ln1'] = "台站 SOTA 标识代码,查看全部 SOTA:<a target='_blank' href='https://www.sotamaps.org/'>SOTA Maps</a>";
|
||||
$lang['station_location_wwff_hint_ln1'] = "台站 WWFF 标识代码,查看 <a target='_blank' href='https://www.cqgma.org/mvs/'>GMA Map</a>";
|
||||
$lang['station_location_pota_hint_ln1'] = "台站 POTA 标识代码,允许多个逗号分隔值,POTA 地图:<a target='_blank' href='https://pota.app/#/map/'>POTA Map</a>";
|
||||
$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:<a href='https://logbook.qrz.com/logbook' target='_blank'>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 代码:<a href='http://www.hrdlog.net/EditUser.aspx' target='_blank'>HRDLog.net 用户界面";
|
||||
$lang['station_location_qo100_hint'] = "创建 API 代码:<a href='https://qo100dx.club' target='_blank'>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 实时上传';
|
||||
|
||||
|
||||
@@ -1,83 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['statistics_statistics'] = '统计';
|
||||
|
||||
$lang['statistics_explore_the_logbook'] = '查看日志';
|
||||
|
||||
$lang['statistics_years'] = '年';
|
||||
$lang['statistics_modes'] = '模式';
|
||||
$lang['statistics_bands'] = '波段';
|
||||
$lang['statistics_qsos'] = 'QSOs';
|
||||
$lang['statistics_unique_callsigns'] = '呼号';
|
||||
|
||||
$lang['statistics_total'] = '总计';
|
||||
|
||||
$lang['statistics_year'] = '年';
|
||||
|
||||
$lang['statistics_number_of_qso_worked_each_year'] = "每年通联的 QSO 数量";
|
||||
$lang['statistics_number_of_qso_worked'] = "通联的 QSO 数量";
|
||||
|
||||
/*
|
||||
*
|
||||
* Distances
|
||||
*
|
||||
*/
|
||||
|
||||
$lang['statistics_distances_worked'] = "通联距离";
|
||||
$lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "次通联<br /> 您最远的通联是与";
|
||||
$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)";
|
||||
|
||||
@@ -1,136 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['account_logbook_fields'] = 'Pole deníku';
|
||||
$lang['account_column1_text'] = 'Vybrat sloupec 1';
|
||||
$lang['account_column2_text'] = 'Vybrat sloupec 2';
|
||||
$lang['account_column3_text'] = 'Vybrat sloupec 3';
|
||||
$lang['account_column4_text'] = 'Vybrat sloupec 4';
|
||||
$lang['account_column5_text'] = 'Vybrat sloupec 5 (pouze pro deník)';
|
||||
|
||||
$lang['account_create_user_account'] = 'Vytvořit uživatelský účet';
|
||||
$lang['account_edit_account'] = 'Upravit účet';
|
||||
|
||||
$lang['account_account_information'] = 'Informace o účtu';
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Uživatelské jméno';
|
||||
$lang['account_email_address'] = 'Emailová adresa';
|
||||
$lang['account_password'] = 'Heslo';
|
||||
|
||||
$lang['account_roles'] = 'Role';
|
||||
$lang['account_user_role'] = 'Uživatelská role';
|
||||
$lang['account_word_admin'] = 'Admin';
|
||||
|
||||
$lang['account_theme'] = 'Motiv';
|
||||
$lang['account_stylesheet'] = 'Styl';
|
||||
|
||||
$lang['account_personal_information'] = 'Osobní informace';
|
||||
$lang['account_first_name'] = 'Jméno';
|
||||
$lang['account_last_name'] = 'Příjmení';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Značka';
|
||||
$lang['account_gridsquare'] = 'Locátor';
|
||||
|
||||
$lang['account_wavelog_preferences'] = 'Nastavení Wavelogu';
|
||||
$lang['account_timezone'] = 'Časové pásmo';
|
||||
$lang['account_date_format'] = 'Formát data';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
$lang['account_log_end_time_hint'] = '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.';
|
||||
$lang['account_quicklog_feature'] = "Quicklog Field";
|
||||
$lang['account_quicklog_feature_hint'] = "With this feature, you can log callsigns using the search field in the header.";
|
||||
$lang['account_quicklog_enter'] = "Quicklog - Action on press Enter";
|
||||
$lang['account_quicklog_enter_hint'] = "What action should be performed when Enter is pressed in the quicklog field?";
|
||||
$lang['account_quicklog_enter_log'] = "Log Callsign";
|
||||
$lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Nastavení měření';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Vyberte, jak chcete, aby byla data zobrazena při přihlášení do vašeho účtu.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Vyberte, v jakých jednotkách se budou zobrazovat vzdálenosti.';
|
||||
$lang['account_wavelog_language'] = 'Wavelog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Hlavní menu';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Zobrazovat poznámky v hlavním menu.';
|
||||
|
||||
$lang['account_gridsquare_and_location_autocomplete'] = 'Automatické doplňování lokátoru a umístění';
|
||||
$lang['account_location_auto_lookup'] = 'Automatické vyhledávání umístění.';
|
||||
$lang['account_if_set_gridsquare_is_fetched_based_on_location_name'] = 'Pokud je nastaveno, lokátor je získán na základě názvu umístění.';
|
||||
$lang['account_sota_auto_lookup_gridsquare_and_name_for_summit'] = 'Automatické vyhledávání lokátoru a jména pro SOTA vrchol.';
|
||||
$lang['account_wwff_auto_lookup_gridsquare_and_name_for_reference'] = 'Automatické vyhledávání lokátoru a jména pro WWFF referenci.';
|
||||
$lang['account_pota_auto_lookup_gridsquare_and_name_for_park'] = 'Automatické vyhledávání lokátoru a jména pro POTA park.';
|
||||
$lang['account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'] = 'Pokud je nastaveno, jméno a lokátor jsou získány z API a vyplněny do umístění a lokátoru.';
|
||||
|
||||
$lang['account_previous_qsl_type'] = 'Předchozí typ QSL';
|
||||
$lang['account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'] = 'Vyberte typ QSL k zobrazení v sekci předchozích QSOs.';
|
||||
|
||||
$lang['account_qrzcom_hamqthcom_images'] = 'Obrázky qrz.com/hamqth.com';
|
||||
$lang['account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'] = 'Zobrazit profilový obrázek partnera z QSO záznamu z profilu qrz.com/hamqth.com v sekci protokolu QSO.';
|
||||
$lang['account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'] = 'Prosím, nastavte své přihlašovací údaje pro qrz.com/hamqth.com v obecném konfiguračním souboru.';
|
||||
|
||||
$lang['account_amsat_status_upload'] = 'Nahrávání stavu AMSAT';
|
||||
$lang['account_upload_status_of_sat_qsos_to'] = 'Nahrávání stavu SAT QSOs na';
|
||||
|
||||
$lang['account_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['account_logbook_of_the_world_lotw_username'] = 'Přihlašovací jméno Logbook of The World (LoTW)';
|
||||
$lang['account_logbook_of_the_world_lotw_password'] = 'Heslo Logbook of The World (LoTW)';
|
||||
|
||||
$lang['account_clublog'] = 'Club Log';
|
||||
$lang['account_clublog_email_callsign'] = 'Email nebo značka volacího znaku Club Logu';
|
||||
$lang['account_clublog_password'] = 'Heslo Club Logu';
|
||||
$lang['account_the_email_or_callsign_you_use_to_login_to_club_log'] = 'E-mail nebo značka volacího znaku, kterou používáte pro přihlášení do Club Logu';
|
||||
|
||||
$lang['account_eqsl'] = 'eQSL';
|
||||
$lang['account_eqslcc_username'] = 'Uživatelské jméno eQSL.cc';
|
||||
$lang['account_eqslcc_password'] = 'Heslo eQSL.cc';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Uložit změny účtu';
|
||||
$lang['account_create_account'] = 'Vytvořit účet';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Smazat uživatelský účet';
|
||||
$lang['account_are_you_sure_you_want_to_delete_the_user_account'] = 'Jste si jistí, že chcete smazat uživatelský účet';
|
||||
$lang['account_yes_delete_this_user'] = 'Ano, smazat tohoto uživatele';
|
||||
$lang['account_no_do_not_delete_this_user'] = 'Ne, nevymazávat tohoto uživatele';
|
||||
|
||||
$lang['account_forgot_password'] = 'Zapomenuté heslo?';
|
||||
$lang['account_you_can_reset_your_password_here'] = 'Zde si můžete obnovit heslo.';
|
||||
$lang['account_reset_password'] = 'Obnovit heslo';
|
||||
$lang['account_the_email_field_is_required'] = 'Pole e-mail je povinné';
|
||||
$lang['account_confirm_password'] = 'Potvrzení hesla';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Zapomněli jste heslo?';
|
||||
|
||||
$lang['account_login'] = 'Přihlásit se';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodon server';
|
||||
$lang['account_user_mastodon'] = 'URL Mastodon serveru';
|
||||
$lang['account_user_mastodon_hint'] = "Main URL of your Mastodon server, e.g. <a href='https://radiosocial.de/' target='_blank'>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 <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> 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 <a href='https://hams.at/users/settings' target='_blank'>https://hams.at/users/settings</a>.";
|
||||
$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.";
|
||||
@@ -1,139 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_import'] = "ADIF Import";
|
||||
$lang['adif_export'] = "ADIF Export";
|
||||
// $lang['lotw_title'] --> 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 <b>all</b> 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'] = " <b>Dupes were inserted!</b>";
|
||||
$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";
|
||||
@@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['admin_user_line1'] = 'Wavelog potřebuje alespoň jednoho uživatele nastaveného pro svůj provoz.';
|
||||
$lang['admin_user_line2'] = '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.';
|
||||
$lang['admin_user_line3'] = 'Nyní přihlášený uživatel je zobrazen v pravém horním rohu každé stránky.';
|
||||
$lang['admin_user_line4'] = "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.";
|
||||
|
||||
$lang['admin_user_list'] = 'Seznam uživatelů';
|
||||
|
||||
$lang['admin_user'] = 'Uživatel';
|
||||
$lang['admin_email'] = 'E-mail';
|
||||
$lang['admin_type'] = 'Typ';
|
||||
$lang['admin_last_seen'] = "Last seen";
|
||||
$lang['admin_last_qso'] = "Last QSO:";
|
||||
$lang['admin_no_qso_in_log'] = "No QSOs in Log";
|
||||
$lang['admin_refresh_list'] = "Refresh List";
|
||||
$lang['admin_options'] = 'Možnosti';
|
||||
|
||||
$lang['admin_station_logbooks'] = 'Logbooks';
|
||||
$lang['admin_station_locations'] = 'Locations';
|
||||
|
||||
$lang['admin_create_user'] = 'Vytvořit uživatele';
|
||||
$lang['admin_delete'] = 'Smazat';
|
||||
$lang['admin_remove'] = "Remove";
|
||||
$lang['admin_edit'] = 'Upravit';
|
||||
$lang['admin_create'] = 'Create';
|
||||
$lang['admin_update'] = 'Update';
|
||||
$lang['admin_copy'] = 'Copy';
|
||||
$lang['admin_save'] = 'Save';
|
||||
$lang['admin_close'] = 'Close';
|
||||
$lang['admin_clear'] = "Clear";
|
||||
$lang['admin_user_accounts'] = 'User Accounts';
|
||||
$lang['admin_danger'] = 'DANGER!';
|
||||
$lang['admin_experimental'] = "Experimental";
|
||||
$lang['admin_password_reset'] = "Password Reset";
|
||||
|
||||
$lang['admin_email_settings_incorrect'] = "Email settings are incorrect.";
|
||||
$lang['admin_password_reset_processed'] = "Password-reset e-mail sent to user:";
|
||||
$lang['admin_confirm_pwd_reset'] = "Do you really want to send this user a password-reset link?";
|
||||
|
||||
|
||||
// Contest Menu
|
||||
|
||||
$lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.';
|
||||
$lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.';
|
||||
$lang['admin_contest_menu_name'] = 'Name';
|
||||
$lang['admin_contest_menu_adif'] = 'ADIF Name';
|
||||
$lang['admin_contest_menu_active'] = 'Active';
|
||||
$lang['admin_contest_menu_n_active'] = 'Not Active';
|
||||
$lang['admin_contest_menu_activate'] = 'Activate';
|
||||
$lang['admin_contest_menu_deactivate'] = 'Deactivate';
|
||||
|
||||
$lang['admin_contest_add_contest'] = 'Add a Contest';
|
||||
$lang["admin_contest_create"] = "Create";
|
||||
$lang['admin_contest_all_active'] = 'Activate All';
|
||||
$lang['admin_contest_all_deactive'] = 'Deactivate All';
|
||||
|
||||
$lang['admin_contest_name_adif'] = 'Contest ADIF Name';
|
||||
$lang['admin_contest_name_of_contest'] = 'Name of the Contest';
|
||||
$lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification';
|
||||
$lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list';
|
||||
$lang['admin_contest_edit_update_contest'] = 'Update Contest';
|
||||
$lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: ';
|
||||
$lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?';
|
||||
$lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?';
|
||||
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['awards_info_button'] = "Award Info";
|
||||
$lang['awards_show_worked'] = "Show worked";
|
||||
$lang['awards_show_confirmed'] = "Show confirmed";
|
||||
$lang['awards_show_not_worked'] = "Show not worked";
|
||||
$lang['awards_qsl_type'] = "Show QSO with QSL Type";
|
||||
$lang['awards_show_cq_map'] = "Show CQ Zone Map";
|
||||
$lang['awards_summary'] = "Summary";
|
||||
$lang['awards_total'] = "Total";
|
||||
$lang['awards_total_worked'] = "Total worked";
|
||||
$lang['awards_total_confirmed'] = "Total confirmed";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Awards - CQ Magazine WAZ";
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
$lang['awards_show_itu_map'] = "Show ITU Zone Map";
|
||||
$lang['awards_show_jcc_map'] = "Show JCC Map";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
CQ -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_cq_description_ln1'] = "CQ Magazine WAZ Award";
|
||||
$lang['awards_cq_description_ln2'] = "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.";
|
||||
$lang['awards_cq_description_ln3'] = "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to all 40 CQ Zones along with the corresponding confirmation.";
|
||||
$lang['awards_cq_description_ln4'] = "You can find all the information and rules on the Website of the <a href='https://cq-amateur-radio.com/cq_awards/cq_waz_awards/index_cq_waz_award.html' target='_blank'>CQ Magazine</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/districtsdoks/' target='_blank'>DARC website</a>. Information about the DOK Awards and its rules can be found <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/award-check/' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='http://www.arrl.org/desoto' target='_blank'>'How to Count Countries Worked, A New DX Scoring System'</a>.";
|
||||
$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL website</a>.";
|
||||
$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: <a href='https://www.arrl.org/ffma' target='_blank'>https://www.arrl.org/ffma</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.uska.ch/contest/uska-diplome/' target='_blank'>https://www.uska.ch/contest/uska-diplome/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.iota-world.org/' target='_blank'>IOTA WORLD website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://parksontheair.com/pota-awards/' target='_blank'>Parks on the Air® website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.sota.org.uk/' target='_blank'>https://www.sota.org.uk/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://cq-amateur-radio.com/cq_awards/cq_usa_ca_awards/cq_usa_ca_awards.html' target='_blank'>here</a>.";
|
||||
$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 <a href='https://www.amsat.org/gridmaster/' target='_blank'>website</a>: 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: <a href='https://www.arrl.org/vucc' target='_blank'>Click here</a>.";
|
||||
$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 <a href='https://www.arrl.org/was' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wwff.co/awards/' target='_blank'>https://wwff.co/awards/</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wab.intermip.net/default.php' target='_blank'>https://wab.intermip.net/default.php</a>.";
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://rsgb.org/main/files/2019/01/Worked_ITU_Zones_Award_Form_2019.pdf' target='_blank'>RSGB</a>.";
|
||||
@@ -1,33 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['contesting_page_title'] = 'Závodní deník';
|
||||
$lang['contesting_button_reset_contest_session'] = 'Resetovat závod';
|
||||
$lang['contesting_operator_callsign'] = 'Operator Callsign';
|
||||
|
||||
$lang['contesting_exchange_type'] = 'Typ předávaného kódu';
|
||||
$lang['contesting_exchange_type_serial'] = 'Číslo spojení';
|
||||
$lang['contesting_exchange_type_none'] = 'None';
|
||||
$lang['contesting_exchange_type_exchange'] = 'Exchange';
|
||||
$lang['contesting_exchange_type_gridsquare'] = 'Gridsquare';
|
||||
$lang['contesting_exchange_type_other'] = 'Jiné';
|
||||
$lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange';
|
||||
$lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare';
|
||||
$lang['contesting_exchange_serial_s'] = 'Serial (S)';
|
||||
$lang['contesting_exchange_serial_r'] = 'Serial (R)';
|
||||
$lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)';
|
||||
$lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)';
|
||||
|
||||
$lang['contesting_contest_name'] = 'Název závodu';
|
||||
|
||||
$lang['contesting_btn_reset_qso'] = 'Smazat QSO';
|
||||
$lang['contesting_btn_save_qso'] = 'Uložit QSO';
|
||||
|
||||
$lang['contesting_title_callsign_suggestions'] = 'Našeptávač značek';
|
||||
$lang['contesting_title_contest_logbook'] = 'Závodní deník';
|
||||
|
||||
$lang['contesting_copy_exch_to'] = 'Copy received exchange to';
|
||||
$lang['contesting_copy_exch_hint'] = 'Exchange is only copied if it is matching rules for the selected field!';
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['eqsl_short'] = 'eQSL';
|
||||
@@ -1,76 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
KML Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_kml_header'] = "KML Export";
|
||||
$lang['export_kml_description'] = "Export your logbook to a KML file for use in Google Earth.";
|
||||
$lang['export_kml_grisquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DX Atlas Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_dxatlas_header'] = "DX Atlas Export";
|
||||
$lang['export_dxatlas_description'] = "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares.";
|
||||
$lang['export_dxatlas_gridsquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
SOTA Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_sota_header'] = "SOTA CSV Export";
|
||||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See <a href=\"https://toplist.darc.de\" target=\"_new\">https://toplist.darc.de</a>)";
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Quickfilters';
|
||||
$lang['filter_qsl_filters'] = 'QSL Filters';
|
||||
$lang['filter_filters'] = 'Filters';
|
||||
$lang['filter_actions'] = 'Actions';
|
||||
$lang['filter_results'] = '# Results';
|
||||
$lang['filter_search'] = 'Search';
|
||||
$lang['filter_dupes'] = "Dupes";
|
||||
$lang['filter_map'] = 'Map';
|
||||
$lang['filter_options'] = 'Options';
|
||||
$lang['filter_reset'] = 'Reset';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Quicksearch with selected: ';
|
||||
$lang['filter_search_callsign'] = 'Search Callsign';
|
||||
$lang['filter_search_dxcc'] = 'Search DXCC';
|
||||
$lang['filter_search_state'] = 'Search State';
|
||||
$lang['filter_search_gridsquare'] = 'Search Gridsquare';
|
||||
$lang['filter_search_cq_zone'] = 'Search CQ Zone';
|
||||
$lang['filter_search_itu_zone'] = 'Search ITU Zone';
|
||||
$lang['filter_search_mode'] = 'Search Mode';
|
||||
$lang['filter_search_band'] = 'Search Band';
|
||||
$lang['filter_search_iota'] = 'Search IOTA';
|
||||
$lang['filter_search_sota'] = 'Search SOTA';
|
||||
$lang['filter_search_wwff'] = 'Search WWFF';
|
||||
$lang['filter_search_pota'] = 'Search POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL sent';
|
||||
$lang['filter_qsl_recv'] = 'QSL received';
|
||||
$lang['filter_qsl_sent_method'] = 'QSL send. method';
|
||||
$lang['filter_qsl_recv_method'] = 'QSL recv. method';
|
||||
$lang['filter_lotw_sent'] = 'LoTW sent';
|
||||
$lang['filter_lotw_recv'] = 'LoTW received';
|
||||
$lang['filter_eqsl_sent'] = 'eQSL sent';
|
||||
$lang['filter_eqsl_recv'] = 'eQSL received';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'QSL Images';
|
||||
|
||||
// $lang['general_word_all'] --> 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';
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['error_no_active_station_profile'] = 'Pozor: musíte nastavit aktivní umístění stanice.';
|
||||
|
||||
$lang['notice_turn_the_radio_on'] = 'Dnes jste neudělali žádná QSO spojení; je čas zapnout rádio!';
|
||||
|
||||
$lang['general_word_important'] = 'Důležité';
|
||||
$lang['general_word_warning'] = 'Warning';
|
||||
$lang['general_word_danger'] = 'DANGER';
|
||||
$lang['general_word_maintenance'] = 'Maintenance';
|
||||
$lang['general_word_info'] = 'Info';
|
||||
$lang['general_word_choose_file'] = 'Vybrat soubor';
|
||||
$lang['general_word_please_wait'] = "Please Wait ...";
|
||||
$lang['general_word_next'] = 'Next';
|
||||
$lang['general_word_previous'] = 'Previous';
|
||||
$lang['general_word_cancel'] = "Cancel";
|
||||
$lang['general_word_ok'] = "OK";
|
||||
$lang['general_word_show'] = "Show";
|
||||
$lang['general_word_attention'] = "Attention";
|
||||
$lang['general_word_message'] = "Message";
|
||||
$lang['general_word_enabled'] = "Enabled";
|
||||
$lang['general_word_disabled'] = "Disabled";
|
||||
$lang['general_word_export'] = "Export";
|
||||
$lang['general_word_import'] = "Import";
|
||||
$lang['general_word_count'] = "Count";
|
||||
$lang['general_word_filtering_on'] = "Filtering on";
|
||||
$lang['general_word_not_display'] = "Not display";
|
||||
$lang['general_word_icon'] = "Icon";
|
||||
$lang['general_word_never'] = "Never";
|
||||
$lang['general_word_active'] = "Active";
|
||||
$lang['general_word_inactive'] = "Inactive";
|
||||
|
||||
$lang['general_word_date'] = 'Datum';
|
||||
$lang['general_word_startdate'] = "Start Date";
|
||||
$lang['general_word_enddate'] = "End Date";
|
||||
$lang['general_word_time'] = 'Čas';
|
||||
$lang['general_word_time_on'] = 'Time on';
|
||||
$lang['general_word_time_off'] = 'Time off';
|
||||
$lang['general_word_datetime'] = 'Datum/čas';
|
||||
$lang['general_word_none'] = 'Žádné';
|
||||
$lang['general_word_name'] = 'Jméno';
|
||||
$lang['general_word_location'] = 'Místo';
|
||||
$lang['general_word_comment'] = 'Komentář';
|
||||
$lang['general_word_general'] = 'Obecné';
|
||||
$lang['general_word_satellite'] = 'Satelit';
|
||||
$lang['general_word_orbit'] = 'Orbit';
|
||||
$lang['general_word_satellite_short'] = 'Sat';
|
||||
$lang['general_word_notes'] = 'Poznámky';
|
||||
$lang['general_word_country'] = 'Země';
|
||||
$lang['general_word_city'] = 'Město';
|
||||
$lang['general_word_age'] = 'Age';
|
||||
|
||||
$lang['general_word_total'] = 'Celkem';
|
||||
$lang['general_word_year'] = 'Rok';
|
||||
$lang['general_word_month'] = 'Měsíc';
|
||||
$lang['general_word_day'] = "Day";
|
||||
$lang['general_word_days'] = "Days";
|
||||
$lang['general_word_period'] = "Period";
|
||||
$lang['general_word_yearly'] = "Yearly";
|
||||
$lang['general_word_monthly'] = "Monthly";
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Spojeno';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
$lang['general_word_confirmed'] = 'Potvrzeno';
|
||||
$lang['general_word_not_confirmed'] = "Not Confirmed";
|
||||
$lang['general_word_confirmation'] = "Confirmation";
|
||||
$lang['general_word_needed'] = 'Potřebuje se';
|
||||
|
||||
$lang['general_word_all'] = 'All';
|
||||
$lang['general_word_no'] = 'Ne';
|
||||
$lang['general_word_yes'] = 'Ano';
|
||||
$lang['general_word_method'] = 'Metoda';
|
||||
|
||||
$lang['general_word_sent'] = 'Odesláno';
|
||||
$lang['general_word_received'] = 'Přijato';
|
||||
$lang['general_word_requested'] = 'Vyžádáno';
|
||||
$lang['general_word_queued'] = 'Ve frontě';
|
||||
$lang['general_word_table'] = "Table";
|
||||
$lang['general_word_invalid_ignore'] = 'Neplatné (Ignorováno)';
|
||||
$lang['general_word_qslcard'] = 'QSL karta';
|
||||
$lang['general_word_qslcard_management'] = 'Správa QSL';
|
||||
$lang['general_word_qslcards'] = 'QSL karty';
|
||||
$lang['general_word_qslcard_direct'] = 'Přímá';
|
||||
$lang['general_word_qslcard_bureau'] = 'Bureau';
|
||||
$lang['general_word_qslcard_electronic'] = 'Elektronická';
|
||||
$lang['general_word_qslcard_manager'] = 'Správce';
|
||||
$lang['general_word_qslcard_via'] = 'Přes';
|
||||
$lang['general_word_eqslcard'] = 'eQSL karta';
|
||||
$lang['general_word_eqslcards'] = 'eQSL karty';
|
||||
$lang['general_word_lotw'] = 'Logbook of the World';
|
||||
$lang['general_word_lotw_short'] = 'LoTW';
|
||||
|
||||
$lang['general_word_details'] = 'Details';
|
||||
$lang['general_word_qso_data'] = 'QSO Data';
|
||||
|
||||
$lang['general_edit_qso'] = 'Upravit QSO';
|
||||
$lang['general_mark_qsl_rx_bureau'] = 'Označit QSL přijato (Bureau)';
|
||||
$lang['general_mark_qsl_rx_direct'] = 'Označit QSL přijato (Přímá)';
|
||||
$lang['general_mark_qsl_rx_electronic'] = 'Označit QSL přijato (Elektronicky)';
|
||||
$lang['general_mark_qsl_tx_bureau'] = 'Označit QSL odesláno (Bureau)';
|
||||
$lang['general_mark_qsl_tx_direct'] = 'Označit QSL odesláno (Přímá)';
|
||||
$lang['general_mark_qsl_requested'] = 'Označit QSL kartu požadováno';
|
||||
$lang['general_mark_qsl_requested_bureau'] = 'Označit QSL kartu požadováno (Bureau)';
|
||||
$lang['general_mark_qsl_requested_direct'] = 'Označit QSL kartu požadováno (Přímá)';
|
||||
$lang['general_mark_qsl_not_required'] = 'Označit QSL lístek není vyžadován';
|
||||
|
||||
$lang['general_delete_qso'] = 'Smazat QSO';
|
||||
$lang['general_more_qso'] = 'More QSOs';
|
||||
|
||||
$lang['general_lookup_qrz'] = 'Lookup on QRZ.com';
|
||||
$lang['general_lookup_hamqth'] = 'Lookup on HamQTH';
|
||||
|
||||
$lang['general_total_distance'] = 'Celková vzdálenost';
|
||||
|
||||
// PHP Upload Warning
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Wavelog Terms
|
||||
$lang['wavelog_station_profile'] = 'Umístění stanice';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
$lang['gen_hamradio_qso'] = 'QSO';
|
||||
$lang['gen_hamradio_station'] = 'Stanice';
|
||||
|
||||
$lang['gen_hamradio_call'] = 'Značka';
|
||||
$lang['gen_hamradio_callsign'] = 'Značka';
|
||||
$lang['gen_hamradio_prefix'] = "Prefix";
|
||||
$lang['gen_hamradio_suffix'] = "Suffix";
|
||||
$lang['gen_hamradio_de'] = 'De';
|
||||
$lang['gen_hamradio_dx'] = 'Dx';
|
||||
$lang['gen_hamradio_mode'] = 'Režim';
|
||||
$lang['gen_hamradio_ant_az'] = 'Antenna Azimuth';
|
||||
$lang['gen_hamradio_ant_el'] = 'Antenna Elevation';
|
||||
$lang['gen_hamradio_rst_sent'] = 'Odesláno';
|
||||
$lang['gen_hamradio_rst_rcvd'] = 'Přijato';
|
||||
$lang['gen_hamradio_band'] = 'Pásmo';
|
||||
$lang['gen_hamradio_bandgroup'] = "Bandgroup";
|
||||
$lang['gen_hamradio_band_rx'] = 'Pásmo (RX)';
|
||||
$lang['gen_hamradio_frequency'] = 'Frekvence';
|
||||
$lang['gen_hamradio_frequency_rx'] = 'Frekvence (RX)';
|
||||
$lang['gen_hamradio_radio'] = 'Rádio';
|
||||
$lang['gen_hamradio_rsts'] = 'RST (S)';
|
||||
$lang['gen_hamradio_rstr'] = 'RST (R)';
|
||||
$lang['gen_hamradio_refs'] = 'Refs';
|
||||
$lang['gen_hamradio_myrefs'] = 'My Refs';
|
||||
$lang['gen_hamradio_exchange_sent_short'] = 'Výměna (S)';
|
||||
$lang['gen_hamradio_exchange_rcvd_short'] = 'Výměna (R)';
|
||||
$lang['gen_hamradio_qsl'] = 'QSL';
|
||||
$lang['gen_hamradio_qsltype'] = "QSL Type";
|
||||
$lang['gen_hamradio_qslvia'] = 'QSL via';
|
||||
$lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||
$lang['gen_hamradio_locator'] = 'Lokátor';
|
||||
$lang['gen_hamradio_transmit_power'] = 'Vysílací výkon (W)';
|
||||
$lang['gen_hamradio_receive_power'] = 'RX Power (W)';
|
||||
$lang['gen_hamradio_propagation_mode'] = 'Šíření signálu';
|
||||
|
||||
$lang['gen_hamradio_satellite_name'] = 'Název satelitu';
|
||||
$lang['gen_hamradio_satellite_mode'] = 'Režim satelitu';
|
||||
|
||||
$lang['gen_hamradio_logbook'] = 'Logbook';
|
||||
$lang['gen_hamradio_active_logbook'] = 'Active Logbook';
|
||||
$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook";
|
||||
$lang['gen_hamradio_award'] = "Award";
|
||||
|
||||
$lang['gen_hamradio_zones'] = 'Zones';
|
||||
$lang['gen_hamradio_cq_zone'] = 'CQ zóna';
|
||||
$lang['gen_hamradio_itu_zone'] = 'ITU Zone';
|
||||
$lang['gen_hamradio_dxcc'] = 'DXCC';
|
||||
$lang['gen_hamradio_deleted_dxcc'] = 'Smazané DXCC';
|
||||
$lang['gen_hamradio_continent'] = 'Kontinent';
|
||||
$lang['gen_hamradio_usa_state'] = 'Stát USA';
|
||||
$lang['gen_hamradio_county_reference'] = 'Označení okresu USA';
|
||||
$lang['gen_hamradio_iota_reference'] = 'IOTA označení';
|
||||
$lang['gen_hamradio_sota_reference'] = 'SOTA označení';
|
||||
$lang['gen_hamradio_wwff_reference'] = 'WWFF označení';
|
||||
$lang['gen_hamradio_pota_reference'] = 'POTA označení';
|
||||
$lang['gen_hamradio_dok'] = 'DOK';
|
||||
$lang['gen_hamradio_state'] = 'Stát';
|
||||
$lang['gen_hamradio_iota'] = 'IOTA';
|
||||
$lang['gen_hamradio_sota'] = 'SOTA';
|
||||
$lang['gen_hamradio_wwff'] = 'WWFF';
|
||||
$lang['gen_hamradio_pota'] = 'POTA';
|
||||
$lang['gen_hamradio_gridsquare'] = 'Lokátor';
|
||||
$lang['gen_hamradio_get_gridsquare'] = 'Get Gridsquare';
|
||||
$lang['gen_hamradio_gridsquare_show'] = "Show Locator";
|
||||
$lang['gen_hamradio_latitude'] = "Latitude";
|
||||
$lang['gen_hamradio_longitude'] = "Longitude";
|
||||
$lang['gen_hamradio_bearing'] = "Bearing";
|
||||
$lang['gen_hamradio_distance'] = 'Vzdálenost';
|
||||
$lang['gen_hamradio_operator'] = 'Operátor';
|
||||
|
||||
$lang['gen_hamradio_sig'] = 'Sig';
|
||||
$lang['gen_hamradio_sig_info'] = 'Sig Info';
|
||||
|
||||
// Find your CQ/ITU Zone
|
||||
$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then";
|
||||
$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then";
|
||||
$lang['gen_find_zone_part2'] = "click here";
|
||||
$lang['gen_find_zone_part3'] = "to find it!";
|
||||
|
||||
// Dashboard Words
|
||||
$lang['dashboard_you_have_had'] = 'Máte';
|
||||
$lang['dashboard_qsos_today'] = 'QSO spojení dnes!';
|
||||
$lang['dashboard_qso_breakdown'] = 'Počet QSO spojení';
|
||||
$lang['dashboard_countries_breakdown'] = 'Počet zemí';
|
||||
$lang['gen_to_date'] = 'To date';
|
||||
|
||||
$lang['gen_from_date'] = 'Od data';
|
||||
|
||||
$lang['gen_this_qso_was_confirmed_on'] = 'Toto QSO bylo potvrzeno';
|
||||
|
||||
$lang['error_no_logbook_found'] = 'Nebyly nalezeny žádné denníky. Musíte definovat denník! Udělejte to zde:';
|
||||
|
||||
$lang['copy_to_clipboard'] = 'Kopírovat do schránky';
|
||||
|
||||
$lang['africa'] = 'Afrika';
|
||||
$lang['antarctica'] = 'Antarktida';
|
||||
$lang['asia'] = 'Asie';
|
||||
$lang['europe'] = 'Evropa';
|
||||
$lang['northamerica'] = 'Severní Amerika';
|
||||
$lang['oceania'] = 'Oceánie';
|
||||
$lang['southamerica'] = 'Jižní Amerika';
|
||||
|
||||
$lang['gen_band_selection'] = 'Výběr pásma';
|
||||
$lang['general_word_today'] = 'Dnes';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('stationsetup') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('stationsetup') . '">here</a> 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";
|
||||
@@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['gridsquares_gridsquare_map'] = 'Mapa lokátorů';
|
||||
$lang['gridsquares_activated_gridsquare_map'] = "Activated Gridsquare Map";
|
||||
$lang['gridsquares_gridsquare_activators'] = "Gridsquare Activators";
|
||||
|
||||
$lang['gridsquares_confirmed_is_green'] = 'Potvrzené lokátory jsou zeleně';
|
||||
$lang['gridsquares_worked_but_not_confirmed_is_red'] = 'Odpracované, ale nepotvrzené lokátory jsou červeně';
|
||||
$lang['gridsquares_activated_but_not_confirmed_is_red'] = 'Aktivované, ale nepotvrzené lokátory jsou červeně';
|
||||
|
||||
$lang['gridsquares_this_map_does_not_include_satellite_internet_or_repeater_qsos'] = 'Tato mapa nezahrnuje satelitní, internetová ani repeaterová QSO';
|
||||
|
||||
$lang['gridsquares_grid_squares'] = 'lokátor';
|
||||
$lang['gridsquares_total_count'] = 'Celkový počet';
|
||||
$lang['gridsquares_orbit'] = "Orbit";
|
||||
|
||||
$lang['gridsquares_minimum_count'] = "Minimum Count";
|
||||
$lang['gridsquares_show_qsos'] = "Show QSO's";
|
||||
$lang['gridsquares_show_map'] = "Show Map";
|
||||
$lang['gridsquares_band'] = 'Pásmo';
|
||||
$lang['gridsquares_mode'] = 'Režim';
|
||||
$lang['gridsquares_sat'] = 'Satelit';
|
||||
$lang['gridsquares_confirmation'] = 'Potvrzení';
|
||||
|
||||
$lang['gridsquares_button_plot'] = 'Zobrazit';
|
||||
$lang['gridsquares_button_clear_markers'] = "Clear Markers";
|
||||
|
||||
$lang['gridsquares_gridsquares'] = 'Lokátory';
|
||||
$lang['gridsquares_gridsquares_worked'] = 'Gridsquares worked';
|
||||
$lang['gridsquares_gridsquares_confirmed'] = 'Potvrzené lokátory';
|
||||
$lang['gridsquares_gridsquares_lotw'] = 'Gridsquares confirmed on LoTW';
|
||||
$lang['gridsquares_gridsquares_paper'] = 'Gridsquares confirmed by paper QSL';
|
||||
$lang['gridsquares_gridsquares_not_confirmed'] = 'Nepotvrzené lokátory';
|
||||
$lang['gridsquares_gridsquares_total_worked'] = 'Celkový počet odpracovaných lokátorů';
|
||||
$lang['gridsquares_gridsquares_total_activated'] = 'Total gridsquares activated';
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['lotw_short'] = 'LoTW';
|
||||
$lang['lotw_title'] = 'Logbook of the World';
|
||||
$lang['lotw_title_available_cert'] = 'Dostupné certifikáty';
|
||||
$lang['lotw_title_information'] = 'Informace';
|
||||
$lang['lotw_title_upload_p12_cert'] = 'Nahraj LoTW .p12 certifikát';
|
||||
$lang['lotw_title_export_p12_file_instruction'] = 'Instrukce k exportu souboru .p12';
|
||||
$lang['lotw_title_adif_import'] = 'Import ADIF';
|
||||
$lang['lotw_title_adif_import_options'] = 'Nastavení importu';
|
||||
|
||||
$lang['lotw_beta_warning'] = 'Prosím pozor, synchronizace s LoTW je zatím v testování, podívej se do Wiki pro nápovědu.';
|
||||
$lang['lotw_no_certs_uploaded'] = 'Musíte nahrát nějké LoTW certifikáty ve formátu p12.';
|
||||
|
||||
$lang['lotw_date_created'] = 'Datum vytvoření';
|
||||
$lang['lotw_date_expires'] = 'Datum vypršení';
|
||||
$lang['lotw_qso_start_date'] = 'QSO Start Date';
|
||||
$lang['lotw_qso_end_date'] = 'QSO End Date';
|
||||
$lang['lotw_status'] = 'Stav';
|
||||
$lang['lotw_options'] = 'Možnosti';
|
||||
$lang['lotw_valid'] = 'Platný';
|
||||
$lang['lotw_expired'] = 'Vypršel';
|
||||
$lang['lotw_expiring'] = 'Expiring';
|
||||
$lang['lotw_not_synced'] = 'Není synchronizováno';
|
||||
|
||||
$lang['lotw_certificate_dxcc'] = 'Certifikát DXCC';
|
||||
$lang['lotw_certificate_dxcc_help_text'] = 'Certifikát zěmě DXCC. Například: Scotsko';
|
||||
|
||||
$lang['lotw_input_a_file'] = 'Nahraj soubor';
|
||||
|
||||
$lang['lotw_upload_exported_adif_file_from_lotw'] = 'Nahraj exportovaný soubor z LoTW z <a href="https://p1k.arrl.org/lotwuser/qsos?qsoscmd=adif" target="_blank">Download Report</a> 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.';
|
||||
@@ -1,121 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['menu_badge_developer_mode'] = 'Režim vývojáře';
|
||||
|
||||
$lang['menu_logbook'] = 'Logbook';
|
||||
$lang['menu_overview'] = 'Přehled';
|
||||
$lang['menu_advanced'] = 'Pokročilé zobrazení';
|
||||
|
||||
$lang['menu_qso'] = 'QSO';
|
||||
$lang['menu_live_qso'] = 'Živé QSO';
|
||||
$lang['menu_post_qso'] = 'Uložit QSO';
|
||||
$lang['menu_fast_log_entry'] = "Simple Fast Log Entry";
|
||||
$lang['menu_live_contest_logging'] = 'Živé závodní logování';
|
||||
$lang['menu_post_contest_logging'] = 'Uložit závodní log';
|
||||
$lang['menu_bandmap'] = 'Bandmap';
|
||||
$lang['menu_view_qsl'] = 'Zobrazit QSL';
|
||||
$lang['menu_view_eqsl'] = 'Zobrazit eQSL';
|
||||
|
||||
$lang['menu_notes'] = 'Poznámky';
|
||||
|
||||
$lang['menu_analytics'] = 'Analýza';
|
||||
$lang['menu_statistics'] = 'Statistiky';
|
||||
$lang['menu_gridsquares'] = 'Lokátory';
|
||||
$lang['menu_gridmap'] = 'Mapa lokátorů';
|
||||
$lang['menu_activated_gridsquares'] = 'Aktivované lokátory';
|
||||
$lang['menu_gridsquare_activators'] = 'Aktivátoři lokátorů';
|
||||
$lang['menu_distances_worked'] = 'Vzdálenosti';
|
||||
$lang['menu_days_with_qsos'] = 'Dny s QSO';
|
||||
$lang['menu_timeline'] = 'Časová osa';
|
||||
$lang['menu_accumulated_statistics'] = 'Kumulativní statistiky';
|
||||
$lang['menu_timeplotter'] = 'Graf času';
|
||||
$lang['menu_continents'] = 'Kontinenty';
|
||||
|
||||
$lang['menu_awards'] = 'Diplomy';
|
||||
$lang['menu_cq'] = 'CQ';
|
||||
$lang['menu_dok'] = 'DOK';
|
||||
$lang['menu_dxcc'] = 'DXCC';
|
||||
$lang['menu_ffma'] = 'Fred Fish Memorial Award';
|
||||
$lang['menu_helvetia'] = "H26";
|
||||
$lang['menu_gridmaster'] = "Gridmaster";
|
||||
$lang['menu_dl_gridmaster'] = 'DL Gridmaster';
|
||||
$lang['menu_lx_gridmaster'] = 'LX Gridmaster';
|
||||
$lang['menu_ja_gridmaster'] = 'JA Gridmaster';
|
||||
$lang['menu_us_gridmaster'] = 'US Gridmaster';
|
||||
$lang['menu_iota'] = 'IOTA';
|
||||
$lang['menu_jcc'] = 'JCC';
|
||||
$lang['menu_pota'] = 'POTA';
|
||||
$lang['menu_rac'] = 'RAC';
|
||||
$lang['menu_sig'] = 'SIG';
|
||||
$lang['menu_sota'] = 'SOTA';
|
||||
$lang['menu_us_counties'] = 'US Okresy';
|
||||
$lang['menu_vucc'] = 'VUCC';
|
||||
$lang['menu_waja'] = 'WAJA';
|
||||
$lang['menu_was'] = 'WAS';
|
||||
$lang['menu_wwff'] = 'WWFF';
|
||||
|
||||
$lang['menu_tools'] = "Tools";
|
||||
$lang['menu_sat_timers'] = "SAT Timers";
|
||||
|
||||
$lang['menu_admin'] = 'Admin';
|
||||
$lang['menu_user_account'] = 'Uživatelské účty';
|
||||
$lang['menu_global_options'] = 'Globální nastavení';
|
||||
$lang['menu_modes'] = 'Režimy';
|
||||
$lang['menu_contests'] = 'Závody';
|
||||
$lang['menu_themes'] = 'Témata';
|
||||
$lang['menu_backup'] = 'Zálohování';
|
||||
$lang['menu_update_country_files'] = 'Aktualizace souborů';
|
||||
$lang['menu_debug_information'] = 'Informace pro ladění';
|
||||
$lang['menu_search_text_quicklog'] = "Add/Search Callsign";
|
||||
|
||||
$lang['menu_search_text'] = 'Hledat značku';
|
||||
$lang['menu_search_button_qicksearch_log'] = "Log";
|
||||
|
||||
$lang['menu_search_button'] = 'Hledat';
|
||||
$lang['menu_login_button'] = 'Přihlásit se';
|
||||
|
||||
$lang['menu_account'] = 'Účet';
|
||||
$lang['menu_station_logbooks'] = 'Logy stanice';
|
||||
$lang['menu_station_locations'] = 'Umístění stanice';
|
||||
$lang['menu_select_location'] = "Select a Location";
|
||||
$lang['menu_station_setup'] = 'Station Setup';
|
||||
$lang['menu_bands'] = 'Pásmo';
|
||||
$lang['menu_adif_import_export'] = 'ADIF import / export';
|
||||
$lang['menu_other_export'] = "Other Export Options";
|
||||
$lang['menu_kml_export'] = 'KML export';
|
||||
$lang['menu_dx_atlas_gridsquare_export'] = 'DX Atlas export lokátorů';
|
||||
$lang['menu_sota_csv_export'] = 'SOTA CSV export';
|
||||
$lang['menu_cabrillo_export'] = 'Cabrillo export';
|
||||
$lang['menu_cfd_export'] = "CFD Export";
|
||||
$lang['menu_oqrs_requests'] = 'OQRS požadavky';
|
||||
$lang['menu_print_requested_qsls'] = 'Tisk žádaných QSL';
|
||||
$lang['menu_labels'] = 'Štítky';
|
||||
$lang['menu_third_party_services'] = "Third-Party Services";
|
||||
$lang['menu_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['menu_eqsl_import_export'] = 'eQSL import / export';
|
||||
$lang['menu_qrz_logbook'] = 'QRZ Logbook';
|
||||
$lang['menu_hrd_logbook'] = 'HRDLog Logbook';
|
||||
$lang['menu_qo_100_dx_club_upload'] = 'QO-100 Dx Club Upload';
|
||||
$lang['menu_api_keys'] = 'API klíče';
|
||||
$lang['menu_hardware_interfaces'] = 'Hardwarové rozhraní';
|
||||
$lang['menu_help'] = 'Nápověda';
|
||||
$lang['menu_forum'] = 'Fórum';
|
||||
$lang['menu_logout'] = 'Odhlásit se';
|
||||
|
||||
$lang['menu_extras'] = "Extras";
|
||||
$lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU';
|
||||
|
||||
$lang['menu_canada'] = 'Canada';
|
||||
$lang['menu_germany'] = 'Germany';
|
||||
$lang['menu_great_britain'] = 'Great Britain';
|
||||
$lang['menu_japan'] = 'Japan';
|
||||
$lang['menu_luxemburg'] = 'Luxemburg';
|
||||
$lang['menu_switzerland'] = 'Switzerland';
|
||||
$lang['menu_usa'] = 'USA';
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['notes_menu_notes'] = 'Poznámky';
|
||||
$lang['notes_edit_note'] = 'Editovat poznámku';
|
||||
$lang['notes_your_notes'] = 'Tvoje poznámky';
|
||||
|
||||
$lang['notes_welcome'] = "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!";
|
||||
|
||||
$lang['notes_create_note'] = 'Vytvoř poznámku';
|
||||
|
||||
$lang['notes_input_title'] = 'Název';
|
||||
$lang['notes_input_category'] = 'Kategorie';
|
||||
$lang['notes_input_notes_content'] = 'Note Contents';
|
||||
$lang['notes_input_btn_save_note'] = 'Uložit poznámku';
|
||||
$lang['notes_input_btn_edit_note'] = 'Editovat poznámku';
|
||||
$lang['notes_input_btn_delete_note'] = 'Smazat poznámku';
|
||||
|
||||
$lang['notes_selection_general'] = 'Obecná';
|
||||
$lang['notes_selection_antennas'] = 'Antény';
|
||||
$lang['notes_selection_satellites'] = 'Satelity';
|
||||
@@ -1,124 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_wavelog_options'] = 'Možnosti Wavelogu';
|
||||
$lang['options_message1'] = '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.';
|
||||
|
||||
$lang['options_appearance'] = 'Vzhled';
|
||||
$lang['options_theme'] = 'Téma';
|
||||
$lang['options_saved'] = "Options saved";
|
||||
$lang['options_global_theme_choice_this_is_used_when_users_arent_logged_in'] = 'Globální volba motivu, která se používá, když uživatelé nejsou přihlášeni.';
|
||||
$lang['options_public_search_bar'] = 'Veřejná vyhledávací lišta';
|
||||
$lang['options_this_allows_non_logged_in_users_to_access_the_search_functions'] = 'Tímto se umožní ne přihlášeným uživatelům přístup ke vyhledávacím funkcím.';
|
||||
$lang['options_dashboard_notification_banner'] = 'Oznámení na palubní desce';
|
||||
$lang['options_this_allows_to_disable_the_global_notification_banner_on_the_dashboard'] = 'Tímto lze zakázat globální oznámení na palubní desce.';
|
||||
$lang['options_dashboard_map'] = 'Mapa na palubní desce';
|
||||
$lang['options_this_allows_the_map_on_the_dashboard_to_be_disabled_or_placed_on_the_right'] = 'Toto umožňuje zakázat mapu na palubní desce nebo ji umístit na pravou stranu.';
|
||||
$lang['options_logbook_map'] = 'Mapa v logbooku';
|
||||
$lang['options_this_allows_to_disable_the_map_in_the_logbook'] = 'Toto umožňuje zakázat mapu v logbooku.';
|
||||
$lang['options_public_maps'] = "Public Maps";
|
||||
$lang['options_this_allows_to_disable_all_maps_in_the_public_view'] = "This allows to disable all maps in the public view. This affects the main map and the gridsquares map.";
|
||||
|
||||
$lang['options_radios'] = 'Rádia';
|
||||
$lang['options_radio_settings'] = 'Nastavení rádia';
|
||||
$lang['options_radio_timeout_warning'] = 'Upozornění na časový limit rádia';
|
||||
$lang['options_the_radio_timeout_warning_is_used_on_the_qso_entry_panel_to_alert_you_to_radio_interface_disconnects'] = 'Upozornění na časový limit rádia se používá na panelu vstupu QSO k upozornění na odpojení rozhraní rádia.';
|
||||
$lang['options_this_number_is_in_seconds'] = 'Toto číslo je v sekundách.';
|
||||
$lang['options_radio_timeout_warning_changed_to'] = 'Upozornění na časový limit rádia změněno na ';
|
||||
|
||||
$lang['options_email'] = 'E-mail';
|
||||
$lang['options_outgoing_protocol'] = 'Odchozí protokol';
|
||||
$lang['options_smtp_encryption'] = 'SMTP šifrování';
|
||||
$lang['options_email_address'] = 'E-mailová adresa';
|
||||
$lang['options_email_sender_name'] = 'Jméno odesílatele e-mailu';
|
||||
$lang['options_smtp_host'] = 'SMTP hostitel';
|
||||
$lang['options_smtp_port'] = 'SMTP port';
|
||||
$lang['options_smtp_username'] = 'SMTP uživatelské jméno';
|
||||
$lang['options_smtp_password'] = 'SMTP heslo';
|
||||
$lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
|
||||
$lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '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 <a href="https://github.com/int2001/DXClusterAPI">DXClusterAPI</a> 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: ";
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
// Tiles
|
||||
$lang['qslcard_string_your_are_using'] = 'Je využito';
|
||||
$lang['qslcard_string_disk_space'] = 'místa pro QSL lístky';
|
||||
|
||||
$lang['qslcard_info'] = 'QSL Info';
|
||||
$lang['qslcard_sent'] = 'QSL Card has been sent';
|
||||
$lang['qslcard_sent_bureau'] = 'QSL Card has been sent via the bureau';
|
||||
$lang['qslcard_sent_direct'] = 'QSL Card has been sent via direct';
|
||||
$lang['qslcard_sent_electronic'] = 'QSL Card has been sent electronically';
|
||||
$lang['qslcard_sent_manager'] = 'QSL Card has been sent via manager';
|
||||
$lang['qslcard_rcvd'] = 'QSL Card has been received';
|
||||
$lang['qslcard_rcvd_bureau'] = 'QSL Card has been received via the bureau';
|
||||
$lang['qslcard_rcvd_direct'] = 'QSL Card has been received via direct';
|
||||
$lang['qslcard_rcvd_electronic'] = 'QSL Card has been received electronically';
|
||||
$lang['qslcard_rcvd_manager'] = 'QSL Card has been received via manager';
|
||||
|
||||
$lang['qslcard_upload_front'] = 'Uploaded QSL Card front image';
|
||||
$lang['qslcard_upload_back'] = 'Uploaded QSL Card back image';
|
||||
|
||||
$lang['qslcard_upload_button'] = 'Upload QSL Card image';
|
||||
|
||||
$lang['qslcard_qslprint_header'] = "Export Requested QSLs for Printing";
|
||||
$lang['qslcard_qslprint_text_line1'] = "Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent.";
|
||||
$lang['qslcard_qslprint_text_line2'] = "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their 'QSL Sent' field.";
|
||||
$lang['qslcard_qslprint_send_method'] = "Send Method";
|
||||
$lang['qslcard_qslprint_mark_as_sent'] = "Mark as sent";
|
||||
$lang['qslcard_qslprint_mark_selected_as_printed'] = "Mark selected QSOs as printed";
|
||||
$lang['qslcard_qslprint_remove_selected_from_queue'] = "Remove selected QSOs from the queue";
|
||||
$lang['qslcard_qslprint_export_csv'] = "Export requested QSLs to CSV-file";
|
||||
$lang['qslcard_qslprint_export_adif'] = "Export requested QSLs to ADIF-file";
|
||||
$lang['qslcard_qslprint_mark_requested_as_sent'] = "Mark requested QSLs as sent";
|
||||
$lang['qslcard_qslprint_no_qsls_found'] = "No QSLs to print were found!";
|
||||
$lang['qslcard_qslprint_add_to_queue'] = "Add to print queue";
|
||||
$lang['qslcard_qslprint_no_additional_qso_found'] = "No additional QSO's were found. That means they are probably already in the queue.";
|
||||
|
||||
@@ -1,103 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
// Tiles
|
||||
$lang['qso_title_qso_map'] = 'Mapa spojení';
|
||||
$lang['qso_title_suggestions'] = 'Návrhy';
|
||||
$lang['qso_title_previous_contacts'] = 'Předchozí spojení';
|
||||
$lang['qso_title_times_worked_before'] = "times worked before";
|
||||
$lang['qso_title_not_worked_before'] = "Not worked before";
|
||||
$lang['qso_title_image'] = 'Profile Picture';
|
||||
$lang['qso_previous_max_shown'] = "Max. 5 previous contacts are shown";
|
||||
|
||||
// Quicklog on Dashboard
|
||||
$lang['qso_quicklog_enter_callsign'] = 'QUICKLOG Enter Callsign';
|
||||
|
||||
// Input Help Text on the /QSO Display
|
||||
$lang['qso_transmit_power_helptext'] = 'Zadej výkon ve Wattech. Jsou povolen pouz čísla';
|
||||
|
||||
$lang['qso_sota_ref_helptext'] = 'Příklad: GM/NS-001.';
|
||||
$lang['qso_wwff_ref_helptext'] = 'Příklad: DLFF-0069.';
|
||||
$lang['qso_pota_ref_helptext'] = 'Příklad: PA-0150. Multiple values allowed.';
|
||||
|
||||
$lang['qso_sig_helptext'] = 'Příklad: GMA';
|
||||
$lang['qso_sig_info_helptext'] = 'Příklad: DA/NW-357';
|
||||
|
||||
$lang['qso_dok_helptext'] = 'Příklad: Q03';
|
||||
|
||||
$lang['qso_notes_helptext'] = 'Obsah je užíván pouze Wavelogu a není exportován do dalších služeb.';
|
||||
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
|
||||
|
||||
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
|
||||
|
||||
// error text //
|
||||
$lang['qso_error_timeoff_less_timeon'] = "TimeOff is less than TimeOn";
|
||||
|
||||
// Button Text on /qso Display
|
||||
|
||||
$lang['qso_btn_clear_qso'] = 'Clear';
|
||||
$lang['qso_btn_reset_to_default'] = 'Reset to Default';
|
||||
$lang['qso_btn_save_qso'] = 'Uložit spojení';
|
||||
$lang['qso_btn_edit_qso'] = 'Editovat spojení';
|
||||
$lang['qso_delete_warning'] = "Warning! Are you sure you want delete QSO with ";
|
||||
|
||||
// QSO Details
|
||||
|
||||
$lang['qso_details'] = 'Detail spojení';
|
||||
|
||||
$lang['fav_add'] = 'Add Band/Mode to Favs';
|
||||
$lang['qso_operator_callsign'] = 'Operator Callsign';
|
||||
|
||||
// Simple FLE (FastLogEntry)
|
||||
|
||||
$lang['qso_simplefle_info'] = "What is that?";
|
||||
$lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)";
|
||||
$lang['qso_simplefle_info_ln2'] = "'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.";
|
||||
$lang['qso_simplefle_info_ln3'] = "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.";
|
||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||
$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 <a href=". site_url('station') . ">Station Location</a>";
|
||||
$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 <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||
|
||||
$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 <a href='https://github.com/wavelog/wavelog/wiki/SimpleFLE' target='_blank'>this article</a> of our Wiki.";
|
||||
|
||||
$lang['qso_simplefle_options'] = 'Options';
|
||||
|
||||
@@ -1,120 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Station Logbooks
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['station_logbooks'] = "Station Logbooks";
|
||||
$lang['station_logbooks_description_header'] = "What are Station Logbooks";
|
||||
$lang['station_logbooks_description_text'] = "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.";
|
||||
$lang['station_logbooks_create'] = "Create Station Logbook";
|
||||
$lang['station_logbooks_status'] = "Status";
|
||||
$lang['station_logbooks_link'] = "Link";
|
||||
$lang['station_logbooks_public_search'] = "Public Search";
|
||||
$lang['station_logbooks_set_active'] = "Set as Active Logbook";
|
||||
$lang['station_logbooks_active_logbook'] = "Active Logbook";
|
||||
$lang['station_logbooks_edit_logbook'] = "Edit Station Logbook"; // 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'] = ' Updated.';
|
||||
$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 <a href='https://zone-check.eu/?m=loc' target='_blank'>click here</a>!";
|
||||
$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 <a target='_blank' href='https://www.iota-world.org/iota-directory/annex-f-short-title-iota-reference-number-list.html'>IOTA World</a> website.";
|
||||
$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the <a target='_blank' href='https://www.sotamaps.org/'>SOTA Maps</a> website.";
|
||||
$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the <a target='_blank' href='https://www.cqgma.org/mvs/'>GMA Map</a> website.";
|
||||
$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the <a target='_blank' href='https://pota.app/#/map/'>POTA Map</a> 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 <a href='https://logbook.qrz.com/logbook' target='_blank'>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 <a href='http://www.hrdlog.net/EditUser.aspx' target='_blank'>HRDLog.net Userprofile page";
|
||||
$lang['station_location_qo100_hint'] = "Create your API key on <a href='https://qo100dx.club' target='_blank'>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';
|
||||
|
||||
|
||||
@@ -1,83 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['statistics_statistics'] = 'Statistiky';
|
||||
|
||||
$lang['statistics_explore_the_logbook'] = 'Prozkoumejte logbook.';
|
||||
|
||||
$lang['statistics_years'] = 'Roky';
|
||||
$lang['statistics_modes'] = 'Módy';
|
||||
$lang['statistics_bands'] = 'Pásma';
|
||||
$lang['statistics_qsos'] = 'QSO';
|
||||
$lang['statistics_unique_callsigns'] = 'Jedinečné značky';
|
||||
|
||||
$lang['statistics_total'] = 'Celkem';
|
||||
|
||||
$lang['statistics_year'] = 'Rok';
|
||||
|
||||
$lang['statistics_number_of_qso_worked_each_year'] = "Number of QSOs worked each year";
|
||||
$lang['statistics_number_of_qso_worked'] = "# of QSO's worked";
|
||||
|
||||
/*
|
||||
*
|
||||
* Distances
|
||||
*
|
||||
*/
|
||||
|
||||
$lang['statistics_distances_worked'] = "Distances Worked";
|
||||
$lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> 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)";
|
||||
|
||||
@@ -1,136 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['account_logbook_fields'] = 'Logbook fields';
|
||||
$lang['account_column1_text'] = 'Choose column 1';
|
||||
$lang['account_column2_text'] = 'Choose column 2';
|
||||
$lang['account_column3_text'] = 'Choose column 3';
|
||||
$lang['account_column4_text'] = 'Choose column 4';
|
||||
$lang['account_column5_text'] = 'Choose column 5 (only for logbook)';
|
||||
|
||||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
$lang['account_email_address'] = 'Email Address';
|
||||
$lang['account_password'] = 'Password';
|
||||
|
||||
$lang['account_roles'] = 'Roles';
|
||||
$lang['account_user_role'] = 'User Role';
|
||||
$lang['account_word_admin'] = 'Admin';
|
||||
|
||||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_wavelog_preferences'] = 'Wavelog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
$lang['account_log_end_time_hint'] = '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.';
|
||||
$lang['account_quicklog_feature'] = "Quicklog Field";
|
||||
$lang['account_quicklog_feature_hint'] = "With this feature, you can log callsigns using the search field in the header.";
|
||||
$lang['account_quicklog_enter'] = "Quicklog - Action on press Enter";
|
||||
$lang['account_quicklog_enter_hint'] = "What action should be performed when Enter is pressed in the quicklog field?";
|
||||
$lang['account_quicklog_enter_log'] = "Log Callsign";
|
||||
$lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_wavelog_language'] = 'Wavelog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
|
||||
$lang['account_gridsquare_and_location_autocomplete'] = 'Gridsquare and Location Autocomplete';
|
||||
$lang['account_location_auto_lookup'] = 'Location auto lookup.';
|
||||
$lang['account_if_set_gridsquare_is_fetched_based_on_location_name'] = 'If set, gridsquare is fetched based on location name.';
|
||||
$lang['account_sota_auto_lookup_gridsquare_and_name_for_summit'] = 'SOTA auto lookup gridsquare and name for summit.';
|
||||
$lang['account_wwff_auto_lookup_gridsquare_and_name_for_reference'] = 'WWFF auto lookup gridsquare and name for reference.';
|
||||
$lang['account_pota_auto_lookup_gridsquare_and_name_for_park'] = 'POTA auto lookup gridsquare and name for park.';
|
||||
$lang['account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'] = 'If set, name and gridsquare is fetched from the API and filled in location and locator.';
|
||||
|
||||
$lang['account_previous_qsl_type'] = 'Previous QSL Type';
|
||||
$lang['account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'] = 'Select the type of QSL to show in the previous QSOs section.';
|
||||
|
||||
$lang['account_qrzcom_hamqthcom_images'] = 'qrz.com/hamqth.com Images';
|
||||
$lang['account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'] = 'Show profile picture of QSO partner from qrz.com/hamqth.com profile in the log QSO section.';
|
||||
$lang['account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'] = 'Please set your qrz.com/hamqth.com credentials in the general config file.';
|
||||
|
||||
$lang['account_amsat_status_upload'] = 'AMSAT Status Upload';
|
||||
$lang['account_upload_status_of_sat_qsos_to'] = 'Upload status of SAT QSOs to';
|
||||
|
||||
$lang['account_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['account_logbook_of_the_world_lotw_username'] = 'Logbook of The World (LoTW) Username';
|
||||
$lang['account_logbook_of_the_world_lotw_password'] = 'Logbook of The World (LoTW) Password';
|
||||
|
||||
$lang['account_clublog'] = 'Club Log';
|
||||
$lang['account_clublog_email_callsign'] = 'Club Log Email/Callsign';
|
||||
$lang['account_clublog_password'] = 'Club Log Password';
|
||||
$lang['account_the_email_or_callsign_you_use_to_login_to_club_log'] = 'The Email or Callsign you use to login to Club Log';
|
||||
|
||||
$lang['account_eqsl'] = 'eQSL';
|
||||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
$lang['account_are_you_sure_you_want_to_delete_the_user_account'] = 'Are you sure you want to delete the user account';
|
||||
$lang['account_yes_delete_this_user'] = 'Yes, delete this user';
|
||||
$lang['account_no_do_not_delete_this_user'] = 'No, do not delete this user';
|
||||
|
||||
$lang['account_forgot_password'] = 'Forgot Password?';
|
||||
$lang['account_you_can_reset_your_password_here'] = 'You can reset your password here.';
|
||||
$lang['account_reset_password'] = 'Reset Password';
|
||||
$lang['account_the_email_field_is_required'] = 'The Email field is required';
|
||||
$lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
$lang['account_user_mastodon'] = 'URL of Mastodonserver';
|
||||
$lang['account_user_mastodon_hint'] = "Main URL of your Mastodon server, e.g. <a href='https://radiosocial.de/' target='_blank'>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 <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> 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 <a href='https://hams.at/users/settings' target='_blank'>https://hams.at/users/settings</a>.";
|
||||
$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.";
|
||||
@@ -1,139 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_import'] = "ADIF Import";
|
||||
$lang['adif_export'] = "ADIF Export";
|
||||
// $lang['lotw_title'] --> 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 <b>all</b> 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'] = " <b>Dupes were inserted!</b>";
|
||||
$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";
|
||||
@@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.';
|
||||
$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.';
|
||||
$lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.';
|
||||
$lang['admin_user_line4'] = "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.";
|
||||
|
||||
$lang['admin_user_list'] = 'User List';
|
||||
|
||||
$lang['admin_user'] = 'User';
|
||||
$lang['admin_email'] = 'E-mail';
|
||||
$lang['admin_type'] = 'Type';
|
||||
$lang['admin_last_seen'] = "Last seen";
|
||||
$lang['admin_last_qso'] = "Last QSO:";
|
||||
$lang['admin_no_qso_in_log'] = "No QSOs in Log";
|
||||
$lang['admin_refresh_list'] = "Refresh List";
|
||||
$lang['admin_options'] = 'Options';
|
||||
|
||||
$lang['admin_station_logbooks'] = 'Logbooks';
|
||||
$lang['admin_station_locations'] = 'Locations';
|
||||
|
||||
$lang['admin_create_user'] = 'Create user';
|
||||
$lang['admin_delete'] = 'Delete';
|
||||
$lang['admin_remove'] = "Remove";
|
||||
$lang['admin_edit'] = 'Edit';
|
||||
$lang['admin_create'] = 'Create';
|
||||
$lang['admin_update'] = 'Update';
|
||||
$lang['admin_copy'] = 'Copy';
|
||||
$lang['admin_save'] = 'Save';
|
||||
$lang['admin_close'] = 'Close';
|
||||
$lang['admin_clear'] = "Clear";
|
||||
$lang['admin_user_accounts'] = 'User Accounts';
|
||||
$lang['admin_danger'] = 'DANGER!';
|
||||
$lang['admin_experimental'] = "Experimental";
|
||||
$lang['admin_password_reset'] = "Password Reset";
|
||||
|
||||
$lang['admin_email_settings_incorrect'] = "Email settings are incorrect.";
|
||||
$lang['admin_password_reset_processed'] = "Password-reset e-mail sent to user:";
|
||||
$lang['admin_confirm_pwd_reset'] = "Do you really want to send this user a password-reset link?";
|
||||
|
||||
|
||||
// Contest Menu
|
||||
|
||||
$lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.';
|
||||
$lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.';
|
||||
$lang['admin_contest_menu_name'] = 'Name';
|
||||
$lang['admin_contest_menu_adif'] = 'ADIF Name';
|
||||
$lang['admin_contest_menu_active'] = 'Active';
|
||||
$lang['admin_contest_menu_n_active'] = 'Not Active';
|
||||
$lang['admin_contest_menu_activate'] = 'Activate';
|
||||
$lang['admin_contest_menu_deactivate'] = 'Deactivate';
|
||||
|
||||
$lang['admin_contest_add_contest'] = 'Add a Contest';
|
||||
$lang["admin_contest_create"] = "Create";
|
||||
$lang['admin_contest_all_active'] = 'Activate All';
|
||||
$lang['admin_contest_all_deactive'] = 'Deactivate All';
|
||||
|
||||
$lang['admin_contest_name_adif'] = 'Contest ADIF Name';
|
||||
$lang['admin_contest_name_of_contest'] = 'Name of the Contest';
|
||||
$lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification';
|
||||
$lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list';
|
||||
$lang['admin_contest_edit_update_contest'] = 'Update Contest';
|
||||
$lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: ';
|
||||
$lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?';
|
||||
$lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?';
|
||||
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['awards_info_button'] = "Award Info";
|
||||
$lang['awards_show_worked'] = "Show worked";
|
||||
$lang['awards_show_confirmed'] = "Show confirmed";
|
||||
$lang['awards_show_not_worked'] = "Show not worked";
|
||||
$lang['awards_qsl_type'] = "Show QSO with QSL Type";
|
||||
$lang['awards_show_cq_map'] = "Show CQ Zone Map";
|
||||
$lang['awards_summary'] = "Summary";
|
||||
$lang['awards_total'] = "Total";
|
||||
$lang['awards_total_worked'] = "Total worked";
|
||||
$lang['awards_total_confirmed'] = "Total confirmed";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Awards - CQ Magazine WAZ";
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
$lang['awards_show_itu_map'] = "Show ITU Zone Map";
|
||||
$lang['awards_show_jcc_map'] = "Show JCC Map";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
CQ -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_cq_description_ln1'] = "CQ Magazine WAZ Award";
|
||||
$lang['awards_cq_description_ln2'] = "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.";
|
||||
$lang['awards_cq_description_ln3'] = "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to all 40 CQ Zones along with the corresponding confirmation.";
|
||||
$lang['awards_cq_description_ln4'] = "You can find all the information and rules on the Website of the <a href='https://cq-amateur-radio.com/cq_awards/cq_waz_awards/index_cq_waz_award.html' target='_blank'>CQ Magazine</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/districtsdoks/' target='_blank'>DARC website</a>. Information about the DOK Awards and its rules can be found <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/award-check/' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='http://www.arrl.org/desoto' target='_blank'>'How to Count Countries Worked, A New DX Scoring System'</a>.";
|
||||
$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL website</a>.";
|
||||
$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: <a href='https://www.arrl.org/ffma' target='_blank'>https://www.arrl.org/ffma</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.uska.ch/contest/uska-diplome/' target='_blank'>https://www.uska.ch/contest/uska-diplome/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.iota-world.org/' target='_blank'>IOTA WORLD website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://parksontheair.com/pota-awards/' target='_blank'>Parks on the Air® website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.sota.org.uk/' target='_blank'>https://www.sota.org.uk/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://cq-amateur-radio.com/cq_awards/cq_usa_ca_awards/cq_usa_ca_awards.html' target='_blank'>here</a>.";
|
||||
$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 <a href='https://www.amsat.org/gridmaster/' target='_blank'>website</a>: 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: <a href='https://www.arrl.org/vucc' target='_blank'>Click here</a>.";
|
||||
$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 <a href='https://www.arrl.org/was' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wwff.co/awards/' target='_blank'>https://wwff.co/awards/</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wab.intermip.net/default.php' target='_blank'>https://wab.intermip.net/default.php</a>.";
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://rsgb.org/main/files/2019/01/Worked_ITU_Zones_Award_Form_2019.pdf' target='_blank'>RSGB</a>.";
|
||||
@@ -1,33 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['contesting_page_title'] = 'Contest Logging';
|
||||
$lang['contesting_button_reset_contest_session'] = 'Herstel Contest Sessie';
|
||||
$lang['contesting_operator_callsign'] = 'Operator Callsign';
|
||||
|
||||
$lang['contesting_exchange_type'] = 'Soort uitwisseling';
|
||||
$lang['contesting_exchange_type_serial'] = 'Volgnummer';
|
||||
$lang['contesting_exchange_type_none'] = 'None';
|
||||
$lang['contesting_exchange_type_exchange'] = 'Exchange';
|
||||
$lang['contesting_exchange_type_gridsquare'] = 'Gridsquare';
|
||||
$lang['contesting_exchange_type_other'] = 'Anders';
|
||||
$lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange';
|
||||
$lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare';
|
||||
$lang['contesting_exchange_serial_s'] = 'Serial (S)';
|
||||
$lang['contesting_exchange_serial_r'] = 'Serial (R)';
|
||||
$lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)';
|
||||
$lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)';
|
||||
|
||||
$lang['contesting_contest_name'] = 'Contest Naam';
|
||||
|
||||
$lang['contesting_btn_reset_qso'] = 'Wis QSO';
|
||||
$lang['contesting_btn_save_qso'] = 'Bewaar QSO';
|
||||
|
||||
$lang['contesting_title_callsign_suggestions'] = 'Roepnaam suggesties';
|
||||
$lang['contesting_title_contest_logbook'] = 'Contest Logboek';
|
||||
|
||||
$lang['contesting_copy_exch_to'] = 'Copy received exchange to';
|
||||
$lang['contesting_copy_exch_hint'] = 'Exchange is only copied if it is matching rules for the selected field!';
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['eqsl_short'] = 'eQSL';
|
||||
@@ -1,76 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
KML Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_kml_header'] = "KML Export";
|
||||
$lang['export_kml_description'] = "Export your logbook to a KML file for use in Google Earth.";
|
||||
$lang['export_kml_grisquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DX Atlas Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_dxatlas_header'] = "DX Atlas Export";
|
||||
$lang['export_dxatlas_description'] = "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares.";
|
||||
$lang['export_dxatlas_gridsquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
SOTA Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_sota_header'] = "SOTA CSV Export";
|
||||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See <a href=\"https://toplist.darc.de\" target=\"_new\">https://toplist.darc.de</a>)";
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Quickfilters';
|
||||
$lang['filter_qsl_filters'] = 'QSL Filters';
|
||||
$lang['filter_filters'] = 'Filters';
|
||||
$lang['filter_actions'] = 'Actions';
|
||||
$lang['filter_results'] = '# Results';
|
||||
$lang['filter_search'] = 'Search';
|
||||
$lang['filter_dupes'] = "Dupes";
|
||||
$lang['filter_map'] = 'Map';
|
||||
$lang['filter_options'] = 'Options';
|
||||
$lang['filter_reset'] = 'Reset';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Quicksearch with selected: ';
|
||||
$lang['filter_search_callsign'] = 'Search Callsign';
|
||||
$lang['filter_search_dxcc'] = 'Search DXCC';
|
||||
$lang['filter_search_state'] = 'Search State';
|
||||
$lang['filter_search_gridsquare'] = 'Search Gridsquare';
|
||||
$lang['filter_search_cq_zone'] = 'Search CQ Zone';
|
||||
$lang['filter_search_itu_zone'] = 'Search ITU Zone';
|
||||
$lang['filter_search_mode'] = 'Search Mode';
|
||||
$lang['filter_search_band'] = 'Search Band';
|
||||
$lang['filter_search_iota'] = 'Search IOTA';
|
||||
$lang['filter_search_sota'] = 'Search SOTA';
|
||||
$lang['filter_search_wwff'] = 'Search WWFF';
|
||||
$lang['filter_search_pota'] = 'Search POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL sent';
|
||||
$lang['filter_qsl_recv'] = 'QSL received';
|
||||
$lang['filter_qsl_sent_method'] = 'QSL send. method';
|
||||
$lang['filter_qsl_recv_method'] = 'QSL recv. method';
|
||||
$lang['filter_lotw_sent'] = 'LoTW sent';
|
||||
$lang['filter_lotw_recv'] = 'LoTW received';
|
||||
$lang['filter_eqsl_sent'] = 'eQSL sent';
|
||||
$lang['filter_eqsl_recv'] = 'eQSL received';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'QSL Images';
|
||||
|
||||
// $lang['general_word_all'] --> 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';
|
||||
@@ -1,242 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['error_no_active_station_profile'] = 'Let op: Activeer een station profiel.';
|
||||
|
||||
$lang['notice_turn_the_radio_on'] = 'Je hebt vandaag nog geen QSOs gemaakt. Tijd om de set aan te zetten!';
|
||||
|
||||
$lang['general_word_important'] = 'Belangrijk';
|
||||
$lang['general_word_warning'] = 'Warning';
|
||||
$lang['general_word_danger'] = 'DANGER';
|
||||
$lang['general_word_maintenance'] = 'Maintenance';
|
||||
$lang['general_word_info'] = 'Info';
|
||||
$lang['general_word_choose_file'] = 'Choose file';
|
||||
$lang['general_word_please_wait'] = "Please Wait ...";
|
||||
$lang['general_word_next'] = 'Next';
|
||||
$lang['general_word_previous'] = 'Previous';
|
||||
$lang['general_word_cancel'] = "Cancel";
|
||||
$lang['general_word_ok'] = "OK";
|
||||
$lang['general_word_show'] = "Show";
|
||||
$lang['general_word_attention'] = "Attention";
|
||||
$lang['general_word_message'] = "Message";
|
||||
$lang['general_word_enabled'] = "Enabled";
|
||||
$lang['general_word_disabled'] = "Disabled";
|
||||
$lang['general_word_export'] = "Export";
|
||||
$lang['general_word_import'] = "Import";
|
||||
$lang['general_word_count'] = "Count";
|
||||
$lang['general_word_filtering_on'] = "Filtering on";
|
||||
$lang['general_word_not_display'] = "Not display";
|
||||
$lang['general_word_icon'] = "Icon";
|
||||
$lang['general_word_never'] = "Never";
|
||||
$lang['general_word_active'] = "Active";
|
||||
$lang['general_word_inactive'] = "Inactive";
|
||||
|
||||
$lang['general_word_date'] = 'Datum';
|
||||
$lang['general_word_startdate'] = "Start Date";
|
||||
$lang['general_word_enddate'] = "End Date";
|
||||
$lang['general_word_time'] = 'Tijd';
|
||||
$lang['general_word_time_on'] = 'Time on';
|
||||
$lang['general_word_time_off'] = 'Time off';
|
||||
$lang['general_word_datetime'] = 'Date/Time';
|
||||
$lang['general_word_none'] = 'Geen';
|
||||
$lang['general_word_name'] = 'Naam';
|
||||
$lang['general_word_location'] = 'Locatie';
|
||||
$lang['general_word_comment'] = 'Opmerking';
|
||||
$lang['general_word_general'] = 'Algemeen';
|
||||
$lang['general_word_satellite'] = 'Satelliet';
|
||||
$lang['general_word_orbit'] = 'Orbit';
|
||||
$lang['general_word_satellite_short'] = 'Sat';
|
||||
$lang['general_word_notes'] = 'Aantekeningen';
|
||||
$lang['general_word_country'] = 'Land';
|
||||
$lang['general_word_city'] = 'By';
|
||||
$lang['general_word_age'] = 'Age';
|
||||
|
||||
$lang['general_word_total'] = 'Totaal';
|
||||
$lang['general_word_year'] = 'Jaar';
|
||||
$lang['general_word_month'] = 'Maand';
|
||||
$lang['general_word_day'] = "Day";
|
||||
$lang['general_word_days'] = "Days";
|
||||
$lang['general_word_period'] = "Period";
|
||||
$lang['general_word_yearly'] = "Yearly";
|
||||
$lang['general_word_monthly'] = "Monthly";
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Gewerkt';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
$lang['general_word_confirmed'] = 'Bevestigd';
|
||||
$lang['general_word_not_confirmed'] = "Not Confirmed";
|
||||
$lang['general_word_confirmation'] = "Confirmation";
|
||||
$lang['general_word_needed'] = 'Nodig';
|
||||
|
||||
$lang['general_word_all'] = 'All';
|
||||
$lang['general_word_sent'] = 'Verzonden';
|
||||
$lang['general_word_yes'] = 'Yes';
|
||||
$lang['general_word_method'] = 'Method';
|
||||
|
||||
$lang['general_word_sent'] = 'Sent';
|
||||
$lang['general_word_received'] = 'Ontvangen';
|
||||
$lang['general_word_requested'] = 'Aangevraagd';
|
||||
$lang['general_word_queued'] = 'Queued';
|
||||
$lang['general_word_table'] = "Table";
|
||||
$lang['general_word_invalid_ignore'] = 'Invalid (Ignore)';
|
||||
$lang['general_word_qslcard'] = 'QSL Card';
|
||||
$lang['general_word_qslcard_management'] = 'QSL Management';
|
||||
$lang['general_word_qslcards'] = 'QSL kaarten';
|
||||
$lang['general_word_qslcard_direct'] = 'Direct';
|
||||
$lang['general_word_qslcard_bureau'] = 'Bureau';
|
||||
$lang['general_word_qslcard_electronic'] = 'Electronic';
|
||||
$lang['general_word_qslcard_manager'] = 'Manager';
|
||||
$lang['general_word_qslcard_via'] = 'Via';
|
||||
$lang['general_word_eqslcard'] = 'eQSL Card';
|
||||
$lang['general_word_eqslcards'] = 'eQSL Cards';
|
||||
$lang['general_word_lotw'] = 'Logbook of the World';
|
||||
$lang['general_word_lotw_short'] = 'LoTW';
|
||||
|
||||
$lang['general_word_details'] = 'Details';
|
||||
$lang['general_word_qso_data'] = 'QSO Data';
|
||||
|
||||
$lang['general_edit_qso'] = 'Wijzig QSO';
|
||||
$lang['general_mark_qsl_rx_bureau'] = 'Markeer QSL ontvangen (Bureau)';
|
||||
$lang['general_mark_qsl_rx_direct'] = 'Markeer QSL ontvangen (Direct)';
|
||||
$lang['general_mark_qsl_rx_electronic'] = 'Markeer QSL ontvangen (Electronic)';
|
||||
$lang['general_mark_qsl_tx_bureau'] = 'Markeer QSL udsendt (Bureau)';
|
||||
$lang['general_mark_qsl_tx_direct'] = 'Markeer QSL udsendt (Direct)';
|
||||
$lang['general_mark_qsl_requested'] = 'Markeer QSL Kort anmodet om';
|
||||
$lang['general_mark_qsl_requested_bureau'] = 'Markeer QSL Kort anmodet om (Bureau)';
|
||||
$lang['general_mark_qsl_requested_direct'] = 'Markeer QSL Kort anmodet om (Direct)';
|
||||
$lang['general_mark_qsl_not_required'] = 'Markeer QSL Kort ikke påkrævet';
|
||||
|
||||
$lang['general_delete_qso'] = 'Wis QSO';
|
||||
$lang['general_more_qso'] = 'More QSOs';
|
||||
|
||||
$lang['general_lookup_qrz'] = 'Lookup on QRZ.com';
|
||||
$lang['general_lookup_hamqth'] = 'Lookup on HamQTH';
|
||||
|
||||
$lang['general_total_distance'] = 'Total Distance';
|
||||
|
||||
// PHP Upload Warning
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Wavelog Terms
|
||||
$lang['wavelog_station_profile'] = 'Station Profiel';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
$lang['gen_hamradio_qso'] = 'QSO';
|
||||
$lang['gen_hamradio_station'] = 'Station';
|
||||
|
||||
$lang['gen_hamradio_call'] = 'Call';
|
||||
$lang['gen_hamradio_callsign'] = 'Roepletters';
|
||||
$lang['gen_hamradio_prefix'] = "Prefix";
|
||||
$lang['gen_hamradio_suffix'] = "Suffix";
|
||||
$lang['gen_hamradio_de'] = 'De';
|
||||
$lang['gen_hamradio_dx'] = 'Dx';
|
||||
$lang['gen_hamradio_mode'] = 'Mode';
|
||||
$lang['gen_hamradio_ant_az'] = 'Antenna Azimuth';
|
||||
$lang['gen_hamradio_ant_el'] = 'Antenna Elevation';
|
||||
$lang['gen_hamradio_rst_sent'] = 'Verzonden';
|
||||
$lang['gen_hamradio_rst_rcvd'] = 'Ontvangen';
|
||||
$lang['gen_hamradio_band'] = 'Band';
|
||||
$lang['gen_hamradio_bandgroup'] = "Bandgroup";
|
||||
$lang['gen_hamradio_band_rx'] = 'Band (RX)';
|
||||
$lang['gen_hamradio_frequency'] = 'Frequentie';
|
||||
$lang['gen_hamradio_frequency_rx'] = 'Frequentie (RX)';
|
||||
$lang['gen_hamradio_radio'] = 'Radio';
|
||||
$lang['gen_hamradio_rsts'] = 'RST (S)';
|
||||
$lang['gen_hamradio_rstr'] = 'RST (R)';
|
||||
$lang['gen_hamradio_refs'] = 'Refs';
|
||||
$lang['gen_hamradio_myrefs'] = 'My Refs';
|
||||
$lang['gen_hamradio_exchange_sent_short'] = 'Verz (S)';
|
||||
$lang['gen_hamradio_exchange_rcvd_short'] = 'Ontv (R)';
|
||||
$lang['gen_hamradio_qsl'] = 'QSL';
|
||||
$lang['gen_hamradio_qsltype'] = "QSL Type";
|
||||
$lang['gen_hamradio_qslvia'] = 'QSL via';
|
||||
$lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||
$lang['gen_hamradio_locator'] = 'Locator';
|
||||
$lang['gen_hamradio_transmit_power'] = 'Vermogen (W)';
|
||||
$lang['gen_hamradio_receive_power'] = 'RX Power (W)';
|
||||
$lang['gen_hamradio_propagation_mode'] = 'Propagattie Mode';
|
||||
|
||||
$lang['gen_hamradio_satellite_name'] = 'Satelliet Naam';
|
||||
$lang['gen_hamradio_satellite_mode'] = 'Satelliet Mode';
|
||||
|
||||
$lang['gen_hamradio_logbook'] = 'Logboek';
|
||||
$lang['gen_hamradio_active_logbook'] = 'Active Logbook';
|
||||
$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook";
|
||||
$lang['gen_hamradio_award'] = "Award";
|
||||
|
||||
$lang['gen_hamradio_zones'] = 'Zones';
|
||||
$lang['gen_hamradio_cq_zone'] = 'CQ Zone';
|
||||
$lang['gen_hamradio_itu_zone'] = 'ITU Zone';
|
||||
$lang['gen_hamradio_dxcc'] = 'DXCC';
|
||||
$lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC';
|
||||
$lang['gen_hamradio_continent'] = 'Continent';
|
||||
$lang['gen_hamradio_usa_state'] = 'USA Staat';
|
||||
$lang['gen_hamradio_county_reference'] = 'USA County';
|
||||
$lang['gen_hamradio_iota_reference'] = 'IOTA Referentie';
|
||||
$lang['gen_hamradio_sota_reference'] = 'SOTA Referentie';
|
||||
$lang['gen_hamradio_wwff_reference'] = 'WWFF Referentie';
|
||||
$lang['gen_hamradio_pota_reference'] = 'POTA Referentie';
|
||||
$lang['gen_hamradio_dok'] = 'DOK';
|
||||
$lang['gen_hamradio_state'] = 'State';
|
||||
$lang['gen_hamradio_iota'] = 'IOTA';
|
||||
$lang['gen_hamradio_sota'] = 'SOTA';
|
||||
$lang['gen_hamradio_wwff'] = 'WWFF';
|
||||
$lang['gen_hamradio_pota'] = 'POTA';
|
||||
$lang['gen_hamradio_gridsquare'] = 'Gridsquare';
|
||||
$lang['gen_hamradio_get_gridsquare'] = 'Get Gridsquare';
|
||||
$lang['gen_hamradio_gridsquare_show'] = "Show Locator";
|
||||
$lang['gen_hamradio_latitude'] = "Latitude";
|
||||
$lang['gen_hamradio_longitude'] = "Longitude";
|
||||
$lang['gen_hamradio_bearing'] = "Bearing";
|
||||
$lang['gen_hamradio_distance'] = 'Distance';
|
||||
$lang['gen_hamradio_operator'] = 'Operator';
|
||||
|
||||
$lang['gen_hamradio_sig'] = 'Sig';
|
||||
$lang['gen_hamradio_sig_info'] = 'Sig Info';
|
||||
|
||||
// Find your CQ/ITU Zone
|
||||
$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then";
|
||||
$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then";
|
||||
$lang['gen_find_zone_part2'] = "click here";
|
||||
$lang['gen_find_zone_part3'] = "to find it!";
|
||||
|
||||
// Dashboard Words
|
||||
$lang['dashboard_you_have_had'] = 'Je hebt';
|
||||
$lang['dashboard_qsos_today'] = 'QSOs vandaag!';
|
||||
$lang['dashboard_qso_breakdown'] = 'QSOs overzicht';
|
||||
$lang['dashboard_countries_breakdown'] = 'Landen overzicht';
|
||||
$lang['gen_to_date'] = 'To date';
|
||||
|
||||
$lang['gen_from_date'] = 'From date';
|
||||
|
||||
$lang['gen_this_qso_was_confirmed_on'] = 'This QSO was confirmed on';
|
||||
|
||||
$lang['error_no_logbook_found'] = 'No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:';
|
||||
|
||||
$lang['copy_to_clipboard'] = 'Copy to clipboard';
|
||||
|
||||
$lang['africa'] = 'Africa';
|
||||
$lang['antarctica'] = 'Antarctica';
|
||||
$lang['asia'] = 'Asia';
|
||||
$lang['europe'] = 'Europe';
|
||||
$lang['northamerica'] = 'North America';
|
||||
$lang['oceania'] = 'Oceania';
|
||||
$lang['southamerica'] = 'South America';
|
||||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('stationsetup') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('stationsetup') . '">here</a> 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";
|
||||
@@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['gridsquares_gridsquare_map'] = 'Gridsquare Map';
|
||||
$lang['gridsquares_activated_gridsquare_map'] = "Activated Gridsquare Map";
|
||||
$lang['gridsquares_gridsquare_activators'] = "Gridsquare Activators";
|
||||
|
||||
$lang['gridsquares_confirmed_is_green'] = 'Confirmed is Green';
|
||||
$lang['gridsquares_worked_but_not_confirmed_is_red'] = 'Worked but not confirmed is Red';
|
||||
$lang['gridsquares_activated_but_not_confirmed_is_red'] = 'Activated but not confirmed is Red';
|
||||
|
||||
$lang['gridsquares_this_map_does_not_include_satellite_internet_or_repeater_qsos'] = 'This map does not include satellite, internet or repeater QSOs';
|
||||
|
||||
$lang['gridsquares_grid_squares'] = 'grid square';
|
||||
$lang['gridsquares_total_count'] = 'Total count';
|
||||
$lang['gridsquares_orbit'] = "Orbit";
|
||||
|
||||
$lang['gridsquares_minimum_count'] = "Minimum Count";
|
||||
$lang['gridsquares_show_qsos'] = "Show QSO's";
|
||||
$lang['gridsquares_show_map'] = "Show Map";
|
||||
$lang['gridsquares_band'] = 'Band';
|
||||
$lang['gridsquares_mode'] = 'Mode';
|
||||
$lang['gridsquares_sat'] = 'Satellite';
|
||||
$lang['gridsquares_confirmation'] = 'Confirmation';
|
||||
|
||||
$lang['gridsquares_button_plot'] = 'Plot';
|
||||
$lang['gridsquares_button_clear_markers'] = "Clear Markers";
|
||||
|
||||
$lang['gridsquares_gridsquares'] = 'Gridsquares';
|
||||
$lang['gridsquares_gridsquares_worked'] = 'Gridsquares worked';
|
||||
$lang['gridsquares_gridsquares_confirmed'] = 'Gridsquares confirmed';
|
||||
$lang['gridsquares_gridsquares_lotw'] = 'Gridsquares confirmed on LoTW';
|
||||
$lang['gridsquares_gridsquares_paper'] = 'Gridsquares confirmed by paper QSL';
|
||||
$lang['gridsquares_gridsquares_not_confirmed'] = 'Gridsquares not confirmed';
|
||||
$lang['gridsquares_gridsquares_total_worked'] = 'Total gridsquares worked';
|
||||
$lang['gridsquares_gridsquares_total_activated'] = 'Total gridsquares activated';
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Geen toegang</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Toegang tot de map niet toegestaan.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['lotw_short'] = 'LoTW';
|
||||
$lang['lotw_title'] = 'Logbook of the World';
|
||||
$lang['lotw_title_available_cert'] = 'Available Certificates';
|
||||
$lang['lotw_title_information'] = 'Information';
|
||||
$lang['lotw_title_upload_p12_cert'] = 'Upload Logbook of the World .p12 Certificate';
|
||||
$lang['lotw_title_export_p12_file_instruction'] = 'Export .p12 File Instructions';
|
||||
$lang['lotw_title_adif_import'] = 'ADIF Import';
|
||||
$lang['lotw_title_adif_import_options'] = 'Import Options';
|
||||
|
||||
$lang['lotw_beta_warning'] = 'Please be aware that LoTW Sync is BETA, see wiki for help.';
|
||||
$lang['lotw_no_certs_uploaded'] = 'You need to upload some LoTW p12 certificates to use this area.';
|
||||
|
||||
$lang['lotw_date_created'] = 'Date Created';
|
||||
$lang['lotw_date_expires'] = 'Date Expires';
|
||||
$lang['lotw_qso_start_date'] = 'QSO Start Date';
|
||||
$lang['lotw_qso_end_date'] = 'QSO End Date';
|
||||
$lang['lotw_status'] = 'Status';
|
||||
$lang['lotw_options'] = 'Options';
|
||||
$lang['lotw_valid'] = 'Valid';
|
||||
$lang['lotw_expired'] = 'Expired';
|
||||
$lang['lotw_expiring'] = 'Expiring';
|
||||
$lang['lotw_not_synced'] = 'Not Synced';
|
||||
|
||||
$lang['lotw_certificate_dxcc'] = 'Certificate DXCC';
|
||||
$lang['lotw_certificate_dxcc_help_text'] = 'Certificate DXCC entity. For example: Scotland';
|
||||
|
||||
$lang['lotw_input_a_file'] = 'Upload a File';
|
||||
|
||||
$lang['lotw_upload_exported_adif_file_from_lotw'] = 'Upload the Exported ADIF file from LoTW from the <a href="https://p1k.arrl.org/lotwuser/qsos?qsoscmd=adif" target="_blank">Download Report</a> 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.';
|
||||
@@ -1,121 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['menu_badge_developer_mode'] = 'Developer Mode';
|
||||
|
||||
$lang['menu_logbook'] = 'Logbook';
|
||||
$lang['menu_overview'] = 'Overview';
|
||||
$lang['menu_advanced'] = 'Advanced';
|
||||
|
||||
$lang['menu_qso'] = 'QSO';
|
||||
$lang['menu_live_qso'] = 'Live QSO';
|
||||
$lang['menu_post_qso'] = 'Post QSO';
|
||||
$lang['menu_fast_log_entry'] = "Simple Fast Log Entry";
|
||||
$lang['menu_live_contest_logging'] = 'Live Contest Logging';
|
||||
$lang['menu_post_contest_logging'] = 'Post Contest Logging';
|
||||
$lang['menu_bandmap'] = 'Bandmap';
|
||||
$lang['menu_view_qsl'] = 'View QSL Cards';
|
||||
$lang['menu_view_eqsl'] = 'View eQSL Cards';
|
||||
|
||||
$lang['menu_notes'] = 'Notes';
|
||||
|
||||
$lang['menu_analytics'] = 'Analytics';
|
||||
$lang['menu_statistics'] = 'Statistics';
|
||||
$lang['menu_gridsquares'] = 'Gridsquares';
|
||||
$lang['menu_gridmap'] = 'Gridsquare Map';
|
||||
$lang['menu_activated_gridsquares'] = 'Activated Gridsquares';
|
||||
$lang['menu_gridsquare_activators'] = 'Gridsquare Activators';
|
||||
$lang['menu_distances_worked'] = 'Distances Worked';
|
||||
$lang['menu_days_with_qsos'] = 'Days with QSOs';
|
||||
$lang['menu_timeline'] = 'Timeline';
|
||||
$lang['menu_accumulated_statistics'] = 'Accumulated Statistics';
|
||||
$lang['menu_timeplotter'] = 'Timeplotter';
|
||||
$lang['menu_continents'] = 'Continents';
|
||||
|
||||
$lang['menu_awards'] = 'Awards';
|
||||
$lang['menu_cq'] = 'CQ';
|
||||
$lang['menu_dok'] = 'DOK';
|
||||
$lang['menu_dxcc'] = 'DXCC';
|
||||
$lang['menu_ffma'] = 'Fred Fish Memorial Award';
|
||||
$lang['menu_helvetia'] = "H26";
|
||||
$lang['menu_gridmaster'] = "Gridmaster";
|
||||
$lang['menu_dl_gridmaster'] = 'DL Gridmaster';
|
||||
$lang['menu_lx_gridmaster'] = 'LX Gridmaster';
|
||||
$lang['menu_ja_gridmaster'] = 'JA Gridmaster';
|
||||
$lang['menu_us_gridmaster'] = 'US Gridmaster';
|
||||
$lang['menu_iota'] = 'IOTA';
|
||||
$lang['menu_jcc'] = 'JCC';
|
||||
$lang['menu_pota'] = 'POTA';
|
||||
$lang['menu_rac'] = 'RAC';
|
||||
$lang['menu_sig'] = 'SIG';
|
||||
$lang['menu_sota'] = 'SOTA';
|
||||
$lang['menu_us_counties'] = 'US Counties';
|
||||
$lang['menu_vucc'] = 'VUCC';
|
||||
$lang['menu_waja'] = 'WAJA';
|
||||
$lang['menu_was'] = 'WAS';
|
||||
$lang['menu_wwff'] = 'WWFF';
|
||||
|
||||
$lang['menu_tools'] = "Tools";
|
||||
$lang['menu_sat_timers'] = "SAT Timers";
|
||||
|
||||
$lang['menu_admin'] = 'Admin';
|
||||
$lang['menu_user_account'] = 'User Accounts';
|
||||
$lang['menu_global_options'] = 'Global Options';
|
||||
$lang['menu_modes'] = 'Modes';
|
||||
$lang['menu_contests'] = 'Contests';
|
||||
$lang['menu_themes'] = 'Themes';
|
||||
$lang['menu_backup'] = 'Backup';
|
||||
$lang['menu_update_country_files'] = 'Update Country Files';
|
||||
$lang['menu_debug_information'] = 'Debug Information';
|
||||
$lang['menu_search_text_quicklog'] = "Add/Search Callsign";
|
||||
|
||||
$lang['menu_search_text'] = 'Search Callsign';
|
||||
$lang['menu_search_button_qicksearch_log'] = "Log";
|
||||
|
||||
$lang['menu_search_button'] = 'Search';
|
||||
$lang['menu_login_button'] = 'Login';
|
||||
|
||||
$lang['menu_account'] = 'Account';
|
||||
$lang['menu_station_logbooks'] = 'Station Logbooks';
|
||||
$lang['menu_station_locations'] = 'Station Locations';
|
||||
$lang['menu_select_location'] = "Select a Location";
|
||||
$lang['menu_station_setup'] = 'Station Setup';
|
||||
$lang['menu_bands'] = 'Bands';
|
||||
$lang['menu_adif_import_export'] = 'ADIF Import / Export';
|
||||
$lang['menu_other_export'] = "Other Export Options";
|
||||
$lang['menu_kml_export'] = 'KML Export';
|
||||
$lang['menu_dx_atlas_gridsquare_export'] = 'DX Atlas Gridsquare Export';
|
||||
$lang['menu_sota_csv_export'] = 'SOTA CSV Export';
|
||||
$lang['menu_cabrillo_export'] = 'Cabrillo Export';
|
||||
$lang['menu_cfd_export'] = "CFD Export";
|
||||
$lang['menu_oqrs_requests'] = 'OQRS Requests';
|
||||
$lang['menu_print_requested_qsls'] = 'Print Requested QSLs';
|
||||
$lang['menu_labels'] = 'Labels';
|
||||
$lang['menu_third_party_services'] = "Third-Party Services";
|
||||
$lang['menu_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['menu_eqsl_import_export'] = 'eQSL Import / Export';
|
||||
$lang['menu_qrz_logbook'] = 'QRZ Logbook';
|
||||
$lang['menu_hrd_logbook'] = 'HRDLog Logbook';
|
||||
$lang['menu_qo_100_dx_club_upload'] = 'QO-100 Dx Club Upload';
|
||||
$lang['menu_api_keys'] = 'API Keys';
|
||||
$lang['menu_hardware_interfaces'] = 'Hardware Interfaces';
|
||||
$lang['menu_help'] = 'Help';
|
||||
$lang['menu_forum'] = 'Forum';
|
||||
$lang['menu_logout'] = 'Logout';
|
||||
|
||||
$lang['menu_extras'] = "Extras";
|
||||
$lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU';
|
||||
|
||||
$lang['menu_canada'] = 'Canada';
|
||||
$lang['menu_germany'] = 'Germany';
|
||||
$lang['menu_great_britain'] = 'Great Britain';
|
||||
$lang['menu_japan'] = 'Japan';
|
||||
$lang['menu_luxemburg'] = 'Luxemburg';
|
||||
$lang['menu_switzerland'] = 'Switzerland';
|
||||
$lang['menu_usa'] = 'USA';
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['notes_menu_notes'] = 'Notes';
|
||||
$lang['notes_edit_note'] = 'Edit Note';
|
||||
$lang['notes_your_notes'] = 'Your Notes';
|
||||
|
||||
$lang['notes_welcome'] = "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!";
|
||||
|
||||
$lang['notes_create_note'] = 'Create Note';
|
||||
|
||||
$lang['notes_input_title'] = 'Title';
|
||||
$lang['notes_input_category'] = 'Category';
|
||||
$lang['notes_input_notes_content'] = 'Note Contents';
|
||||
$lang['notes_input_btn_save_note'] = 'Save Note';
|
||||
$lang['notes_input_btn_edit_note'] = 'Edit Note';
|
||||
$lang['notes_input_btn_delete_note'] = 'Delete Note';
|
||||
|
||||
$lang['notes_selection_general'] = 'General';
|
||||
$lang['notes_selection_antennas'] = 'Antennas';
|
||||
$lang['notes_selection_satellites'] = 'Satellites';
|
||||
@@ -1,124 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['options_wavelog_options'] = 'Wavelog Options';
|
||||
$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.';
|
||||
|
||||
$lang['options_appearance'] = 'Appearance';
|
||||
$lang['options_theme'] = 'Theme';
|
||||
$lang['options_saved'] = "Options saved";
|
||||
$lang['options_global_theme_choice_this_is_used_when_users_arent_logged_in'] = 'Global Theme Choice, this is used when users arent logged in.';
|
||||
$lang['options_public_search_bar'] = 'Public Search Bar';
|
||||
$lang['options_this_allows_non_logged_in_users_to_access_the_search_functions'] = 'This allows non logged in users to access the search functions.';
|
||||
$lang['options_dashboard_notification_banner'] = 'Dashboard Notification Banner';
|
||||
$lang['options_this_allows_to_disable_the_global_notification_banner_on_the_dashboard'] = 'This allows to disable the global notification banner on the dashboard.';
|
||||
$lang['options_dashboard_map'] = 'Dashboard Map';
|
||||
$lang['options_this_allows_the_map_on_the_dashboard_to_be_disabled_or_placed_on_the_right'] = 'This allows the map on the dashboard to be disabled or placed on the right.';
|
||||
$lang['options_logbook_map'] = 'Logbook Map';
|
||||
$lang['options_this_allows_to_disable_the_map_in_the_logbook'] = 'This allows to disable the map in the logbook.';
|
||||
$lang['options_public_maps'] = "Public Maps";
|
||||
$lang['options_this_allows_to_disable_all_maps_in_the_public_view'] = "This allows to disable all maps in the public view. This affects the main map and the gridsquares map.";
|
||||
|
||||
$lang['options_radios'] = 'Radios';
|
||||
$lang['options_radio_settings'] = 'Radio Settings';
|
||||
$lang['options_radio_timeout_warning'] = 'Radio Timeout Warning';
|
||||
$lang['options_the_radio_timeout_warning_is_used_on_the_qso_entry_panel_to_alert_you_to_radio_interface_disconnects'] = 'The Radio Timeout Warning is used on the QSO entry panel to alert you to radio interface disconnects.';
|
||||
$lang['options_this_number_is_in_seconds'] = 'This number is in seconds.';
|
||||
$lang['options_radio_timeout_warning_changed_to'] = 'Radio Timeout Warning changed to ';
|
||||
|
||||
$lang['options_email'] = 'Email';
|
||||
$lang['options_outgoing_protocol'] = 'Outgoing Protocol';
|
||||
$lang['options_smtp_encryption'] = 'SMTP Encryption';
|
||||
$lang['options_email_address'] = 'Email Address';
|
||||
$lang['options_email_sender_name'] = 'Email Sender Name';
|
||||
$lang['options_smtp_host'] = 'SMTP Host';
|
||||
$lang['options_smtp_port'] = 'SMTP Port';
|
||||
$lang['options_smtp_username'] = 'SMTP Username';
|
||||
$lang['options_smtp_password'] = 'SMTP Password';
|
||||
$lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
|
||||
$lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '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 <a href="https://github.com/int2001/DXClusterAPI">DXClusterAPI</a> 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: ";
|
||||
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
// Tiles
|
||||
$lang['qslcard_string_your_are_using'] = 'Je gebruikt';
|
||||
$lang['qslcard_string_disk_space'] = 'diskruimte om QSL kaarten op te slaan';
|
||||
|
||||
$lang['qslcard_info'] = 'QSL Info';
|
||||
$lang['qslcard_sent'] = 'QSL Card has been sent';
|
||||
$lang['qslcard_sent_bureau'] = 'QSL Card has been sent via the bureau';
|
||||
$lang['qslcard_sent_direct'] = 'QSL Card has been sent via direct';
|
||||
$lang['qslcard_sent_electronic'] = 'QSL Card has been sent electronically';
|
||||
$lang['qslcard_sent_manager'] = 'QSL Card has been sent via manager';
|
||||
$lang['qslcard_rcvd'] = 'QSL Card has been received';
|
||||
$lang['qslcard_rcvd_bureau'] = 'QSL Card has been received via the bureau';
|
||||
$lang['qslcard_rcvd_direct'] = 'QSL Card has been received via direct';
|
||||
$lang['qslcard_rcvd_electronic'] = 'QSL Card has been received electronically';
|
||||
$lang['qslcard_rcvd_manager'] = 'QSL Card has been received via manager';
|
||||
|
||||
$lang['qslcard_upload_front'] = 'Uploaded QSL Card front image';
|
||||
$lang['qslcard_upload_back'] = 'Uploaded QSL Card back image';
|
||||
|
||||
$lang['qslcard_upload_button'] = 'Upload QSL Card image';
|
||||
|
||||
$lang['qslcard_qslprint_header'] = "Export Requested QSLs for Printing";
|
||||
$lang['qslcard_qslprint_text_line1'] = "Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent.";
|
||||
$lang['qslcard_qslprint_text_line2'] = "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their 'QSL Sent' field.";
|
||||
$lang['qslcard_qslprint_send_method'] = "Send Method";
|
||||
$lang['qslcard_qslprint_mark_as_sent'] = "Mark as sent";
|
||||
$lang['qslcard_qslprint_mark_selected_as_printed'] = "Mark selected QSOs as printed";
|
||||
$lang['qslcard_qslprint_remove_selected_from_queue'] = "Remove selected QSOs from the queue";
|
||||
$lang['qslcard_qslprint_export_csv'] = "Export requested QSLs to CSV-file";
|
||||
$lang['qslcard_qslprint_export_adif'] = "Export requested QSLs to ADIF-file";
|
||||
$lang['qslcard_qslprint_mark_requested_as_sent'] = "Mark requested QSLs as sent";
|
||||
$lang['qslcard_qslprint_no_qsls_found'] = "No QSLs to print were found!";
|
||||
$lang['qslcard_qslprint_add_to_queue'] = "Add to print queue";
|
||||
$lang['qslcard_qslprint_no_additional_qso_found'] = "No additional QSO's were found. That means they are probably already in the queue.";
|
||||
|
||||
@@ -1,103 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
// Tiles
|
||||
$lang['qso_title_qso_map'] = 'QSO Kaart';
|
||||
$lang['qso_title_suggestions'] = 'Suggesties';
|
||||
$lang['qso_title_previous_contacts'] = 'Eerdere verbindingen';
|
||||
$lang['qso_title_times_worked_before'] = "times worked before";
|
||||
$lang['qso_title_not_worked_before'] = "Not worked before";
|
||||
$lang['qso_title_image'] = 'Profile Picture';
|
||||
$lang['qso_previous_max_shown'] = "Max. 5 previous contacts are shown";
|
||||
|
||||
// Quicklog on Dashboard
|
||||
$lang['qso_quicklog_enter_callsign'] = 'QUICKLOG Enter Callsign';
|
||||
|
||||
// Input Help Text on the /QSO Display
|
||||
$lang['qso_transmit_power_helptext'] = 'Geef vermogen in Watt. Vermeld alleen cijfers.';
|
||||
|
||||
$lang['qso_sota_ref_helptext'] = 'Bijvoorbeeld: GM/NS-001.';
|
||||
$lang['qso_wwff_ref_helptext'] = 'Bijvoorbeeld: DLFF-0069.';
|
||||
$lang['qso_pota_ref_helptext'] = 'Bijvoorbeeld: PA-0150. Multiple values allowed.';
|
||||
|
||||
$lang['qso_sig_helptext'] = 'Bijvoorbeeld: GMA';
|
||||
$lang['qso_sig_info_helptext'] = 'Bijvoorbeeld: DA/NW-357';
|
||||
|
||||
$lang['qso_dok_helptext'] = 'Bijvoorbeeld: Q03';
|
||||
|
||||
$lang['qso_notes_helptext'] = 'Notities worden alleen in Wavelog gebruikt en worden niet geexporteerd naar andere diensten.';
|
||||
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
|
||||
|
||||
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
|
||||
|
||||
// error text //
|
||||
$lang['qso_error_timeoff_less_timeon'] = "TimeOff is less than TimeOn";
|
||||
|
||||
// Button Text on /qso Display
|
||||
|
||||
$lang['qso_btn_clear_qso'] = 'Clear';
|
||||
$lang['qso_btn_reset_to_default'] = 'Reset to Default';
|
||||
$lang['qso_btn_save_qso'] = 'Bewaar QSO';
|
||||
$lang['qso_btn_edit_qso'] = 'Edit QSO';
|
||||
$lang['qso_delete_warning'] = "Warning! Are you sure you want delete QSO with ";
|
||||
|
||||
// QSO Details
|
||||
|
||||
$lang['qso_details'] = 'QSO Details';
|
||||
|
||||
$lang['fav_add'] = 'Add Band/Mode to Favs';
|
||||
$lang['qso_operator_callsign'] = 'Operator Callsign';
|
||||
|
||||
// Simple FLE (FastLogEntry)
|
||||
|
||||
$lang['qso_simplefle_info'] = "What is that?";
|
||||
$lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)";
|
||||
$lang['qso_simplefle_info_ln2'] = "'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.";
|
||||
$lang['qso_simplefle_info_ln3'] = "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.";
|
||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||
$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 <a href=". site_url('station') . ">Station Location</a>";
|
||||
$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 <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||
|
||||
$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 <a href='https://github.com/wavelog/wavelog/wiki/SimpleFLE' target='_blank'>this article</a> of our Wiki.";
|
||||
|
||||
$lang['qso_simplefle_options'] = 'Options';
|
||||
|
||||
@@ -1,120 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Station Logbooks
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['station_logbooks'] = "Station Logbooks";
|
||||
$lang['station_logbooks_description_header'] = "What are Station Logbooks";
|
||||
$lang['station_logbooks_description_text'] = "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.";
|
||||
$lang['station_logbooks_create'] = "Create Station Logbook";
|
||||
$lang['station_logbooks_status'] = "Status";
|
||||
$lang['station_logbooks_link'] = "Link";
|
||||
$lang['station_logbooks_public_search'] = "Public Search";
|
||||
$lang['station_logbooks_set_active'] = "Set as Active Logbook";
|
||||
$lang['station_logbooks_active_logbook'] = "Active Logbook";
|
||||
$lang['station_logbooks_edit_logbook'] = "Edit Station Logbook"; // 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'] = ' Updated.';
|
||||
$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 <a href='https://zone-check.eu/?m=loc' target='_blank'>click here</a>!";
|
||||
$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 <a target='_blank' href='https://www.iota-world.org/iota-directory/annex-f-short-title-iota-reference-number-list.html'>IOTA World</a> website.";
|
||||
$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the <a target='_blank' href='https://www.sotamaps.org/'>SOTA Maps</a> website.";
|
||||
$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the <a target='_blank' href='https://www.cqgma.org/mvs/'>GMA Map</a> website.";
|
||||
$lang['station_location_pota_hint_ln1'] = "Station POTA reference(s). Mulitple comma separated values allowed. You can look up POTA references at the <a target='_blank' href='https://pota.app/#/map/'>POTA Map</a> 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 <a href='https://logbook.qrz.com/logbook' target='_blank'>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 <a href='http://www.hrdlog.net/EditUser.aspx' target='_blank'>HRDLog.net Userprofile page";
|
||||
$lang['station_location_qo100_hint'] = "Create your API key on <a href='https://qo100dx.club' target='_blank'>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';
|
||||
|
||||
|
||||
@@ -1,83 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['statistics_statistics'] = 'Statistics';
|
||||
|
||||
$lang['statistics_explore_the_logbook'] = 'Explore the logbook.';
|
||||
|
||||
$lang['statistics_years'] = 'Years';
|
||||
$lang['statistics_modes'] = 'Mode';
|
||||
$lang['statistics_bands'] = 'Bands';
|
||||
$lang['statistics_qsos'] = 'QSOs';
|
||||
$lang['statistics_unique_callsigns'] = 'Unique callsigns';
|
||||
|
||||
$lang['statistics_total'] = 'Total';
|
||||
|
||||
$lang['statistics_year'] = 'Year';
|
||||
|
||||
$lang['statistics_number_of_qso_worked_each_year'] = "Number of QSOs worked each year";
|
||||
$lang['statistics_number_of_qso_worked'] = "# of QSO's worked";
|
||||
|
||||
/*
|
||||
*
|
||||
* Distances
|
||||
*
|
||||
*/
|
||||
|
||||
$lang['statistics_distances_worked'] = "Distances Worked";
|
||||
$lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> 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)";
|
||||
|
||||
@@ -1,136 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['account_logbook_fields'] = 'Logbook fields';
|
||||
$lang['account_column1_text'] = 'Choose column 1';
|
||||
$lang['account_column2_text'] = 'Choose column 2';
|
||||
$lang['account_column3_text'] = 'Choose column 3';
|
||||
$lang['account_column4_text'] = 'Choose column 4';
|
||||
$lang['account_column5_text'] = 'Choose column 5 (only for logbook)';
|
||||
|
||||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
$lang['account_email_address'] = 'Email Address';
|
||||
$lang['account_password'] = 'Password';
|
||||
|
||||
$lang['account_roles'] = 'Roles';
|
||||
$lang['account_user_role'] = 'User Role';
|
||||
$lang['account_word_admin'] = 'Admin';
|
||||
|
||||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_wavelog_preferences'] = 'Wavelog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
$lang['account_log_end_time_hint'] = '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.';
|
||||
$lang['account_quicklog_feature'] = "Quicklog Field";
|
||||
$lang['account_quicklog_feature_hint'] = "With this feature, you can log callsigns using the search field in the header.";
|
||||
$lang['account_quicklog_enter'] = "Quicklog - Action on press Enter";
|
||||
$lang['account_quicklog_enter_hint'] = "What action should be performed when Enter is pressed in the quicklog field?";
|
||||
$lang['account_quicklog_enter_log'] = "Log Callsign";
|
||||
$lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_wavelog_language'] = 'Wavelog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
|
||||
$lang['account_gridsquare_and_location_autocomplete'] = 'Gridsquare and Location Autocomplete';
|
||||
$lang['account_location_auto_lookup'] = 'Location auto lookup.';
|
||||
$lang['account_if_set_gridsquare_is_fetched_based_on_location_name'] = 'If set, gridsquare is fetched based on location name.';
|
||||
$lang['account_sota_auto_lookup_gridsquare_and_name_for_summit'] = 'SOTA auto lookup gridsquare and name for summit.';
|
||||
$lang['account_wwff_auto_lookup_gridsquare_and_name_for_reference'] = 'WWFF auto lookup gridsquare and name for reference.';
|
||||
$lang['account_pota_auto_lookup_gridsquare_and_name_for_park'] = 'POTA auto lookup gridsquare and name for park.';
|
||||
$lang['account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'] = 'If set, name and gridsquare is fetched from the API and filled in location and locator.';
|
||||
|
||||
$lang['account_previous_qsl_type'] = 'Previous QSL Type';
|
||||
$lang['account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'] = 'Select the type of QSL to show in the previous QSOs section.';
|
||||
|
||||
$lang['account_qrzcom_hamqthcom_images'] = 'qrz.com/hamqth.com Images';
|
||||
$lang['account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'] = 'Show profile picture of QSO partner from qrz.com/hamqth.com profile in the log QSO section.';
|
||||
$lang['account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'] = 'Please set your qrz.com/hamqth.com credentials in the general config file.';
|
||||
|
||||
$lang['account_amsat_status_upload'] = 'AMSAT Status Upload';
|
||||
$lang['account_upload_status_of_sat_qsos_to'] = 'Upload status of SAT QSOs to';
|
||||
|
||||
$lang['account_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['account_logbook_of_the_world_lotw_username'] = 'Logbook of The World (LoTW) Username';
|
||||
$lang['account_logbook_of_the_world_lotw_password'] = 'Logbook of The World (LoTW) Password';
|
||||
|
||||
$lang['account_clublog'] = 'Club Log';
|
||||
$lang['account_clublog_email_callsign'] = 'Club Log Email/Callsign';
|
||||
$lang['account_clublog_password'] = 'Club Log Password';
|
||||
$lang['account_the_email_or_callsign_you_use_to_login_to_club_log'] = 'The Email or Callsign you use to login to Club Log';
|
||||
|
||||
$lang['account_eqsl'] = 'eQSL';
|
||||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
$lang['account_are_you_sure_you_want_to_delete_the_user_account'] = 'Are you sure you want to delete the user account';
|
||||
$lang['account_yes_delete_this_user'] = 'Yes, delete this user';
|
||||
$lang['account_no_do_not_delete_this_user'] = 'No, do not delete this user';
|
||||
|
||||
$lang['account_forgot_password'] = 'Forgot Password?';
|
||||
$lang['account_you_can_reset_your_password_here'] = 'You can reset your password here.';
|
||||
$lang['account_reset_password'] = 'Reset Password';
|
||||
$lang['account_the_email_field_is_required'] = 'The Email field is required';
|
||||
$lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
$lang['account_user_mastodon'] = 'URL of Mastodonserver';
|
||||
$lang['account_user_mastodon_hint'] = "Main URL of your Mastodon server, e.g. <a href='https://radiosocial.de/' target='_blank'>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 <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> 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 <a href='https://hams.at/users/settings' target='_blank'>https://hams.at/users/settings</a>.";
|
||||
$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.";
|
||||
@@ -1,139 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_import'] = "ADIF Import";
|
||||
$lang['adif_export'] = "ADIF Export";
|
||||
// $lang['lotw_title'] --> 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 <b>all</b> 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'] = " <b>Dupes were inserted!</b>";
|
||||
$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";
|
||||
@@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.';
|
||||
$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.';
|
||||
$lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.';
|
||||
$lang['admin_user_line4'] = "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.";
|
||||
|
||||
$lang['admin_user_list'] = 'User List';
|
||||
|
||||
$lang['admin_user'] = 'User';
|
||||
$lang['admin_email'] = 'E-mail';
|
||||
$lang['admin_type'] = 'Type';
|
||||
$lang['admin_last_seen'] = "Last seen";
|
||||
$lang['admin_last_qso'] = "Last QSO:";
|
||||
$lang['admin_no_qso_in_log'] = "No QSOs in Log";
|
||||
$lang['admin_refresh_list'] = "Refresh List";
|
||||
$lang['admin_options'] = 'Options';
|
||||
|
||||
$lang['admin_station_logbooks'] = 'Logbooks';
|
||||
$lang['admin_station_locations'] = 'Locations';
|
||||
|
||||
$lang['admin_create_user'] = 'Create user';
|
||||
$lang['admin_delete'] = 'Delete';
|
||||
$lang['admin_remove'] = "Remove";
|
||||
$lang['admin_edit'] = 'Edit';
|
||||
$lang['admin_create'] = 'Create';
|
||||
$lang['admin_update'] = 'Update';
|
||||
$lang['admin_copy'] = 'Copy';
|
||||
$lang['admin_save'] = 'Save';
|
||||
$lang['admin_close'] = 'Close';
|
||||
$lang['admin_clear'] = "Clear";
|
||||
$lang['admin_user_accounts'] = 'User Accounts';
|
||||
$lang['admin_danger'] = 'DANGER!';
|
||||
$lang['admin_experimental'] = "Experimental";
|
||||
$lang['admin_password_reset'] = "Password Reset";
|
||||
|
||||
$lang['admin_email_settings_incorrect'] = "Email settings are incorrect.";
|
||||
$lang['admin_password_reset_processed'] = "Password-reset e-mail sent to user:";
|
||||
$lang['admin_confirm_pwd_reset'] = "Do you really want to send this user a password-reset link?";
|
||||
|
||||
|
||||
// Contest Menu
|
||||
|
||||
$lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.';
|
||||
$lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.';
|
||||
$lang['admin_contest_menu_name'] = 'Name';
|
||||
$lang['admin_contest_menu_adif'] = 'ADIF Name';
|
||||
$lang['admin_contest_menu_active'] = 'Active';
|
||||
$lang['admin_contest_menu_n_active'] = 'Not Active';
|
||||
$lang['admin_contest_menu_activate'] = 'Activate';
|
||||
$lang['admin_contest_menu_deactivate'] = 'Deactivate';
|
||||
|
||||
$lang['admin_contest_add_contest'] = 'Add a Contest';
|
||||
$lang["admin_contest_create"] = "Create";
|
||||
$lang['admin_contest_all_active'] = 'Activate All';
|
||||
$lang['admin_contest_all_deactive'] = 'Deactivate All';
|
||||
|
||||
$lang['admin_contest_name_adif'] = 'Contest ADIF Name';
|
||||
$lang['admin_contest_name_of_contest'] = 'Name of the Contest';
|
||||
$lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification';
|
||||
$lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list';
|
||||
$lang['admin_contest_edit_update_contest'] = 'Update Contest';
|
||||
$lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: ';
|
||||
$lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?';
|
||||
$lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?';
|
||||
|
||||
@@ -1,243 +0,0 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['awards_info_button'] = "Award Info";
|
||||
$lang['awards_show_worked'] = "Show worked";
|
||||
$lang['awards_show_confirmed'] = "Show confirmed";
|
||||
$lang['awards_show_not_worked'] = "Show not worked";
|
||||
$lang['awards_qsl_type'] = "Show QSO with QSL Type";
|
||||
$lang['awards_show_cq_map'] = "Show CQ Zone Map";
|
||||
$lang['awards_show_itu_map'] = "Show ITU Zone Map";
|
||||
$lang['awards_show_jcc_map'] = "Show JCC Map";
|
||||
$lang['awards_summary'] = "Summary";
|
||||
$lang['awards_total'] = "Total";
|
||||
$lang['awards_total_worked'] = "Total worked";
|
||||
$lang['awards_total_confirmed'] = "Total confirmed";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Awards - CQ Magazine WAZ";
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
CQ -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_cq_description_ln1'] = "CQ Magazine WAZ Award";
|
||||
$lang['awards_cq_description_ln2'] = "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.";
|
||||
$lang['awards_cq_description_ln3'] = "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to all 40 CQ Zones along with the corresponding confirmation.";
|
||||
$lang['awards_cq_description_ln4'] = "You can find all the information and rules on the Website of the <a href='https://cq-amateur-radio.com/cq_awards/cq_waz_awards/index_cq_waz_award.html' target='_blank'>CQ Magazine</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/districtsdoks/' target='_blank'>DARC website</a>. Information about the DOK Awards and its rules can be found <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/award-check/' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='http://www.arrl.org/desoto' target='_blank'>'How to Count Countries Worked, A New DX Scoring System'</a>.";
|
||||
$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL website</a>.";
|
||||
$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: <a href='https://www.arrl.org/ffma' target='_blank'>https://www.arrl.org/ffma</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.uska.ch/contest/uska-diplome/' target='_blank'>https://www.uska.ch/contest/uska-diplome/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://www.iota-world.org/' target='_blank'>IOTA WORLD website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://parksontheair.com/pota-awards/' target='_blank'>Parks on the Air® website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.sota.org.uk/' target='_blank'>https://www.sota.org.uk/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://cq-amateur-radio.com/cq_awards/cq_usa_ca_awards/cq_usa_ca_awards.html' target='_blank'>here</a>.";
|
||||
$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 <a href='https://www.amsat.org/gridmaster/' target='_blank'>website</a>: 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: <a href='https://www.arrl.org/vucc' target='_blank'>Click here</a>.";
|
||||
$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 <a href='https://www.arrl.org/was' target='_blank'>here</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wwff.co/awards/' target='_blank'>https://wwff.co/awards/</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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: <a href='https://wab.intermip.net/default.php' target='_blank'>https://wab.intermip.net/default.php</a>.";
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
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 <a href='https://rsgb.org/main/files/2019/01/Worked_ITU_Zones_Award_Form_2019.pdf' target='_blank'>RSGB</a>.";
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user