mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Merge branch 'dev' into ctune
This commit is contained in:
@@ -1613,4 +1613,130 @@ class Awards extends CI_Controller {
|
||||
$this->load->view('awards/wab/list', $data);
|
||||
}
|
||||
|
||||
public function itu() {
|
||||
$footerData = [];
|
||||
$footerData['scripts'] = [
|
||||
'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")),
|
||||
'assets/js/sections/itumap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap.js"))
|
||||
];
|
||||
|
||||
$this->load->model('logbooks_model');
|
||||
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
|
||||
|
||||
$this->load->model('itu');
|
||||
$this->load->model('modes');
|
||||
$this->load->model('bands');
|
||||
|
||||
$data['worked_bands'] = $this->bands->get_worked_bands('cq');
|
||||
$data['modes'] = $this->modes->active(); // Used in the view for mode select
|
||||
|
||||
if ($this->input->post('band') != NULL) { // Band is not set when page first loads.
|
||||
if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands
|
||||
$bands = $data['worked_bands'];
|
||||
}
|
||||
else {
|
||||
$bands[] = $this->input->post('band');
|
||||
}
|
||||
}
|
||||
else {
|
||||
$bands = $data['worked_bands'];
|
||||
}
|
||||
|
||||
$data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view
|
||||
|
||||
if($this->input->method() === 'post') {
|
||||
$postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl'));
|
||||
$postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw'));
|
||||
$postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl'));
|
||||
$postdata['qrz'] = $this->security->xss_clean($this->input->post('qrz'));
|
||||
$postdata['worked'] = $this->security->xss_clean($this->input->post('worked'));
|
||||
$postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed'));
|
||||
$postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked'));
|
||||
$postdata['band'] = $this->security->xss_clean($this->input->post('band'));
|
||||
$postdata['mode'] = $this->security->xss_clean($this->input->post('mode'));
|
||||
}
|
||||
else { // Setting default values at first load of page
|
||||
$postdata['qsl'] = 1;
|
||||
$postdata['lotw'] = 1;
|
||||
$postdata['eqsl'] = 0;
|
||||
$postdata['qrz'] = 0;
|
||||
$postdata['worked'] = 1;
|
||||
$postdata['confirmed'] = 1;
|
||||
$postdata['notworked'] = 1;
|
||||
$postdata['band'] = 'All';
|
||||
$postdata['mode'] = 'All';
|
||||
}
|
||||
|
||||
if ($logbooks_locations_array) {
|
||||
$location_list = "'".implode("','",$logbooks_locations_array)."'";
|
||||
$data['itu_array'] = $this->itu->get_itu_array($bands, $postdata, $location_list);
|
||||
$data['itu_summary'] = $this->itu->get_itu_summary($bands, $postdata, $location_list);
|
||||
} else {
|
||||
$location_list = null;
|
||||
$data['itu_array'] = null;
|
||||
$data['itu_summary'] = null;
|
||||
}
|
||||
|
||||
// Render page
|
||||
$data['page_title'] = "Awards - ITU Zones";
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/itu/index');
|
||||
$this->load->view('interface_assets/footer', $footerData);
|
||||
}
|
||||
|
||||
/*
|
||||
function itu_map
|
||||
This displays the ITU Zone map and requires the $band_type and $mode_type
|
||||
*/
|
||||
public function itu_map() {
|
||||
$this->load->model('logbooks_model');
|
||||
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
|
||||
|
||||
$this->load->model('itu');
|
||||
|
||||
$bands[] = $this->input->post('band');
|
||||
|
||||
$postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1;
|
||||
$postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1;
|
||||
$postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL: 1;
|
||||
$postdata['qrz'] = $this->input->post('qrz') == 0 ? NULL: 1;
|
||||
$postdata['worked'] = $this->input->post('worked') == 0 ? NULL: 1;
|
||||
$postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL: 1;
|
||||
$postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1;
|
||||
$postdata['band'] = $this->security->xss_clean($this->input->post('band'));
|
||||
$postdata['mode'] = $this->security->xss_clean($this->input->post('mode'));
|
||||
|
||||
if ($logbooks_locations_array) {
|
||||
$location_list = "'".implode("','",$logbooks_locations_array)."'";
|
||||
$itu_array = $this->itu->get_itu_array($bands, $postdata, $location_list);
|
||||
} else {
|
||||
$location_list = null;
|
||||
$itu_array = null;
|
||||
}
|
||||
|
||||
$zones = array();
|
||||
|
||||
foreach ($itu_array as $itu => $value) {
|
||||
foreach ($value as $key) {
|
||||
if($key != "") {
|
||||
if (strpos($key, '>W<') !== false) {
|
||||
$zones[] = 'W';
|
||||
break;
|
||||
}
|
||||
if (strpos($key, '>C<') !== false) {
|
||||
$zones[] = 'C';
|
||||
break;
|
||||
}
|
||||
if (strpos($key, '-') !== false) {
|
||||
$zones[] = '-';
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
header('Content-Type: application/json');
|
||||
echo json_encode($zones);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -123,6 +123,7 @@ class Logbookadvanced extends CI_Controller {
|
||||
'gridsquare' => xss_clean($this->input->post('gridsquare')),
|
||||
'state' => xss_clean($this->input->post('state')),
|
||||
'cqzone' => xss_clean($this->input->post('cqzone')),
|
||||
'ituzone' => xss_clean($this->input->post('ituzone')),
|
||||
'qsoresults' => xss_clean($this->input->post('qsoresults')),
|
||||
'sats' => xss_clean($this->input->post('sats')),
|
||||
'orbits' => xss_clean($this->input->post('orbits')),
|
||||
@@ -288,6 +289,7 @@ class Logbookadvanced extends CI_Controller {
|
||||
'gridsquare' => '',
|
||||
'state' => '',
|
||||
'cqzone' => '',
|
||||
'ituzone' => '',
|
||||
'qsoresults' => count($this->input->post('ids')),
|
||||
'sats' => '',
|
||||
'orbits' => '',
|
||||
@@ -329,6 +331,7 @@ class Logbookadvanced extends CI_Controller {
|
||||
'gridsquare' => xss_clean($this->input->post('gridsquare')),
|
||||
'state' => xss_clean($this->input->post('state')),
|
||||
'cqzone' => xss_clean($this->input->post('cqzone')),
|
||||
'ituzone' => xss_clean($this->input->post('ituzone')),
|
||||
'qsoresults' => xss_clean($this->input->post('qsoresults')),
|
||||
'sats' => xss_clean($this->input->post('sats')),
|
||||
'orbits' => xss_clean($this->input->post('orbits')),
|
||||
@@ -490,6 +493,7 @@ class Logbookadvanced extends CI_Controller {
|
||||
$json_string['dxcc']['show'] = $this->input->post('dxcc');
|
||||
$json_string['state']['show'] = $this->input->post('state');
|
||||
$json_string['cqzone']['show'] = $this->input->post('cqzone');
|
||||
$json_string['ituzone']['show'] = $this->input->post('ituzone');
|
||||
$json_string['iota']['show'] = $this->input->post('iota');
|
||||
$json_string['pota']['show'] = $this->input->post('pota');
|
||||
$json_string['operator']['show'] = $this->input->post('operator');
|
||||
|
||||
@@ -229,3 +229,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $lang['awards_total_confirmed'] = "共确认";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "CQ 杂志 WAZ 奖状";
|
||||
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
$lang['awards_show_itu_map'] = "Show ITU Zone Map";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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'] = '包含网格?';
|
||||
<?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'] = 'Search ITU Zone';
|
||||
$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_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'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)";
|
||||
$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'] = '关闭';
|
||||
$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'] = '关闭';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -8,6 +8,7 @@ $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_summary'] = "Summary";
|
||||
$lang['awards_total'] = "Total";
|
||||
$lang['awards_total_worked'] = "Total worked";
|
||||
@@ -15,6 +16,7 @@ $lang['awards_total_confirmed'] = "Total confirmed";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Awards - CQ Magazine WAZ";
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
|
||||
|
||||
/*
|
||||
@@ -229,3 +231,12 @@ $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>.";
|
||||
|
||||
@@ -32,6 +32,7 @@ $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';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,6 +15,8 @@ $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";
|
||||
|
||||
|
||||
/*
|
||||
@@ -229,3 +231,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $lang['awards_total_confirmed'] = "Total \"confirmés\"";
|
||||
|
||||
|
||||
$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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = "Filtres rapides";
|
||||
$lang['filter_qsl_filters'] = "Filtres QSL";
|
||||
$lang['filter_filters'] = "Filtres";
|
||||
$lang['filter_actions'] = "Actions";
|
||||
$lang['filter_results'] = "Nb lignes";
|
||||
$lang['filter_search'] = "Rechercher";
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = "Filtres rapides";
|
||||
$lang['filter_qsl_filters'] = "Filtres QSL";
|
||||
$lang['filter_filters'] = "Filtres";
|
||||
$lang['filter_actions'] = "Actions";
|
||||
$lang['filter_results'] = "Nb lignes";
|
||||
$lang['filter_search'] = "Rechercher";
|
||||
$lang['filter_dupes'] = "Doublon(s)";
|
||||
$lang['filter_map'] = "Carte";
|
||||
$lang['filter_options'] = "Options";
|
||||
$lang['filter_reset'] = "Réinitialiser";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = "Recherche rapide (avec infos de la ligne sélectionnée) : ";
|
||||
$lang['filter_search_callsign'] = "Même Indicatif";
|
||||
$lang['filter_search_dxcc'] = "Même DXCC";
|
||||
$lang['filter_search_state'] = "Même Etat";
|
||||
$lang['filter_search_gridsquare'] = "Même Locator";
|
||||
$lang['filter_search_cq_zone'] = "Même Zone CQ";
|
||||
$lang['filter_search_mode'] = "Même Mode";
|
||||
$lang['filter_search_band'] = "Même Band";
|
||||
$lang['filter_search_iota'] = "Même IOTA";
|
||||
$lang['filter_search_sota'] = "Même SOTA";
|
||||
$lang['filter_search_wwff'] = "Même WWFF";
|
||||
$lang['filter_search_pota'] = "Même POTA";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = "QSL Envoyée";
|
||||
$lang['filter_qsl_recv'] = "QSL Reçue";
|
||||
$lang['filter_qsl_sent_method'] = "QSL Méthode (envoi)";
|
||||
$lang['filter_qsl_recv_method'] = "QSL Méthode (reçue)";
|
||||
$lang['filter_lotw_sent'] = "LoTW Envoyé";
|
||||
$lang['filter_lotw_recv'] = "LoTW Reçu";
|
||||
$lang['filter_eqsl_sent'] = "eQSL Envoyée";
|
||||
$lang['filter_eqsl_recv'] = "eQSL Reçue";
|
||||
$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'] = "Vérifiée";
|
||||
|
||||
// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
General Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_general_from'] = "Date, du";
|
||||
$lang['filter_general_to'] = "au";
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_none'] = "- AUCUN - (ex: /MM, /AM)";
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
|
||||
$lang['filter_general_propagation'] = "Propagation";
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Actions
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_actions_w_selected'] = "Action pour lignes sélectionnées :";
|
||||
$lang['filter_actions_update_f_callbook'] = "Mise à jour depuis Callbook";
|
||||
$lang['filter_actions_queue_bureau'] = "En attente (Bureau)";
|
||||
$lang['filter_actions_queue_direct'] = "En attente (Direct)";
|
||||
$lang['filter_actions_queue_electronic'] = "En attente (Electronic)";
|
||||
$lang['filter_actions_sent_bureau'] = "Envoyée (Bureau)";
|
||||
$lang['filter_actions_sent_direct'] = "Envoyée (Direct)";
|
||||
$lang['filter_actions_sent_electronic'] = "Envoyée (Electronic)";
|
||||
$lang['filter_actions_not_sent'] = "Non envoyée";
|
||||
$lang['filter_actions_qsl_n_required'] = "QSL Non requis";
|
||||
$lang['filter_actions_recv_bureau'] = "Reçue (Bureau)";
|
||||
$lang['filter_actions_recv_direct'] = "Reçue (Direct)";
|
||||
$lang['filter_actions_recv_electronic'] = "Reçue (Numérique)";
|
||||
$lang['filter_actions_create_adif'] = "Exporter en ADIF";
|
||||
$lang['filter_actions_print_label'] = "Imprimer Etiquette";
|
||||
$lang['filter_actions_start_print_title'] = "Impression d'étiquettes";
|
||||
$lang['filter_map'] = "Carte";
|
||||
$lang['filter_options'] = "Options";
|
||||
$lang['filter_reset'] = "Réinitialiser";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = "Recherche rapide (avec infos de la ligne sélectionnée) : ";
|
||||
$lang['filter_search_callsign'] = "Même Indicatif";
|
||||
$lang['filter_search_dxcc'] = "Même DXCC";
|
||||
$lang['filter_search_state'] = "Même Etat";
|
||||
$lang['filter_search_gridsquare'] = "Même Locator";
|
||||
$lang['filter_search_cq_zone'] = "Même Zone CQ";
|
||||
$lang['filter_search_itu_zone'] = 'Search ITU Zone';
|
||||
$lang['filter_search_mode'] = "Même Mode";
|
||||
$lang['filter_search_band'] = "Même Band";
|
||||
$lang['filter_search_iota'] = "Même IOTA";
|
||||
$lang['filter_search_sota'] = "Même SOTA";
|
||||
$lang['filter_search_wwff'] = "Même WWFF";
|
||||
$lang['filter_search_pota'] = "Même POTA";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = "QSL Envoyée";
|
||||
$lang['filter_qsl_recv'] = "QSL Reçue";
|
||||
$lang['filter_qsl_sent_method'] = "QSL Méthode (envoi)";
|
||||
$lang['filter_qsl_recv_method'] = "QSL Méthode (reçue)";
|
||||
$lang['filter_lotw_sent'] = "LoTW Envoyé";
|
||||
$lang['filter_lotw_recv'] = "LoTW Reçu";
|
||||
$lang['filter_eqsl_sent'] = "eQSL Envoyée";
|
||||
$lang['filter_eqsl_recv'] = "eQSL Reçue";
|
||||
$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'] = "Vérifiée";
|
||||
|
||||
// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
General Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_general_from'] = "Date, du";
|
||||
$lang['filter_general_to'] = "au";
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_none'] = "- AUCUN - (ex: /MM, /AM)";
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
|
||||
$lang['filter_general_propagation'] = "Propagation";
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Actions
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_actions_w_selected'] = "Action pour lignes sélectionnées :";
|
||||
$lang['filter_actions_update_f_callbook'] = "Mise à jour depuis Callbook";
|
||||
$lang['filter_actions_queue_bureau'] = "En attente (Bureau)";
|
||||
$lang['filter_actions_queue_direct'] = "En attente (Direct)";
|
||||
$lang['filter_actions_queue_electronic'] = "En attente (Electronic)";
|
||||
$lang['filter_actions_sent_bureau'] = "Envoyée (Bureau)";
|
||||
$lang['filter_actions_sent_direct'] = "Envoyée (Direct)";
|
||||
$lang['filter_actions_sent_electronic'] = "Envoyée (Electronic)";
|
||||
$lang['filter_actions_not_sent'] = "Non envoyée";
|
||||
$lang['filter_actions_qsl_n_required'] = "QSL Non requis";
|
||||
$lang['filter_actions_recv_bureau'] = "Reçue (Bureau)";
|
||||
$lang['filter_actions_recv_direct'] = "Reçue (Direct)";
|
||||
$lang['filter_actions_recv_electronic'] = "Reçue (Numérique)";
|
||||
$lang['filter_actions_create_adif'] = "Exporter en ADIF";
|
||||
$lang['filter_actions_print_label'] = "Imprimer Etiquette";
|
||||
$lang['filter_actions_start_print_title'] = "Impression d'étiquettes";
|
||||
$lang['filter_actions_print_include_via'] = "Ajouter Via";
|
||||
$lang['filter_actions_print_include_grid'] = "Ajouter Locator";
|
||||
$lang['filter_actions_print_include_grid'] = "Ajouter Locator";
|
||||
$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)";
|
||||
$lang['filter_actions_start_print'] = "Commencer à imprimer à";
|
||||
$lang['filter_actions_print'] = "Imprimer";
|
||||
$lang['filter_actions_qsl_slideshow'] = "Diaporama QSL";
|
||||
$lang['filter_actions_delete'] = "Supprimer";
|
||||
$lang['filter_actions_start_print'] = "Commencer à imprimer à";
|
||||
$lang['filter_actions_print'] = "Imprimer";
|
||||
$lang['filter_actions_qsl_slideshow'] = "Diaporama QSL";
|
||||
$lang['filter_actions_delete'] = "Supprimer";
|
||||
$lang['filter_actions_delete_warning'] = "ATTENTION ! Etes vous certain de vouloir <b><u>supprimer</u></b> les QSO sélectionnés ?";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = "Options pour la recherche avancée";
|
||||
$lang['filter_options_column'] = "Colonne";
|
||||
$lang['filter_options_show'] = "Afficher";
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = "Options pour la recherche avancée";
|
||||
$lang['filter_options_column'] = "Colonne";
|
||||
$lang['filter_options_show'] = "Afficher";
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_search_operator']='Search Operator';
|
||||
$lang['filter_options_close'] = "Fermer";
|
||||
$lang['filter_options_close'] = "Fermer";
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $lang['awards_total_confirmed'] = "Gesamt bestätigt";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Diplome - CQ Magazin WAZ";
|
||||
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
$lang['awards_show_itu_map'] = "Show ITU Zone Map";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Schnellfilter';
|
||||
$lang['filter_qsl_filters'] = 'QSL Filter';
|
||||
$lang['filter_filters'] = 'Filter';
|
||||
$lang['filter_actions'] = 'Aktionen';
|
||||
$lang['filter_results'] = '# Resultate';
|
||||
$lang['filter_search'] = 'Suche';
|
||||
$lang['filter_dupes'] = "Dupes";
|
||||
$lang['filter_map'] = 'Karte';
|
||||
$lang['filter_options'] = 'Optionen';
|
||||
$lang['filter_reset'] = 'Reset';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Schnellsuche in Markierten: ';
|
||||
$lang['filter_search_callsign'] = 'Suche Rufzeichen';
|
||||
$lang['filter_search_dxcc'] = 'Suche DXCC';
|
||||
$lang['filter_search_state'] = 'Suche Staat';
|
||||
$lang['filter_search_gridsquare'] = 'Suche Planquadrat';
|
||||
$lang['filter_search_cq_zone'] = 'Suche CQ Zone';
|
||||
$lang['filter_search_mode'] = 'Suche Mode';
|
||||
$lang['filter_search_band'] = 'Suche Band';
|
||||
$lang['filter_search_iota'] = 'Suche IOTA';
|
||||
$lang['filter_search_sota'] = 'Suche SOTA';
|
||||
$lang['filter_search_wwff'] = 'Suche WWFF';
|
||||
$lang['filter_search_pota'] = 'Suche POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL gesendet';
|
||||
$lang['filter_qsl_recv'] = 'QSL erhalten';
|
||||
$lang['filter_qsl_sent_method'] = 'QSL-Send. Methode';
|
||||
$lang['filter_qsl_recv_method'] = 'QSL-Empf. Methode';
|
||||
$lang['filter_lotw_sent'] = 'LoTW gesendet';
|
||||
$lang['filter_lotw_recv'] = 'LoTW erhalten';
|
||||
$lang['filter_eqsl_sent'] = 'eQSL gesendet';
|
||||
$lang['filter_eqsl_recv'] = 'eQSL erhalten';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'QSL Bilder';
|
||||
|
||||
// $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'] = 'Verifiziert';
|
||||
|
||||
// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
General Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_general_from'] = 'Von';
|
||||
$lang['filter_general_to'] = 'bis';
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_none'] = '- Kein - (für z.B. /MM, /AM)';
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
|
||||
$lang['filter_general_propagation'] = 'Ausbreitungsart';
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Actions
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_actions_w_selected'] = 'Bei Markierten: ';
|
||||
$lang['filter_actions_update_f_callbook'] = 'Aktualisieren aus dem Callbook';
|
||||
$lang['filter_actions_queue_bureau'] = 'Angefordert (Büro)';
|
||||
$lang['filter_actions_queue_direct'] = 'Angefordert (Direkt)';
|
||||
$lang['filter_actions_queue_electronic'] = 'Angefordert (Elektronisch)';
|
||||
$lang['filter_actions_sent_bureau'] = 'Gesendet (Büro)';
|
||||
$lang['filter_actions_sent_direct'] = 'Gesendet (Direkt)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Gesendet (Elektronisch)';
|
||||
$lang['filter_actions_not_sent'] = 'Nicht gesendet';
|
||||
$lang['filter_actions_qsl_n_required'] = 'QSL nicht erforderlich';
|
||||
$lang['filter_actions_recv_bureau'] = 'Erhalten (Büro)';
|
||||
$lang['filter_actions_recv_direct'] = 'Erhalten (Direkt)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Erhalten (Elektronisch)';
|
||||
$lang['filter_actions_create_adif'] = 'Erstelle ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Label drucken';
|
||||
$lang['filter_actions_start_print_title'] = 'Label Drucken';
|
||||
$lang['filter_actions_print_include_via'] = "Include Via";
|
||||
$lang['filter_actions_print_include_grid'] = 'Mit Planquadrat?';
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Schnellfilter';
|
||||
$lang['filter_qsl_filters'] = 'QSL Filter';
|
||||
$lang['filter_filters'] = 'Filter';
|
||||
$lang['filter_actions'] = 'Aktionen';
|
||||
$lang['filter_results'] = '# Resultate';
|
||||
$lang['filter_search'] = 'Suche';
|
||||
$lang['filter_dupes'] = "Dupes";
|
||||
$lang['filter_map'] = 'Karte';
|
||||
$lang['filter_options'] = 'Optionen';
|
||||
$lang['filter_reset'] = 'Reset';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Schnellsuche in Markierten: ';
|
||||
$lang['filter_search_callsign'] = 'Suche Rufzeichen';
|
||||
$lang['filter_search_dxcc'] = 'Suche DXCC';
|
||||
$lang['filter_search_state'] = 'Suche Staat';
|
||||
$lang['filter_search_gridsquare'] = 'Suche Planquadrat';
|
||||
$lang['filter_search_cq_zone'] = 'Suche CQ Zone';
|
||||
$lang['filter_search_itu_zone'] = 'Search ITU Zone';
|
||||
$lang['filter_search_mode'] = 'Suche Mode';
|
||||
$lang['filter_search_band'] = 'Suche Band';
|
||||
$lang['filter_search_iota'] = 'Suche IOTA';
|
||||
$lang['filter_search_sota'] = 'Suche SOTA';
|
||||
$lang['filter_search_wwff'] = 'Suche WWFF';
|
||||
$lang['filter_search_pota'] = 'Suche POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL gesendet';
|
||||
$lang['filter_qsl_recv'] = 'QSL erhalten';
|
||||
$lang['filter_qsl_sent_method'] = 'QSL-Send. Methode';
|
||||
$lang['filter_qsl_recv_method'] = 'QSL-Empf. Methode';
|
||||
$lang['filter_lotw_sent'] = 'LoTW gesendet';
|
||||
$lang['filter_lotw_recv'] = 'LoTW erhalten';
|
||||
$lang['filter_eqsl_sent'] = 'eQSL gesendet';
|
||||
$lang['filter_eqsl_recv'] = 'eQSL erhalten';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'QSL Bilder';
|
||||
|
||||
// $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'] = 'Verifiziert';
|
||||
|
||||
// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
General Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_general_from'] = 'Von';
|
||||
$lang['filter_general_to'] = 'bis';
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_none'] = '- Kein - (für z.B. /MM, /AM)';
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
|
||||
$lang['filter_general_propagation'] = 'Ausbreitungsart';
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Actions
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_actions_w_selected'] = 'Bei Markierten: ';
|
||||
$lang['filter_actions_update_f_callbook'] = 'Aktualisieren aus dem Callbook';
|
||||
$lang['filter_actions_queue_bureau'] = 'Angefordert (Büro)';
|
||||
$lang['filter_actions_queue_direct'] = 'Angefordert (Direkt)';
|
||||
$lang['filter_actions_queue_electronic'] = 'Angefordert (Elektronisch)';
|
||||
$lang['filter_actions_sent_bureau'] = 'Gesendet (Büro)';
|
||||
$lang['filter_actions_sent_direct'] = 'Gesendet (Direkt)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Gesendet (Elektronisch)';
|
||||
$lang['filter_actions_not_sent'] = 'Nicht gesendet';
|
||||
$lang['filter_actions_qsl_n_required'] = 'QSL nicht erforderlich';
|
||||
$lang['filter_actions_recv_bureau'] = 'Erhalten (Büro)';
|
||||
$lang['filter_actions_recv_direct'] = 'Erhalten (Direkt)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Erhalten (Elektronisch)';
|
||||
$lang['filter_actions_create_adif'] = 'Erstelle ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Label drucken';
|
||||
$lang['filter_actions_start_print_title'] = 'Label Drucken';
|
||||
$lang['filter_actions_print_include_via'] = "Include Via";
|
||||
$lang['filter_actions_print_include_grid'] = 'Mit Planquadrat?';
|
||||
$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)";
|
||||
$lang['filter_actions_start_print'] = 'Druck starten bei?';
|
||||
$lang['filter_actions_print'] = 'Drucken';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'QSL Präsentation';
|
||||
$lang['filter_actions_delete'] = 'Löschen';
|
||||
$lang['filter_actions_delete_warning'] = "Warnung! Bist du sicher, dass du die markierten QSO löschen willst?";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = 'Optionen für das erweiterte Logbuch';
|
||||
$lang['filter_options_column'] = 'Spalte';
|
||||
$lang['filter_options_show'] = 'Anzeigen';
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_actions_start_print'] = 'Druck starten bei?';
|
||||
$lang['filter_actions_print'] = 'Drucken';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'QSL Präsentation';
|
||||
$lang['filter_actions_delete'] = 'Löschen';
|
||||
$lang['filter_actions_delete_warning'] = "Warnung! Bist du sicher, dass du die markierten QSO löschen willst?";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = 'Optionen für das erweiterte Logbuch';
|
||||
$lang['filter_options_column'] = 'Spalte';
|
||||
$lang['filter_options_show'] = 'Anzeigen';
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_search_operator']='Search Operator';
|
||||
$lang['filter_options_close'] = 'Schliessen';
|
||||
$lang['filter_options_close'] = 'Schliessen';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satelliten';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $lang['awards_total_confirmed'] = "Всего пожтверждено";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Дипломы - CQ Magazine WAZ";
|
||||
|
||||
$lang['awards_itu_page_title'] = "Awards - ITU Zones";
|
||||
$lang['awards_show_itu_map'] = "Show ITU Zone Map";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,157 +1,158 @@
|
||||
<?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'] = "Дубликаты";
|
||||
$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_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'] = 'Обновить из колбука';
|
||||
$lang['filter_actions_queue_bureau'] = 'В очередь (бюро)';
|
||||
$lang['filter_actions_queue_direct'] = 'В очередь (напрямую)';
|
||||
$lang['filter_actions_queue_electronic'] = 'В очередь (электронно)';
|
||||
$lang['filter_actions_sent_bureau'] = 'Отправлено (бюро)';
|
||||
$lang['filter_actions_sent_direct'] = 'Отправле (напрямую)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Отправлено (электронно)';
|
||||
$lang['filter_actions_not_sent'] = 'Не отправлено';
|
||||
$lang['filter_actions_qsl_n_required'] = 'QSL не требуется';
|
||||
$lang['filter_actions_recv_bureau'] = 'Получено (бюро)';
|
||||
$lang['filter_actions_recv_direct'] = 'Получено (напрямую)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Получено (электронно)';
|
||||
$lang['filter_actions_create_adif'] = 'Создать ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Напечатать наклейки';
|
||||
$lang['filter_actions_start_print_title'] = 'Печать наклеек';
|
||||
$lang['filter_actions_print_include_via'] = "Включить через?";
|
||||
$lang['filter_actions_print_include_grid'] = 'Включить квадрат?';
|
||||
$lang['filter_actions_start_print'] = 'Начать печать в?';
|
||||
<?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'] = "Дубликаты";
|
||||
$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'] = 'Search ITU Zone';
|
||||
$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'] = 'Обновить из колбука';
|
||||
$lang['filter_actions_queue_bureau'] = 'В очередь (бюро)';
|
||||
$lang['filter_actions_queue_direct'] = 'В очередь (напрямую)';
|
||||
$lang['filter_actions_queue_electronic'] = 'В очередь (электронно)';
|
||||
$lang['filter_actions_sent_bureau'] = 'Отправлено (бюро)';
|
||||
$lang['filter_actions_sent_direct'] = 'Отправле (напрямую)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Отправлено (электронно)';
|
||||
$lang['filter_actions_not_sent'] = 'Не отправлено';
|
||||
$lang['filter_actions_qsl_n_required'] = 'QSL не требуется';
|
||||
$lang['filter_actions_recv_bureau'] = 'Получено (бюро)';
|
||||
$lang['filter_actions_recv_direct'] = 'Получено (напрямую)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Получено (электронно)';
|
||||
$lang['filter_actions_create_adif'] = 'Создать ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Напечатать наклейки';
|
||||
$lang['filter_actions_start_print_title'] = 'Печать наклеек';
|
||||
$lang['filter_actions_print_include_via'] = "Включить через?";
|
||||
$lang['filter_actions_print_include_grid'] = 'Включить квадрат?';
|
||||
$lang['filter_actions_start_print'] = 'Начать печать в?';
|
||||
$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)";
|
||||
$lang['filter_actions_print'] = 'Печать';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'Слайдшоу QSL';
|
||||
$lang['filter_actions_delete'] = 'Удалить';
|
||||
$lang['filter_actions_delete_warning'] = "Предупреждение! Вы уверены, что хотите удалить отмеченные QSO?";
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = 'Опции для расширенного вида журнала';
|
||||
$lang['filter_options_column'] = 'Столбец';
|
||||
$lang['filter_options_show'] = 'Показать';
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.phpназвания
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_options_close'] = 'Закрыть';
|
||||
$lang['filter_actions_print'] = 'Печать';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'Слайдшоу QSL';
|
||||
$lang['filter_actions_delete'] = 'Удалить';
|
||||
$lang['filter_actions_delete_warning'] = "Предупреждение! Вы уверены, что хотите удалить отмеченные QSO?";
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = 'Опции для расширенного вида журнала';
|
||||
$lang['filter_options_column'] = 'Столбец';
|
||||
$lang['filter_options_show'] = 'Показать';
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.phpназвания
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_options_close'] = 'Закрыть';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,160 +1,161 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Filtros rápidos';
|
||||
$lang['filter_qsl_filters'] = 'Filtros QSL';
|
||||
$lang['filter_filters'] = 'Filtros';
|
||||
$lang['filter_actions'] = 'Actiones';
|
||||
$lang['filter_results'] = 'No. Resultados';
|
||||
$lang['filter_search'] = 'Buscar';
|
||||
$lang['filter_dupes'] = "Duplicados";
|
||||
$lang['filter_map'] = 'Mapa';
|
||||
$lang['filter_options'] = 'Opciones';
|
||||
$lang['filter_reset'] = 'Reinicializar';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Búsqueda rápida con seleccionados: ';
|
||||
$lang['filter_search_callsign'] = 'Buscar Indicativo';
|
||||
$lang['filter_search_dxcc'] = 'Buscar DXCC';
|
||||
$lang['filter_search_state'] = 'Buscar Estado';
|
||||
$lang['filter_search_gridsquare'] = 'Buscar Gridsquare';
|
||||
$lang['filter_search_cq_zone'] = 'Buscar Zona CQ';
|
||||
$lang['filter_search_mode'] = 'Buscar Modo';
|
||||
$lang['filter_search_band'] = 'Buscar Banda';
|
||||
$lang['filter_search_iota'] = 'Buscar IOTA';
|
||||
$lang['filter_search_sota'] = 'Buscar SOTA';
|
||||
$lang['filter_search_wwff'] = 'Buscar WWFF';
|
||||
$lang['filter_search_pota'] = 'Buscar POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL enviadas';
|
||||
$lang['filter_qsl_recv'] = 'QSL recibidas';
|
||||
$lang['filter_qsl_sent_method'] = 'Método de Envío de QSL';
|
||||
$lang['filter_qsl_recv_method'] = 'Método de Recepción de QSL';
|
||||
$lang['filter_lotw_sent'] = 'Enviado por LoTW';
|
||||
$lang['filter_lotw_recv'] = 'Recibido por LoTW';
|
||||
$lang['filter_eqsl_sent'] = 'Enviado por eQSL';
|
||||
$lang['filter_eqsl_recv'] = 'Recibido por eQSL';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'Imágenes 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'] = 'Verificado';
|
||||
|
||||
// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
General Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_general_from'] = 'Desde';
|
||||
$lang['filter_general_to'] = 'a';
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_none'] = '- Ninguno - (ej. /MM, /AM)';
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
|
||||
$lang['filter_general_propagation'] = 'Propagación';
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Actions
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_actions_w_selected'] = 'Con los seleccionados: ';
|
||||
$lang['filter_actions_update_f_callbook'] = 'Actualizar de Callbook';
|
||||
$lang['filter_actions_queue_bureau'] = 'En Cola por Buró';
|
||||
$lang['filter_actions_queue_direct'] = 'En Cola por Directa';
|
||||
$lang['filter_actions_queue_electronic'] = 'En Cola por Electrónico';
|
||||
$lang['filter_actions_sent_bureau'] = 'Enviado (Buró)';
|
||||
$lang['filter_actions_sent_direct'] = 'Enviado (Directa)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Enviado (Electrónico)';
|
||||
$lang['filter_actions_not_sent'] = 'No Enviado';
|
||||
$lang['filter_actions_qsl_n_required'] = 'QSL no Requerida';
|
||||
$lang['filter_actions_recv_bureau'] = 'Recibido (Buró)';
|
||||
$lang['filter_actions_recv_direct'] = 'Recibido (Directa)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Recibido (Electrónico)';
|
||||
$lang['filter_actions_create_adif'] = 'Crear ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Imprimir Etiqueta';
|
||||
$lang['filter_actions_start_print_title'] = 'Imprimir Etiquetas';
|
||||
$lang['filter_actions_print_include_via'] = "Incluir Vía";
|
||||
$lang['filter_actions_start_print'] = '¿Iniciar impresión desde?';
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Filtros rápidos';
|
||||
$lang['filter_qsl_filters'] = 'Filtros QSL';
|
||||
$lang['filter_filters'] = 'Filtros';
|
||||
$lang['filter_actions'] = 'Actiones';
|
||||
$lang['filter_results'] = 'No. Resultados';
|
||||
$lang['filter_search'] = 'Buscar';
|
||||
$lang['filter_dupes'] = "Duplicados";
|
||||
$lang['filter_map'] = 'Mapa';
|
||||
$lang['filter_options'] = 'Opciones';
|
||||
$lang['filter_reset'] = 'Reinicializar';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Quickilters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Búsqueda rápida con seleccionados: ';
|
||||
$lang['filter_search_callsign'] = 'Buscar Indicativo';
|
||||
$lang['filter_search_dxcc'] = 'Buscar DXCC';
|
||||
$lang['filter_search_state'] = 'Buscar Estado';
|
||||
$lang['filter_search_gridsquare'] = 'Buscar Gridsquare';
|
||||
$lang['filter_search_cq_zone'] = 'Buscar Zona CQ';
|
||||
$lang['filter_search_itu_zone'] = 'Search ITU Zone';
|
||||
$lang['filter_search_mode'] = 'Buscar Modo';
|
||||
$lang['filter_search_band'] = 'Buscar Banda';
|
||||
$lang['filter_search_iota'] = 'Buscar IOTA';
|
||||
$lang['filter_search_sota'] = 'Buscar SOTA';
|
||||
$lang['filter_search_wwff'] = 'Buscar WWFF';
|
||||
$lang['filter_search_pota'] = 'Buscar POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL enviadas';
|
||||
$lang['filter_qsl_recv'] = 'QSL recibidas';
|
||||
$lang['filter_qsl_sent_method'] = 'Método de Envío de QSL';
|
||||
$lang['filter_qsl_recv_method'] = 'Método de Recepción de QSL';
|
||||
$lang['filter_lotw_sent'] = 'Enviado por LoTW';
|
||||
$lang['filter_lotw_recv'] = 'Recibido por LoTW';
|
||||
$lang['filter_eqsl_sent'] = 'Enviado por eQSL';
|
||||
$lang['filter_eqsl_recv'] = 'Recibido por eQSL';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'Imágenes 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'] = 'Verificado';
|
||||
|
||||
// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
General Filters
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_general_from'] = 'Desde';
|
||||
$lang['filter_general_to'] = 'a';
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_none'] = '- Ninguno - (ej. /MM, /AM)';
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
|
||||
$lang['filter_general_propagation'] = 'Propagación';
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Actions
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_actions_w_selected'] = 'Con los seleccionados: ';
|
||||
$lang['filter_actions_update_f_callbook'] = 'Actualizar de Callbook';
|
||||
$lang['filter_actions_queue_bureau'] = 'En Cola por Buró';
|
||||
$lang['filter_actions_queue_direct'] = 'En Cola por Directa';
|
||||
$lang['filter_actions_queue_electronic'] = 'En Cola por Electrónico';
|
||||
$lang['filter_actions_sent_bureau'] = 'Enviado (Buró)';
|
||||
$lang['filter_actions_sent_direct'] = 'Enviado (Directa)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Enviado (Electrónico)';
|
||||
$lang['filter_actions_not_sent'] = 'No Enviado';
|
||||
$lang['filter_actions_qsl_n_required'] = 'QSL no Requerida';
|
||||
$lang['filter_actions_recv_bureau'] = 'Recibido (Buró)';
|
||||
$lang['filter_actions_recv_direct'] = 'Recibido (Directa)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Recibido (Electrónico)';
|
||||
$lang['filter_actions_create_adif'] = 'Crear ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Imprimir Etiqueta';
|
||||
$lang['filter_actions_start_print_title'] = 'Imprimir Etiquetas';
|
||||
$lang['filter_actions_print_include_via'] = "Incluir Vía";
|
||||
$lang['filter_actions_start_print'] = '¿Iniciar impresión desde?';
|
||||
$lang['filter_actions_print_include_ref'] = "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)";
|
||||
$lang['filter_actions_print'] = 'Imprimir';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'Presentación QSL';
|
||||
$lang['filter_actions_delete'] = 'Eliminar';
|
||||
$lang['filter_actions_delete_warning'] = "¡Advertencia! ¿Está seguro que desea eliminar las QSO marcadas?";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = 'Opciones para el Libro de Guardia Avanzado';
|
||||
$lang['filter_options_column'] = 'Columna';
|
||||
$lang['filter_options_show'] = 'Mostrar';
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_search_operator'] = 'Buscar Operador';
|
||||
$lang['filter_options_close'] = 'Cerrar';
|
||||
$lang['filter_actions_print'] = 'Imprimir';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'Presentación QSL';
|
||||
$lang['filter_actions_delete'] = 'Eliminar';
|
||||
$lang['filter_actions_delete_warning'] = "¡Advertencia! ¿Está seguro que desea eliminar las QSO marcadas?";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = 'Opciones para el Libro de Guardia Avanzado';
|
||||
$lang['filter_options_column'] = 'Columna';
|
||||
$lang['filter_options_show'] = 'Mostrar';
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_search_operator'] = 'Buscar Operador';
|
||||
$lang['filter_options_close'] = 'Cerrar';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
@@ -15,7 +15,8 @@ $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";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
@@ -229,3 +230,12 @@ $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,161 +1,162 @@
|
||||
<?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_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_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?';
|
||||
<?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_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_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';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
|
||||
@@ -109,3 +109,4 @@ $lang['menu_satellites'] = 'Satellites';
|
||||
$lang['menu_dx_calendar'] = 'DX Calendar';
|
||||
$lang['menu_contest_calendar'] = 'Contest Calendar';
|
||||
$lang['menu_wab'] = 'WAB';
|
||||
$lang['menu_itu'] = 'ITU Zones';
|
||||
|
||||
207
application/models/Itu.php
Normal file
207
application/models/Itu.php
Normal file
@@ -0,0 +1,207 @@
|
||||
<?php
|
||||
|
||||
class Itu extends CI_Model{
|
||||
|
||||
function __construct() {
|
||||
$this->load->library('Genfunctions');
|
||||
}
|
||||
|
||||
function get_itu_array($bands, $postdata, $location_list) {
|
||||
$ituZ = array(); // Used for keeping track of which states that are not worked
|
||||
|
||||
for ($i = 1; $i <= 90; $i++) {
|
||||
$ituZ[$i]['count'] = 0; // Inits each itu zone's count
|
||||
}
|
||||
|
||||
$qsl = $this->genfunctions->gen_qsl_from_postdata($postdata);
|
||||
|
||||
foreach ($bands as $band) {
|
||||
for ($i = 1; $i <= 90; $i++) {
|
||||
$banditu[$i][$band] = '-'; // Sets all to dash to indicate no result
|
||||
}
|
||||
|
||||
if ($postdata['worked'] != NULL) {
|
||||
$ituBand = $this->getituWorked($location_list, $band, $postdata);
|
||||
foreach ($ituBand as $line) {
|
||||
$banditu[$line->col_ituz][$band] = '<div class="bg-danger awardsBgDanger"><a href=\'javascript:displayContacts("' . str_replace("&", "%26", $line->col_ituz) . '","' . $band . '","All", "All","'. $postdata['mode'] . '","ITU","")\'>W</a></div>';
|
||||
$ituZ[$line->col_ituz]['count']++;
|
||||
}
|
||||
}
|
||||
if ($postdata['confirmed'] != NULL) {
|
||||
$ituBand = $this->getituConfirmed($location_list, $band, $postdata);
|
||||
foreach ($ituBand as $line) {
|
||||
$banditu[$line->col_ituz][$band] = '<div class="bg-success awardsBgSuccess"><a href=\'javascript:displayContacts("' . str_replace("&", "%26", $line->col_ituz) . '","' . $band . '","All", "All","'. $postdata['mode'] . '","ITU","'.$qsl.'")\'>C</a></div>';
|
||||
$ituZ[$line->col_ituz]['count']++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// We want to remove the worked zones in the list, since we do not want to display them
|
||||
if ($postdata['worked'] == NULL) {
|
||||
$ituBand = $this->getituWorked($location_list, $postdata['band'], $postdata);
|
||||
foreach ($ituBand as $line) {
|
||||
unset($banditu[$line->col_ituz]);
|
||||
}
|
||||
}
|
||||
|
||||
// We want to remove the confirmed zones in the list, since we do not want to display them
|
||||
if ($postdata['confirmed'] == NULL) {
|
||||
$ituBand = $this->getituConfirmed($location_list, $postdata['band'], $postdata);
|
||||
foreach ($ituBand as $line) {
|
||||
unset($banditu[$line->col_ituz]);
|
||||
}
|
||||
}
|
||||
|
||||
if ($postdata['notworked'] == NULL) {
|
||||
for ($i = 1; $i <= 90; $i++) {
|
||||
if ($ituZ[$i]['count'] == 0) {
|
||||
unset($banditu[$i]);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($banditu)) {
|
||||
return $banditu;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Function returns all worked, but not confirmed states
|
||||
* $postdata contains data from the form, in this case Lotw or QSL are used
|
||||
*/
|
||||
function getituWorked($location_list, $band, $postdata) {
|
||||
$sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv
|
||||
where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''";
|
||||
|
||||
if ($postdata['mode'] != 'All') {
|
||||
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
|
||||
}
|
||||
|
||||
$sql .= $this->genfunctions->addBandToQuery($band);
|
||||
|
||||
$sql .= " and not exists (select 1 from " . $this->config->item('table_name') .
|
||||
" where station_id in (" . $location_list .
|
||||
") and col_ituz = thcv.col_ituz and col_ituz <> '' ";
|
||||
|
||||
if ($postdata['mode'] != 'All') {
|
||||
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
|
||||
}
|
||||
|
||||
$sql .= $this->genfunctions->addBandToQuery($band);
|
||||
|
||||
$sql .= $this->genfunctions->addQslToQuery($postdata);
|
||||
|
||||
$sql .= ")";
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->result();
|
||||
}
|
||||
|
||||
/*
|
||||
* Function returns all confirmed states on given band and on LoTW or QSL
|
||||
* $postdata contains data from the form, in this case Lotw or QSL are used
|
||||
*/
|
||||
function getituConfirmed($location_list, $band, $postdata) {
|
||||
$sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv
|
||||
where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''";
|
||||
|
||||
if ($postdata['mode'] != 'All') {
|
||||
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
|
||||
}
|
||||
|
||||
$sql .= $this->genfunctions->addBandToQuery($band);
|
||||
|
||||
$sql .= $this->genfunctions->addQslToQuery($postdata);
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->result();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Function gets worked and confirmed summary on each band on the active stationprofile
|
||||
*/
|
||||
function get_itu_summary($bands, $postdata, $location_list) {
|
||||
foreach ($bands as $band) {
|
||||
$worked = $this->getSummaryByBand($band, $postdata, $location_list);
|
||||
$confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list);
|
||||
$ituSummary['worked'][$band] = $worked[0]->count;
|
||||
$ituSummary['confirmed'][$band] = $confirmed[0]->count;
|
||||
}
|
||||
|
||||
$workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list);
|
||||
$confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list);
|
||||
|
||||
$ituSummary['worked']['Total'] = $workedTotal[0]->count;
|
||||
$ituSummary['confirmed']['Total'] = $confirmedTotal[0]->count;
|
||||
|
||||
return $ituSummary;
|
||||
}
|
||||
|
||||
function getSummaryByBand($band, $postdata, $location_list) {
|
||||
$sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv";
|
||||
|
||||
$sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0';
|
||||
|
||||
if ($band == 'SAT') {
|
||||
$sql .= " and thcv.col_prop_mode ='" . $band . "'";
|
||||
} else if ($band == 'All') {
|
||||
$this->load->model('bands');
|
||||
|
||||
$bandslots = $this->bands->get_worked_bands('cq');
|
||||
|
||||
$bandslots_list = "'".implode("','",$bandslots)."'";
|
||||
|
||||
$sql .= " and thcv.col_band in (" . $bandslots_list . ")" .
|
||||
" and thcv.col_prop_mode !='SAT'";
|
||||
} else {
|
||||
$sql .= " and thcv.col_prop_mode !='SAT'";
|
||||
$sql .= " and thcv.col_band ='" . $band . "'";
|
||||
}
|
||||
|
||||
if ($postdata['mode'] != 'All') {
|
||||
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
|
||||
}
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->result();
|
||||
}
|
||||
|
||||
function getSummaryByBandConfirmed($band, $postdata, $location_list){
|
||||
$sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv";
|
||||
|
||||
$sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0';
|
||||
|
||||
if ($band == 'SAT') {
|
||||
$sql .= " and thcv.col_prop_mode ='" . $band . "'";
|
||||
} else if ($band == 'All') {
|
||||
$this->load->model('bands');
|
||||
|
||||
$bandslots = $this->bands->get_worked_bands('cq');
|
||||
|
||||
$bandslots_list = "'".implode("','",$bandslots)."'";
|
||||
|
||||
$sql .= " and thcv.col_band in (" . $bandslots_list . ")" .
|
||||
" and thcv.col_prop_mode !='SAT'";
|
||||
} else {
|
||||
$sql .= " and thcv.col_prop_mode !='SAT'";
|
||||
$sql .= " and thcv.col_band ='" . $band . "'";
|
||||
}
|
||||
|
||||
if ($postdata['mode'] != 'All') {
|
||||
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
|
||||
}
|
||||
|
||||
$sql .= $this->genfunctions->addQslToQuery($postdata);
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->result();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -451,6 +451,9 @@ class Logbook_model extends CI_Model {
|
||||
case 'CQZone':
|
||||
$this->db->where('COL_CQZ', $searchphrase);
|
||||
break;
|
||||
case 'ITU':
|
||||
$this->db->where('COL_ITUZ', $searchphrase);
|
||||
break;
|
||||
case 'WAS':
|
||||
$this->db->where('COL_STATE', $searchphrase);
|
||||
$this->db->where_in('COL_DXCC', ['291', '6', '110']);
|
||||
|
||||
@@ -152,6 +152,11 @@ class Logbookadvanced_model extends CI_Model {
|
||||
$binding[] = $searchCriteria['cqzone'];
|
||||
}
|
||||
|
||||
if ($searchCriteria['ituzone'] !== '') {
|
||||
$conditions[] = "COL_ITUZ = ?";
|
||||
$binding[] = $searchCriteria['ituzone'];
|
||||
}
|
||||
|
||||
if ($searchCriteria['qslvia'] !== '') {
|
||||
$conditions[] = "COL_QSL_VIA like ?";
|
||||
$binding[] = $searchCriteria['qslvia'].'%';
|
||||
@@ -475,6 +480,7 @@ class Logbookadvanced_model extends CI_Model {
|
||||
function saveEditedQsos($ids, $column, $value, $value2) {
|
||||
switch($column) {
|
||||
case "cqz": $column = 'COL_CQZ'; break;
|
||||
case "ituz": $column = 'COL_ITUZ'; break;
|
||||
case "dxcc": $column = 'COL_DXCC'; break;
|
||||
case "iota": $column = 'COL_IOTA'; break;
|
||||
case "state": $column = 'COL_STATE'; break;
|
||||
|
||||
202
application/views/awards/itu/index.php
Normal file
202
application/views/awards/itu/index.php
Normal file
@@ -0,0 +1,202 @@
|
||||
<script>
|
||||
var tileUrl="<?php echo $this->optionslib->get_option('option_map_tile_server');?>"
|
||||
</script>
|
||||
<style>
|
||||
#itumap {
|
||||
height: calc(100vh - 480px) !important;
|
||||
max-height: 900px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<!-- Award Info Box -->
|
||||
<br>
|
||||
<div id="awardInfoButton">
|
||||
<script>
|
||||
var lang_awards_info_button = "<?php echo lang('awards_info_button'); ?>";
|
||||
var lang_award_info_ln1 = "<?php echo lang('awards_itu_description_ln1'); ?>";
|
||||
var lang_award_info_ln2 = "<?php echo lang('awards_itu_description_ln2'); ?>";
|
||||
var lang_award_info_ln3 = "<?php echo lang('awards_itu_description_ln3'); ?>";
|
||||
var lang_award_info_ln4 = "";
|
||||
</script>
|
||||
<h2><?php echo lang('awards_itu_page_title'); ?></h2>
|
||||
<button type="button" class="btn btn-sm btn-primary me-1" id="displayAwardInfo"><?php echo lang('awards_info_button'); ?></button>
|
||||
</div>
|
||||
<!-- End of Award Info Box -->
|
||||
<form class="form" action="<?php echo site_url('awards/itu'); ?>" method="post" enctype="multipart/form-data">
|
||||
<fieldset>
|
||||
|
||||
<!-- Multiple Checkboxes (inline) -->
|
||||
<div class="mb-3 row">
|
||||
<div class="col-md-2" for="checkboxes"><?php echo lang('general_word_worked') . ' / ' . lang('general_word_confirmed')?></div>
|
||||
<div class="col-md-10">
|
||||
<div class="form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="worked" id="worked" value="1" <?php if ($this->input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
|
||||
<label class="form-check-label" for="worked"><?php echo lang('awards_show_worked'); ?></label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="confirmed" id="confirmed" value="1" <?php if ($this->input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
|
||||
<label class="form-check-label" for="confirmed"><?php echo lang('awards_show_confirmed'); ?></label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="notworked" id="notworked" value="1" <?php if ($this->input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
|
||||
<label class="form-check-label" for="notworked"><?php echo lang('awards_show_not_worked'); ?></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 row">
|
||||
<div class="col-md-2"><?php echo lang('awards_qsl_type'); ?></div>
|
||||
<div class="col-md-10">
|
||||
<div class="form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="qsl" value="1" id="qsl" <?php if ($this->input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
|
||||
<label class="form-check-label" for="qsl"><?php echo lang('general_word_qslcard'); ?></label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="lotw" value="1" id="lotw" <?php if ($this->input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
|
||||
<label class="form-check-label" for="lotw"><?php echo lang('lotw_short'); ?></label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="eqsl" value="1" id="eqsl" <?php if ($this->input->post('eqsl')) echo ' checked="checked"'; ?> >
|
||||
<label class="form-check-label" for="eqsl"><?php echo lang('eqsl_short'); ?></label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="qrz" value="1" id="qrz" <?php if ($this->input->post('qrz')) echo ' checked="checked"'; ?> >
|
||||
<label class="form-check-label" for="qrz">QRZ.com</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 row">
|
||||
<label class="col-md-2 control-label" for="band"><?php echo lang('gen_hamradio_band'); ?></label>
|
||||
<div class="col-md-2">
|
||||
<select id="band2" name="band" class="form-select form-select-sm">
|
||||
<option value="All" <?php if ($this->input->post('band') == "All" || $this->input->method() !== 'post') echo ' selected'; ?> ><?php echo lang('general_word_all'); ?></option>
|
||||
<?php foreach($worked_bands as $band) {
|
||||
echo '<option value="' . $band . '"';
|
||||
if ($this->input->post('band') == $band) echo ' selected';
|
||||
echo '>' . $band . '</option>'."\n";
|
||||
} ?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 row">
|
||||
<label class="col-md-2 control-label" for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
||||
<div class="col-md-2">
|
||||
<select id="mode" name="mode" class="form-select form-select-sm">
|
||||
<option value="All" <?php if ($this->input->post('mode') == "All" || $this->input->method() !== 'mode') echo ' selected'; ?>><?php echo lang('general_word_all'); ?></option>
|
||||
<?php
|
||||
foreach($modes->result() as $mode){
|
||||
if ($mode->submode == null) {
|
||||
echo '<option value="' . $mode->mode . '"';
|
||||
if ($this->input->post('mode') == $mode->mode) echo ' selected';
|
||||
echo '>'. $mode->mode . '</option>'."\n";
|
||||
} else {
|
||||
echo '<option value="' . $mode->submode . '"';
|
||||
if ($this->input->post('mode') == $mode->submode) echo ' selected';
|
||||
echo '>' . $mode->submode . '</option>'."\n";
|
||||
}
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 row">
|
||||
<label class="col-md-2 control-label" for="button1id"></label>
|
||||
<div class="col-md-10">
|
||||
<button id="button2id" type="reset" name="button2id" class="btn btn-sm btn-warning"><?php echo lang('filter_reset'); ?></button>
|
||||
<button id="button1id" type="submit" name="button1id" class="btn btn-sm btn-primary"><?php echo lang('filter_options_show'); ?></button>
|
||||
<?php if ($itu_array) {
|
||||
?><button type="button" onclick="load_itu_map();" class="btn btn-info btn-sm"><i class="fas fa-globe-americas"></i> <?php echo lang('awards_show_itu_map'); ?></button>
|
||||
<?php }?>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<ul class="nav nav-tabs" id="myTab" role="tablist">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" id="table-tab" data-bs-toggle="tab" href="#table" role="tab" aria-controls="table" aria-selected="true"><?php echo lang('general_word_table'); ?></a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" onclick="load_itu_map();" id="map-tab" data-bs-toggle="tab" href="#itumaptab" role="tab" aria-controls="home" aria-selected="false"><?php echo lang('filter_map'); ?></a>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade" id="itumaptab" role="tabpanel" aria-labelledby="home-tab">
|
||||
<br />
|
||||
|
||||
<div id="itumap" class="map-leaflet" ></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="tab-pane fade show active" id="table" role="tabpanel" aria-labelledby="table-tab" style="margin-bottom: 30px;">
|
||||
|
||||
<?php
|
||||
$i = 1;
|
||||
if ($itu_array) {
|
||||
echo "
|
||||
<table style='width:100%' class='table tableitu table-sm table-bordered table-hover table-striped table-condensed text-center'>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>#</td>
|
||||
<td>ITU Zone</td>";
|
||||
foreach($bands as $band) {
|
||||
echo '<td>' . $band . '</td>';
|
||||
}
|
||||
echo '</tr>
|
||||
</thead>
|
||||
<tbody>';
|
||||
foreach ($itu_array as $itu => $value) { // Fills the table with the data
|
||||
echo '<tr>
|
||||
<td>' . $i++ . '</td>
|
||||
<td>'. $itu .'</td>';
|
||||
foreach ($value as $key) {
|
||||
echo '<td style="text-align: center">' . $key . '</td>';
|
||||
}
|
||||
echo '</tr>';
|
||||
}
|
||||
echo "</table>
|
||||
<h2>" . lang('awards_summary') . "</h2>
|
||||
|
||||
<table class='table-sm tablesummary table table-bordered table-hover table-striped table-condensed text-center'>
|
||||
<thead>
|
||||
<tr><td></td>";
|
||||
|
||||
foreach($bands as $band) {
|
||||
echo '<td>' . $band . '</td>';
|
||||
}
|
||||
echo "<td>" . lang('awards_total') . "</td></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
<tr><td>" . lang('awards_total_worked') . "</td>";
|
||||
|
||||
foreach ($itu_summary['worked'] as $dxcc) { // Fills the table with the data
|
||||
echo '<td style="text-align: center">' . $dxcc . '</td>';
|
||||
}
|
||||
|
||||
echo "</tr><tr>
|
||||
<td>" . lang('awards_total_confirmed') . "</td>";
|
||||
foreach ($itu_summary['confirmed'] as $dxcc) { // Fills the table with the data
|
||||
echo '<td style="text-align: center">' . $dxcc . '</td>';
|
||||
}
|
||||
|
||||
echo '</tr>
|
||||
</table>
|
||||
</div>';
|
||||
|
||||
}
|
||||
else {
|
||||
echo '<div class="alert alert-danger" role="alert">Nothing found!</div>';
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -172,10 +172,12 @@
|
||||
<div class="dropdown-divider"></div>
|
||||
<li><a class="dropdown-item" href="<?php echo site_url('awards/helvetia'); ?>"><i class="fas fa-trophy"></i> H26</a></li>
|
||||
<div class="dropdown-divider"></div>
|
||||
<li><a class="dropdown-item" href="<?php echo site_url('awards/jcc'); ?>"><i class="fas fa-trophy"></i> <?php echo lang('menu_jcc'); ?></a></li>
|
||||
<div class="dropdown-divider"></div>
|
||||
<li><a class="dropdown-item" href="<?php echo site_url('awards/iota'); ?>"><i class="fas fa-trophy"></i> <?php echo lang('menu_iota'); ?></a></li>
|
||||
<div class="dropdown-divider"></div>
|
||||
<li><a class="dropdown-item" href="<?php echo site_url('awards/itu'); ?>"><i class="fas fa-trophy"></i> <?php echo lang('menu_itu'); ?></a></li>
|
||||
<div class="dropdown-divider"></div>
|
||||
<li><a class="dropdown-item" href="<?php echo site_url('awards/jcc'); ?>"><i class="fas fa-trophy"></i> <?php echo lang('menu_jcc'); ?></a></li>
|
||||
<div class="dropdown-divider"></div>
|
||||
<li><a class="dropdown-item" href="<?php echo site_url('awards/pota'); ?>"><i class="fas fa-trophy"></i> <?php echo lang('menu_pota'); ?></a></li>
|
||||
<div class="dropdown-divider"></div>
|
||||
<li><a class="dropdown-item" href="<?php echo site_url('awards/rac'); ?>"><i class="fas fa-trophy"></i> <?php echo lang('menu_rac'); ?></a></li>
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
<option value="dxcc">DXCC</option>
|
||||
<option value="gridsquare">Gridsquare</option>
|
||||
<option value="iota">IOTA</option>
|
||||
<option value="ituz">ITU Zone</option>
|
||||
<option value="mode">Mode</option>
|
||||
<option value="operator">Operator</option>
|
||||
<option value="pota">POTA</option>
|
||||
@@ -33,6 +34,15 @@
|
||||
?>
|
||||
</select>
|
||||
|
||||
<!-- ITU Zone -->
|
||||
<select style="display:none" class="form-select form-select-sm w-auto" id="editItuz" name="ituz" required>
|
||||
<?php
|
||||
for ($i = 1; $i <= 90; $i++) {
|
||||
echo '<option value="' . $i . '">' . $i . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
<select style="display:none" class="form-select form-select-sm w-auto" id="editDxcc" name="dxcc" required>
|
||||
|
||||
</select>
|
||||
|
||||
@@ -13,7 +13,7 @@ var lang_gen_hamradio_bearing = '<?php echo lang('gen_hamradio_bearing'); ?>';
|
||||
<?php
|
||||
echo "var homegrid ='" . strtoupper($homegrid[0]) . "';";
|
||||
if (!isset($options)) {
|
||||
$options = "{\"datetime\":{\"show\":\"true\"},\"de\":{\"show\":\"true\"},\"dx\":{\"show\":\"true\"},\"mode\":{\"show\":\"true\"},\"rstr\":{\"show\":\"true\"},\"rsts\":{\"show\":\"true\"},\"band\":{\"show\":\"true\"},\"myrefs\":{\"show\":\"true\"},\"refs\":{\"show\":\"true\"},\"name\":{\"show\":\"true\"},\"qslvia\":{\"show\":\"true\"},\"qsl\":{\"show\":\"true\"},\"lotw\":{\"show\":\"true\"},\"eqsl\":{\"show\":\"true\"},\"qslmsg\":{\"show\":\"true\"},\"dxcc\":{\"show\":\"true\"},\"state\":{\"show\":\"true\"},\"cqzone\":{\"show\":\"true\"},\"iota\":{\"show\":\"true\"},\"pota\":{\"show\":\"true\"},\"operator\":{\"show\":\"true\"},\"comment\":{\"show\":\"true\"}}";
|
||||
$options = "{\"datetime\":{\"show\":\"true\"},\"de\":{\"show\":\"true\"},\"dx\":{\"show\":\"true\"},\"mode\":{\"show\":\"true\"},\"rstr\":{\"show\":\"true\"},\"rsts\":{\"show\":\"true\"},\"band\":{\"show\":\"true\"},\"myrefs\":{\"show\":\"true\"},\"refs\":{\"show\":\"true\"},\"name\":{\"show\":\"true\"},\"qslvia\":{\"show\":\"true\"},\"qsl\":{\"show\":\"true\"},\"lotw\":{\"show\":\"true\"},\"eqsl\":{\"show\":\"true\"},\"qslmsg\":{\"show\":\"true\"},\"dxcc\":{\"show\":\"true\"},\"state\":{\"show\":\"true\"},\"cqzone\":{\"show\":\"true\"},\"ituzone\":{\"show\":\"true\"},\"iota\":{\"show\":\"true\"},\"pota\":{\"show\":\"true\"},\"operator\":{\"show\":\"true\"},\"comment\":{\"show\":\"true\"}}";
|
||||
}
|
||||
$current_opts=json_decode($options);
|
||||
echo "var user_options = $options;";
|
||||
@@ -29,6 +29,10 @@ if (!isset($current_opts->comment)) {
|
||||
echo "\nvar o_template = { comment: {show: 'true'}};";
|
||||
echo "\nuser_options={...user_options, ...o_template};";
|
||||
}
|
||||
if (!isset($current_opts->ituzone)) {
|
||||
echo "\nvar o_template = { ituzone: {show: 'true'}};";
|
||||
echo "\nuser_options={...user_options, ...o_template};";
|
||||
}
|
||||
|
||||
foreach ($mapoptions as $mo) {
|
||||
if ($mo != null) {
|
||||
@@ -39,31 +43,6 @@ foreach ($mapoptions as $mo) {
|
||||
var tileUrl="<?php echo $this->optionslib->get_option('option_map_tile_server');?>"
|
||||
</script>
|
||||
<style>
|
||||
/*Legend specific*/
|
||||
.legend {
|
||||
padding: 6px 8px;
|
||||
font: 14px Arial, Helvetica, sans-serif;
|
||||
background: white;
|
||||
line-height: 24px;
|
||||
color: #555;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.legend h4 {
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
margin: 2px 12px 8px;
|
||||
color: #777;
|
||||
}
|
||||
.legend span {
|
||||
position: relative;
|
||||
bottom: 3px;
|
||||
}
|
||||
.legend i {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
float: left;
|
||||
margin: 0 8px 0 0;
|
||||
}
|
||||
.row>[class*="col-"] {
|
||||
padding-right: 5px;
|
||||
padding-left: 5px;
|
||||
@@ -205,10 +184,21 @@ $options = json_decode($options);
|
||||
<select id="cqzone" name="cqzone" class="form-select form-select-sm">
|
||||
<option value=""><?php echo lang('general_word_all'); ?></option>
|
||||
<?php
|
||||
for ($i = 1; $i<=40; $i++) {
|
||||
echo '<option value="'. $i . '">'. $i .'</option>';
|
||||
}
|
||||
?>
|
||||
for ($i = 1; $i<=40; $i++) {
|
||||
echo '<option value="'. $i . '">'. $i .'</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
||||
<label class="form-label" for="ituzone">ITU Zone</label>
|
||||
<select id="ituzone" name="ituzone" class="form-select form-select-sm">
|
||||
<option value=""><?php echo lang('general_word_all'); ?></option>
|
||||
<?php
|
||||
for ($i = 1; $i<=90; $i++) {
|
||||
echo '<option value="'. $i . '">'. $i .'</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
||||
@@ -373,6 +363,9 @@ $options = json_decode($options);
|
||||
} ?>
|
||||
<?php if (($options->cqzone->show ?? "true") == "true") { ?>
|
||||
<button type="button" class="btn btn-sm btn-primary me-1" id="searchCqZone"><?php echo lang('filter_search_cq_zone'); ?></button><?php
|
||||
} ?>
|
||||
<?php if (($options->ituzone->show ?? "true") == "true") { ?>
|
||||
<button type="button" class="btn btn-sm btn-primary me-1" id="searchItuZone"><?php echo lang('filter_search_itu_zone'); ?></button><?php
|
||||
} ?>
|
||||
<?php if (($options->mode->show ?? "true") == "true") { ?>
|
||||
<button type="button" class="btn btn-sm btn-primary me-1" id="searchMode"><?php echo lang('filter_search_mode'); ?></button><?php
|
||||
@@ -504,6 +497,9 @@ $options = json_decode($options);
|
||||
<?php if (($options->cqzone->show ?? "true") == "true") {
|
||||
echo '<th>' . lang('gen_hamradio_cq_zone') . '</th>';
|
||||
} ?>
|
||||
<?php if (($options->ituzone->show ?? "true") == "true") {
|
||||
echo '<th>' . lang('gen_hamradio_itu_zone') . '</th>';
|
||||
} ?>
|
||||
<?php if (($options->iota->show ?? "true") == "true") {
|
||||
echo '<th>' . lang('gen_hamradio_iota') . '</th>';
|
||||
} ?>
|
||||
|
||||
@@ -90,6 +90,10 @@
|
||||
<td><?php echo lang('gen_hamradio_cq_zone'); ?></td>
|
||||
<td><div class="form-check"><input class="form-check-input" name="cqzone" type="checkbox" <?php if (($options->cqzone->show ?? "true") == "true") { echo 'checked'; } ?>></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo lang('gen_hamradio_itu_zone'); ?></td>
|
||||
<td><div class="form-check"><input class="form-check-input" name="ituzone" type="checkbox" <?php if (($options->ituzone->show ?? "true") == "true") { echo 'checked'; } ?>></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo lang('gen_hamradio_sota'); ?></td>
|
||||
<td><div class="form-check"><input class="form-check-input" name="sota" type="checkbox" <?php if (($options->sota->show ?? "true") == "true") { echo 'checked'; } ?>></div></td>
|
||||
|
||||
377
assets/js/sections/itumap.js
Normal file
377
assets/js/sections/itumap.js
Normal file
@@ -0,0 +1,377 @@
|
||||
var osmUrl = tileUrl;
|
||||
var ituz;
|
||||
var geojson;
|
||||
var map;
|
||||
var info;
|
||||
|
||||
function load_itu_map() {
|
||||
$('.nav-tabs a[href="#itumaptab"]').tab('show');
|
||||
$.ajax({
|
||||
url: base_url + 'index.php/awards/itu_map',
|
||||
type: 'post',
|
||||
data: {
|
||||
band: $('#band2').val(),
|
||||
mode: $('#mode').val(),
|
||||
worked: +$('#worked').prop('checked'),
|
||||
confirmed: +$('#confirmed').prop('checked'),
|
||||
notworked: +$('#notworked').prop('checked'),
|
||||
qsl: +$('#qsl').prop('checked'),
|
||||
eqsl: +$('#eqsl').prop('checked'),
|
||||
lotw: +$('#lotw').prop('checked'),
|
||||
qrz: +$('#qrz').prop('checked'),
|
||||
},
|
||||
success: function(data) {
|
||||
ituz = data;
|
||||
load_itu_map2(data);
|
||||
},
|
||||
error: function() {
|
||||
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
function load_itu_map2(data) {
|
||||
|
||||
const zonemarkers = [
|
||||
["60","-160"],
|
||||
["55","-125"],
|
||||
["55","-100"],
|
||||
["55","-78"],
|
||||
["73","-40"],
|
||||
["40","-119"],
|
||||
["40","-100"],
|
||||
["40","-80"],
|
||||
["55","-60"],
|
||||
["20","-102"],
|
||||
["21","-75"],
|
||||
["-3","-72"],
|
||||
["-5","-45"],
|
||||
["-30","-65"],
|
||||
["-25","-45"],
|
||||
["-50","-65"],
|
||||
["61","-26"],
|
||||
["70","10"],
|
||||
["70","40"],
|
||||
["70","62.5"],
|
||||
["70","82.5"],
|
||||
["70","100"],
|
||||
["70","122.5"],
|
||||
["70","142.5"],
|
||||
["70","162.5"],
|
||||
["70","180"],
|
||||
["52","2"],
|
||||
["45","18"],
|
||||
["53","36"],
|
||||
["53","62.5"],
|
||||
["53","82.5"],
|
||||
["53","100"],
|
||||
["53","122.5"],
|
||||
["53","142"],
|
||||
["55","160"],
|
||||
["35","-25"],
|
||||
["35","0"],
|
||||
["27.5","22.5"],
|
||||
["27","42"],
|
||||
["32","56"],
|
||||
["10","75"],
|
||||
["39","82.5"],
|
||||
["33","100"],
|
||||
["33","118"],
|
||||
["33","140"],
|
||||
["15","-10"],
|
||||
["12.5","22"],
|
||||
["5","40"],
|
||||
["15","100"],
|
||||
["10","120"],
|
||||
["-4","150"],
|
||||
["-7","17"],
|
||||
["-12.5","45"],
|
||||
["-2","115"],
|
||||
["-20","140"],
|
||||
["-20","170"],
|
||||
["-30","24"],
|
||||
["-25","120"],
|
||||
["-40","140"],
|
||||
["-40","170"],
|
||||
["15","-170"],
|
||||
["-15","-170"],
|
||||
["-15","-135"],
|
||||
["10","140"],
|
||||
["10","162"],
|
||||
["-23","-11"],
|
||||
["-70","10"],
|
||||
["-47.5","60"],
|
||||
["-70","70"],
|
||||
["-70","130"],
|
||||
["-70","-170"],
|
||||
["-70","-110"],
|
||||
["-70","-050"],
|
||||
["-82.5","0"],
|
||||
["82.5","0"],
|
||||
["40","-150"],
|
||||
["15","-135"],
|
||||
["-15","-95"],
|
||||
["-40","-160"],
|
||||
["-40","-125"],
|
||||
["-40","-90"],
|
||||
["50","-30"],
|
||||
["25","-47.5"],
|
||||
["-45","-40"],
|
||||
["-45","10"],
|
||||
["-25","70"],
|
||||
["-25","95"],
|
||||
["-50","95"],
|
||||
["-54","140"],
|
||||
["39","165"]
|
||||
];
|
||||
|
||||
// If map is already initialized
|
||||
var container = L.DomUtil.get('itumap');
|
||||
|
||||
if(container != null){
|
||||
container._leaflet_id = null;
|
||||
container.remove();
|
||||
$("#itumaptab").append('<div id="itumap" class="map-leaflet" ></div>');
|
||||
}
|
||||
|
||||
map = new L.Map('itumap', {
|
||||
fullscreenControl: true,
|
||||
fullscreenControlOptions: {
|
||||
position: 'topleft'
|
||||
},
|
||||
});
|
||||
|
||||
L.tileLayer(
|
||||
osmUrl,
|
||||
{
|
||||
attribution: '© <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
|
||||
maxZoom: 18
|
||||
}
|
||||
).addTo(map);
|
||||
|
||||
var notworked = zonemarkers.length;
|
||||
var confirmed = 0;
|
||||
var workednotconfirmed = 0;
|
||||
|
||||
for (var i = 0; i < zonemarkers.length; i++) {
|
||||
var mapColor = 'red';
|
||||
|
||||
if (data[i] == 'C') {
|
||||
mapColor = 'green';
|
||||
confirmed++;
|
||||
notworked--;
|
||||
}
|
||||
if (data[i] == 'W') {
|
||||
mapColor = 'orange';
|
||||
workednotconfirmed++;
|
||||
notworked--;
|
||||
}
|
||||
|
||||
var title = '<span class="grid-text" style="cursor: default"><font style="color: \'white\'; font-size: 1.5em; font-weight: 900;">' + (Number(i)+Number(1)) + '</font></span>';
|
||||
var myIcon = L.divIcon({className: 'my-div-icon', html: title});
|
||||
|
||||
L.marker(
|
||||
[zonemarkers[i][0], zonemarkers[i][1]], {
|
||||
icon: myIcon,
|
||||
title: (Number(i)+Number(1)),
|
||||
zIndex: 1000,
|
||||
}
|
||||
).addTo(map).on('click', onClick);
|
||||
}
|
||||
|
||||
|
||||
map.setView([52, -100], 3);
|
||||
/*Legend specific*/
|
||||
var legend = L.control({ position: "topright" });
|
||||
|
||||
legend.onAdd = function(map) {
|
||||
var div = L.DomUtil.create("div", "legend");
|
||||
div.innerHTML += "<h4>" + lang_general_word_colors + "</h4>";
|
||||
div.innerHTML += "<i style='background: green'></i><span>" + lang_general_word_confirmed + " (" + confirmed + ")</span><br>";
|
||||
div.innerHTML += "<i style='background: orange'></i><span>" + lang_general_word_worked_not_confirmed + " (" + workednotconfirmed + ")</span><br>";
|
||||
div.innerHTML += "<i style='background: red'></i><span>" + lang_general_word_not_worked + " (" + notworked + ")</span><br>";
|
||||
return div;
|
||||
};
|
||||
|
||||
legend.addTo(map);
|
||||
|
||||
info = L.control();
|
||||
|
||||
info.onAdd = function (map) {
|
||||
this._div = L.DomUtil.create('div', 'info'); // create a div with a class "info"
|
||||
this.update();
|
||||
return this._div;
|
||||
};
|
||||
|
||||
// method that we will use to update the control based on feature properties passed
|
||||
info.update = function (props) {
|
||||
this._div.innerHTML = '<h4>ITU Zone</h4>' + (props ? createContentITU(props.itu_zone_number, props.itu_zone_name) : 'Hover over a zone');
|
||||
};
|
||||
|
||||
info.addTo(map);
|
||||
geojson = L.geoJson(ituzonestuff, {style: style, onEachFeature: onEachFeature}).addTo(map);
|
||||
|
||||
map.setView([20, 0], 2);
|
||||
}
|
||||
|
||||
function getColor(d) {
|
||||
return ituz[d-1] == 'C' ? 'green' :
|
||||
ituz[d-1] == 'W' ? 'orange' :
|
||||
'red';
|
||||
}
|
||||
|
||||
function highlightFeature(e) {
|
||||
var layer = e.target;
|
||||
|
||||
layer.setStyle({
|
||||
weight: 3,
|
||||
color: 'white',
|
||||
dashArray: '',
|
||||
fillOpacity: 0.8
|
||||
});
|
||||
|
||||
layer.bringToFront();
|
||||
info.update(layer.feature.properties);
|
||||
}
|
||||
|
||||
function onEachFeature(feature, layer) {
|
||||
layer.on({
|
||||
mouseover: highlightFeature,
|
||||
mouseout: resetHighlight,
|
||||
click: onClick2
|
||||
});
|
||||
}
|
||||
|
||||
function zoomToFeature(e) {
|
||||
map.fitBounds(e.target.getBounds());
|
||||
}
|
||||
|
||||
function resetHighlight(e) {
|
||||
geojson.resetStyle(e.target);
|
||||
info.update();
|
||||
}
|
||||
|
||||
function style(feature) {
|
||||
return {
|
||||
fillColor: getColor(feature.properties.itu_zone_number),
|
||||
weight: 1,
|
||||
opacity: 1,
|
||||
color: 'white',
|
||||
// dashArray: '3',
|
||||
fillOpacity: 0.6
|
||||
};
|
||||
}
|
||||
|
||||
function onClick(e) {
|
||||
var marker = e.target;
|
||||
displayContactsOnMap($("#itumap"),marker.options.title, $('#band2').val(), 'All', 'All', $('#mode').val(), 'ITU');
|
||||
}
|
||||
|
||||
function onClick2(e) {
|
||||
zoomToFeature(e);
|
||||
console.log(e);
|
||||
var marker = e.target;
|
||||
displayContactsOnMap($("#itumap"),marker.feature.properties.itu_zone_number, $('#band2').val(), 'All', 'All', $('#mode').val(), 'ITU');
|
||||
}
|
||||
|
||||
function createContentITU(zone, text){
|
||||
var ctemp, ptemp, rtemp, value, value1;
|
||||
var rowspan = (text.match(/#/g) || []).length + 1;
|
||||
var rows = text.split("#");
|
||||
var row = rows[0];
|
||||
var col = row.split(":");
|
||||
ptemp = (col[0].match(/!/g) || []).length;
|
||||
if (ptemp > 1){
|
||||
ptemp = 'rowspan="'+ptemp+'" ';
|
||||
} else {
|
||||
ptemp = '';
|
||||
}
|
||||
rowspan = (col[1].match(/!/g) || []).length;
|
||||
if (rowspan!=0){
|
||||
rtemp = 'rowspan="'+rowspan+'" ';
|
||||
} else {
|
||||
rtemp = '';
|
||||
}
|
||||
colspan = (col[2].match(/\*/g) || []).length;
|
||||
if (colspan != 0) {
|
||||
ctemp = 'colspan="'+colspan+'" ';
|
||||
} else {
|
||||
ctemp = '';
|
||||
}
|
||||
value1 = col[2].replace(/\+/g,'<br>');
|
||||
var content = '<table style="border-color: white" class="table-sm table-striped table-bordered">'+
|
||||
'<tbody>'+
|
||||
'<tr style="vertical-align: middle;">'+
|
||||
'<td '+ptemp+' style="font-size: x-large; color: #ff0000;text-align: center;">'+zone+'</td>'+
|
||||
'<td '+rtemp+'style="vertical-align: top;font-size: small;">'+col[1].slice(rowspan)+'</td>'+
|
||||
'<td '+ctemp+'style="vertical-align: top;font-size: small;">'+value1.slice(colspan)+'</td>'+
|
||||
'</tr>';
|
||||
|
||||
for (var i = 1; i < rows.length; i++) {
|
||||
var row = rows[i];
|
||||
var col = row.split(":");
|
||||
rowspan = (row.match(/!/g) || []).length;
|
||||
if (rowspan!=0){
|
||||
rtemp = 'rowspan="'+rowspan+'" ';
|
||||
}else{
|
||||
rtemp = '';
|
||||
}
|
||||
colspan = (row.match(/\*/g) || []).length;
|
||||
if (colspan!=0){
|
||||
ctemp = 'colspan="'+colspan+'" ';
|
||||
}else{
|
||||
ctemp = '';
|
||||
}
|
||||
value1 = col[1].replace(/\+/g,'<br>');
|
||||
content += '<tr style="font-size: small;">'+
|
||||
'<td '+rtemp+'style="vertical-align: top;">'+col[0].slice(rowspan)+'</td>'+
|
||||
'<td '+ctemp+'style="vertical-align: top;">'+value1.slice(colspan)+'</td>'+
|
||||
'</tr>';
|
||||
}
|
||||
|
||||
content += '</tbody></table>';
|
||||
|
||||
return content;
|
||||
}
|
||||
|
||||
|
||||
$(document).ready(function(){
|
||||
$('.tableitu').DataTable({
|
||||
"pageLength": 25,
|
||||
responsive: false,
|
||||
ordering: false,
|
||||
"scrollY": "400px",
|
||||
"scrollCollapse": true,
|
||||
"paging": false,
|
||||
"scrollX": true,
|
||||
"language": {
|
||||
url: getDataTablesLanguageUrl(),
|
||||
},
|
||||
dom: 'Bfrtip',
|
||||
buttons: [
|
||||
'csv'
|
||||
]
|
||||
});
|
||||
|
||||
$('.tablesummary').DataTable({
|
||||
info: false,
|
||||
searching: false,
|
||||
ordering: false,
|
||||
"paging": false,
|
||||
"language": {
|
||||
url: getDataTablesLanguageUrl(),
|
||||
},
|
||||
dom: 'Bfrtip',
|
||||
"language": {
|
||||
url: getDataTablesLanguageUrl(),
|
||||
},
|
||||
buttons: [
|
||||
'csv'
|
||||
]
|
||||
});
|
||||
|
||||
// change color of csv-button if dark mode is chosen
|
||||
if (isDarkModeTheme()) {
|
||||
$(".buttons-csv").css("color", "white");
|
||||
}
|
||||
});
|
||||
File diff suppressed because one or more lines are too long
@@ -82,6 +82,9 @@ function updateRow(qso) {
|
||||
if (user_options.cqzone.show == "true"){
|
||||
cells.eq(c++).html(qso.cqzone);
|
||||
}
|
||||
if (user_options.ituzone.show == "true"){
|
||||
cells.eq(c++).html(qso.ituzone);
|
||||
}
|
||||
if (user_options.iota.show == "true"){
|
||||
cells.eq(c++).html(qso.iota);
|
||||
}
|
||||
@@ -187,6 +190,9 @@ function loadQSOTable(rows) {
|
||||
if (user_options.cqzone.show == "true"){
|
||||
data.push(qso.cqzone);
|
||||
}
|
||||
if (user_options.ituzone.show == "true"){
|
||||
data.push(qso.ituzone);
|
||||
}
|
||||
if (user_options.iota.show == "true"){
|
||||
data.push(qso.iota);
|
||||
}
|
||||
@@ -295,6 +301,7 @@ $(document).ready(function () {
|
||||
sats: this.sats.value,
|
||||
orbits: this.orbits.value,
|
||||
cqzone: this.cqzone.value,
|
||||
ituzone: this.ituzone.value,
|
||||
lotwSent: this.lotwSent.value,
|
||||
lotwReceived: this.lotwReceived.value,
|
||||
eqslSent: this.eqslSent.value,
|
||||
@@ -514,6 +521,10 @@ $(document).ready(function () {
|
||||
quickSearch('cqzone');
|
||||
});
|
||||
|
||||
$('#searchItuZone').click(function (event) {
|
||||
quickSearch('ituzone');
|
||||
});
|
||||
|
||||
$('#searchMode').click(function (event) {
|
||||
quickSearch('mode');
|
||||
});
|
||||
@@ -665,6 +676,7 @@ $(document).ready(function () {
|
||||
switch (type) {
|
||||
case 'dxcc': col1 = currentRow.find('#dxcc').html(); col1 = col1.match(/\d/g); col1 = col1.join(""); break;
|
||||
case 'cqzone': col1 = currentRow.find('#cqzone').text(); break;
|
||||
case 'ituzone': col1 = currentRow.find('#ituzone').text(); break;
|
||||
case 'iota': col1 = currentRow.find('#iota').text(); col1 = col1.trim(); break;
|
||||
case 'state': col1 = currentRow.find('#state').text(); break;
|
||||
case 'dx': col1 = currentRow.find('#dx').text(); col1 = col1.match(/^([^\s]+)/gm); break;
|
||||
@@ -881,6 +893,7 @@ function saveOptions() {
|
||||
dxcc: $('input[name="dxcc"]').is(':checked') ? true : false,
|
||||
state: $('input[name="state"]').is(':checked') ? true : false,
|
||||
cqzone: $('input[name="cqzone"]').is(':checked') ? true : false,
|
||||
ituzone: $('input[name="ituzone"]').is(':checked') ? true : false,
|
||||
iota: $('input[name="iota"]').is(':checked') ? true : false,
|
||||
pota: $('input[name="pota"]').is(':checked') ? true : false,
|
||||
operator: $('input[name="operator"]').is(':checked') ? true : false,
|
||||
|
||||
@@ -136,6 +136,9 @@ function saveBatchEditQsos(id_list) {
|
||||
if (column == 'cqz') {
|
||||
value = $("#editCqz").val();
|
||||
}
|
||||
if (column == 'ituz') {
|
||||
value = $("#editItuz").val();
|
||||
}
|
||||
if (column == 'dxcc') {
|
||||
value = $("#editDxcc").val();
|
||||
}
|
||||
@@ -191,6 +194,7 @@ function saveBatchEditQsos(id_list) {
|
||||
|
||||
function changeEditType(type) {
|
||||
$('#editCqz').hide();
|
||||
$('#editItuz').hide();
|
||||
$('#editIota').hide();
|
||||
$('#editDxcc').hide();
|
||||
$('#editState').hide();
|
||||
@@ -215,6 +219,8 @@ function changeEditType(type) {
|
||||
$('#editIota').show();
|
||||
} else if (type == "cqz") {
|
||||
$('#editCqz').show();
|
||||
} else if (type == "ituz") {
|
||||
$('#editItuz').show();
|
||||
} else if (type == "state") {
|
||||
$('#editDxccState').show();
|
||||
$('#editDxccStateList').show();
|
||||
|
||||
@@ -34,6 +34,7 @@ class QSO
|
||||
private string $deWWFFReference;
|
||||
/** Awards */
|
||||
private string $cqzone;
|
||||
private string $ituzone;
|
||||
private string $state;
|
||||
private string $dxcc;
|
||||
private string $iota;
|
||||
@@ -199,6 +200,7 @@ class QSO
|
||||
$this->eqsl = $this->getEqslString($data, $custom_date_format);
|
||||
|
||||
$this->cqzone = ($data['COL_CQZ'] === null) ? '' : $this->geCqLink($data['COL_CQZ']);
|
||||
$this->ituzone = $data['COL_ITUZ'] ?? '';
|
||||
$this->state = ($data['COL_STATE'] === null) ? '' :$data['COL_STATE'];
|
||||
$this->dxcc = (($data['name'] ?? null) === null) ? '- NONE -' : '<a href="javascript:spawnLookupModal('.$data['COL_DXCC'].',\'dxcc\');">'.ucwords(strtolower($data['name']), "- (/").'</a>';
|
||||
$this->iota = ($data['COL_IOTA'] === null) ? '' : $this->getIotaLink($data['COL_IOTA']);
|
||||
@@ -786,6 +788,11 @@ class QSO
|
||||
return '<span id="cqzone">' . $this->cqzone . '</span>';
|
||||
}
|
||||
|
||||
public function getItuzone(): string
|
||||
{
|
||||
return '<span id="ituzone">' . $this->ituzone . '</span>';
|
||||
}
|
||||
|
||||
public function getState(): string
|
||||
{
|
||||
return '<span id="state">' . $this->state . '</span>';
|
||||
@@ -825,6 +832,7 @@ class QSO
|
||||
'pota' => $this->dxPOTAReference,
|
||||
'operator' => $this->getOperator(),
|
||||
'cqzone' => $this->getCqzone(),
|
||||
'ituzone' => $this->getItuzone(),
|
||||
'iota' => $this->getIOTA(),
|
||||
'end' => $this->end === null ? null : $this->end->format("Y-m-d"),
|
||||
'callsign' => $this->callsign,
|
||||
|
||||
Reference in New Issue
Block a user