Merge branch 'dev' into simple-fast-log-entry
这个提交包含在:
当前提交
e6c485fc27
共有 43 个文件被更改,包括 919 次插入 和 123 次删除
|
|
@ -29,7 +29,7 @@ class Dashboard extends CI_Controller {
|
|||
// user is not logged in
|
||||
redirect('user/login');
|
||||
}
|
||||
|
||||
|
||||
$this->load->model('logbooks_model');
|
||||
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
|
||||
|
||||
|
|
@ -41,15 +41,21 @@ class Dashboard extends CI_Controller {
|
|||
if ($qra_position) {
|
||||
$data['qra'] = "set";
|
||||
$data['qra_lat'] = $qra_position[0];
|
||||
$data['qra_lng'] = $qra_position[1];
|
||||
$data['qra_lng'] = $qra_position[1];
|
||||
} else {
|
||||
$data['qra'] = "none";
|
||||
}
|
||||
} else {
|
||||
$data['qra'] = "none";
|
||||
}
|
||||
|
||||
|
||||
$this->load->model('stations');
|
||||
$this->load->model('setup_model');
|
||||
|
||||
$data['countryCount'] = $this->setup_model->getCountryCount();
|
||||
$data['logbookCount'] = $this->setup_model->getLogbookCount();
|
||||
$data['locationCount'] = $this->setup_model->getLocationCount();
|
||||
|
||||
$data['current_active'] = $this->stations->find_active();
|
||||
|
||||
$setup_required = false;
|
||||
|
|
@ -62,7 +68,7 @@ class Dashboard extends CI_Controller {
|
|||
$this->load->view('interface_assets/footer');
|
||||
} else {
|
||||
|
||||
//
|
||||
//
|
||||
$this->load->model('cat');
|
||||
$this->load->model('vucc');
|
||||
|
||||
|
|
@ -120,7 +126,7 @@ class Dashboard extends CI_Controller {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
function radio_display_component() {
|
||||
$this->load->model('cat');
|
||||
|
||||
|
|
@ -130,7 +136,7 @@ class Dashboard extends CI_Controller {
|
|||
|
||||
function map() {
|
||||
$this->load->model('logbook_model');
|
||||
|
||||
|
||||
$this->load->library('qra');
|
||||
|
||||
$qsos = $this->logbook_model->get_last_qsos('18');
|
||||
|
|
@ -145,7 +151,7 @@ class Dashboard extends CI_Controller {
|
|||
echo ",";
|
||||
}
|
||||
|
||||
if($row->COL_SAT_NAME != null) {
|
||||
if($row->COL_SAT_NAME != null) {
|
||||
echo "{\"lat\":\"".$stn_loc[0]."\",\"lng\":\"".$stn_loc[1]."\", \"html\":\"Callsign: ".$row->COL_CALL."<br />Date/Time: ".$row->COL_TIME_ON."<br />SAT: ".$row->COL_SAT_NAME."<br />Mode: ";
|
||||
echo $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE;
|
||||
echo "\",\"label\":\"".$row->COL_CALL."\"}";
|
||||
|
|
@ -162,10 +168,10 @@ class Dashboard extends CI_Controller {
|
|||
if (count($grids) == 2) {
|
||||
$grid1 = $this->qra->qra2latlong(trim($grids[0]));
|
||||
$grid2 = $this->qra->qra2latlong(trim($grids[1]));
|
||||
|
||||
|
||||
$coords[]=array('lat' => $grid1[0],'lng'=> $grid1[1]);
|
||||
$coords[]=array('lat' => $grid2[0],'lng'=> $grid2[1]);
|
||||
|
||||
$coords[]=array('lat' => $grid2[0],'lng'=> $grid2[1]);
|
||||
|
||||
$stn_loc = $this->qra->get_midpoint($coords);
|
||||
}
|
||||
if (count($grids) == 4) {
|
||||
|
|
@ -173,20 +179,20 @@ class Dashboard extends CI_Controller {
|
|||
$grid2 = $this->qra->qra2latlong(trim($grids[1]));
|
||||
$grid3 = $this->qra->qra2latlong(trim($grids[2]));
|
||||
$grid4 = $this->qra->qra2latlong(trim($grids[3]));
|
||||
|
||||
|
||||
$coords[]=array('lat' => $grid1[0],'lng'=> $grid1[1]);
|
||||
$coords[]=array('lat' => $grid2[0],'lng'=> $grid2[1]);
|
||||
$coords[]=array('lat' => $grid3[0],'lng'=> $grid3[1]);
|
||||
$coords[]=array('lat' => $grid4[0],'lng'=> $grid4[1]);
|
||||
|
||||
$coords[]=array('lat' => $grid2[0],'lng'=> $grid2[1]);
|
||||
$coords[]=array('lat' => $grid3[0],'lng'=> $grid3[1]);
|
||||
$coords[]=array('lat' => $grid4[0],'lng'=> $grid4[1]);
|
||||
|
||||
$stn_loc = $this->qra->get_midpoint($coords);
|
||||
}
|
||||
|
||||
if($count != 1) {
|
||||
echo ",";
|
||||
}
|
||||
|
||||
if($row->COL_SAT_NAME != null) {
|
||||
|
||||
if($row->COL_SAT_NAME != null) {
|
||||
echo "{\"lat\":\"".$stn_loc[0]."\",\"lng\":\"".$stn_loc[1]."\", \"html\":\"Callsign: ".$row->COL_CALL."<br />Date/Time: ".$row->COL_TIME_ON."<br />SAT: ".$row->COL_SAT_NAME."<br />Mode: ";
|
||||
echo $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE;
|
||||
echo "\",\"label\":\"".$row->COL_CALL."\"}";
|
||||
|
|
@ -195,7 +201,7 @@ class Dashboard extends CI_Controller {
|
|||
echo $row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE;
|
||||
echo "\",\"label\":\"".$row->COL_CALL."\"}";
|
||||
}
|
||||
|
||||
|
||||
$count++;
|
||||
} else {
|
||||
if($count != 1) {
|
||||
|
|
@ -218,5 +224,5 @@ class Dashboard extends CI_Controller {
|
|||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@ class Maintenance extends CI_Controller {
|
|||
$this->load->model('Stations');
|
||||
$data['stations']=$this->Stations->all();
|
||||
$data['page_title'] = "Maintenance";
|
||||
$data['is_there_qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id();
|
||||
if ($data['is_there_qsos_with_no_station_id']) {
|
||||
$data['qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id();
|
||||
if ($data['qsos_with_no_station_id']) {
|
||||
$data['calls_wo_sid']=$this->Logbook_model->calls_without_station_id();
|
||||
}
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
|
|
@ -29,6 +29,7 @@ class Maintenance extends CI_Controller {
|
|||
$this->load->model('Logbook_model');
|
||||
$this->load->model('Stations');
|
||||
$call = xss_clean(($this->input->post('call')));
|
||||
$qsoids = xss_clean(($this->input->post('qsoids')));
|
||||
$station_profile_id = xss_clean(($this->input->post('station_id')));
|
||||
|
||||
// Check if target-station-id exists
|
||||
|
|
@ -39,8 +40,7 @@ class Maintenance extends CI_Controller {
|
|||
if ($station->station_id == $station_profile_id) { $allowed=true; }
|
||||
}
|
||||
if ($allowed) {
|
||||
log_message("error",$call." to ".$station_profile_id);
|
||||
$status=$this->Logbook_model->update_all_station_ids($station_profile_id,$call);
|
||||
$status=$this->Logbook_model->update_station_ids($station_profile_id,$call,$qsoids);
|
||||
} else {
|
||||
$status=false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Година';
|
|||
$lang['general_word_month'] = 'Месец';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Работени';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = '年';
|
|||
$lang['general_word_month'] = '月';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = '已通联';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = '南美洲';
|
|||
|
||||
$lang['gen_band_selection'] = '波段选择';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Rok';
|
|||
$lang['general_word_month'] = 'Měsíc';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Spojeno';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Jaar';
|
|||
$lang['general_word_month'] = 'Maand';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Gewerkt';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Year';
|
|||
$lang['general_word_month'] = 'Month';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Worked';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -191,3 +192,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Vuosi';
|
|||
$lang['general_word_month'] = 'Kuukausi';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Workittu';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'Etelä-Amerikka';
|
|||
|
||||
$lang['gen_band_selection'] = 'Bandin valinta';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Année';
|
|||
$lang['general_word_month'] = 'Mois';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Réalisés';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -32,4 +32,44 @@ ________________________________________________________________________________
|
|||
|
||||
$lang['export_sota_header'] = "SOTA CSV Export";
|
||||
$lang['export_sota_description'] = "Exportiere dein Logbuch um es in SOTA hochzuladen.";
|
||||
$lang['export_sota_info_warning'] = "Es werden nur QSO exportiert, welche SOTA Informationen enthalten!";
|
||||
$lang['export_sota_info_warning'] = "Es werden nur QSO exportiert, welche SOTA Informationen enthalten!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Exportiere einen Contest im Cabrillo Format";
|
||||
$lang['export_cabrillo_select_station'] = "Wähle einen Stationsstandort:";
|
||||
$lang['export_cabrillo_proceed'] = "Weiter";
|
||||
$lang['export_cabrillo_select_year'] = "Wähle Jahr";
|
||||
$lang['export_cabrillo_select_contest'] = "Wähle Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Wähle Zeitraum";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Kategorie Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Einzel Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi/Team Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Kategorie 'Assisted'";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Nicht 'Assisted'";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "'Assisted'";
|
||||
$lang['export_cabrillo_cat_band'] = "Kategorie Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND und VHF-FM-ONLY (nur ARRL VHF Contests)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Kategorie Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Kategorie Sendeleistung";
|
||||
$lang['export_cabrillo_cat_station'] = "Kategorie Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Kategorie Sender";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Kategorie Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operatoren";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Addresse";
|
||||
$lang['export_cabrillo_address_city'] = "Addresse Stadt";
|
||||
$lang['export_cabrillo_address_state_province'] = "Addresse Staat/Provinz";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Addresse Postleitzahl";
|
||||
$lang['export_cabrillo_address_country'] = "Addresse Land";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "Es wurden keine Contests in deinem Log gefunden.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "Für diesen Stationsstandort wurden keine vorhandenen Contests gefunden!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Jahr';
|
|||
$lang['general_word_month'] = 'Monat';
|
||||
|
||||
$lang['general_word_colors'] = "Farben";
|
||||
$lang['general_word_light'] = "Licht/Laser";
|
||||
$lang['general_word_worked'] = 'Gearbeitet';
|
||||
$lang['general_word_worked_not_confirmed'] = "Gearbeitet, nicht bestätigt";
|
||||
$lang['general_word_not_worked'] = "Nicht gearbeitet";
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Ετος';
|
|||
$lang['general_word_month'] = 'Μήνας';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Worked';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Anno';
|
|||
$lang['general_word_month'] = 'Mese';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Lavorato';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Rok';
|
|||
$lang['general_word_month'] = 'Miesiąc';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Pracowane';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Год';
|
|||
$lang['general_word_month'] = 'Месяц';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Сработано';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -194,3 +195,8 @@ $lang['southamerica'] = 'Южная Америка';
|
|||
|
||||
$lang['gen_band_selection'] = 'Выбор диапазона';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Año';
|
|||
$lang['general_word_month'] = 'Mes';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Realizados';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -14,13 +14,14 @@ $lang['general_word_info'] = 'Info';
|
|||
$lang['general_word_choose_file'] = 'Välj fil';
|
||||
$lang['general_word_next'] = 'Next';
|
||||
$lang['general_word_previous'] = 'Previous';
|
||||
$lang['general_word_cancel'] = "Cancel";
|
||||
$lang['general_word_ok'] = "OK";
|
||||
$lang['general_word_attention'] = "Attention";
|
||||
$lang['general_word_enabled'] = "Enabled";
|
||||
$lang['general_word_disabled'] = "Disabled";
|
||||
$lang['general_word_export'] = "Export";
|
||||
$lang['general_word_import'] = "Import";
|
||||
|
||||
$lang['general_word_cancel'] = "Cancel";
|
||||
$lang['general_word_ok'] = "OK";
|
||||
$lang['general_word_attention'] = "Attention";
|
||||
$lang['general_word_enabled'] = "Enabled";
|
||||
$lang['general_word_disabled'] = "Disabled";
|
||||
$lang['general_word_export'] = "Export";
|
||||
$lang['general_word_import'] = "Import";
|
||||
|
||||
$lang['general_word_date'] = 'Datum';
|
||||
$lang['general_word_time'] = 'Tid';
|
||||
|
|
@ -40,10 +41,11 @@ $lang['general_word_total'] = 'Totalt';
|
|||
$lang['general_word_year'] = 'I år';
|
||||
$lang['general_word_month'] = 'Denna månad';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Körda';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
$lang['general_word_confirmed'] = 'Bekräftade';
|
||||
$lang['general_word_needed'] = 'Behövs';
|
||||
|
||||
|
|
@ -56,7 +58,7 @@ $lang['general_word_sent'] = 'Skickad';
|
|||
$lang['general_word_received'] = 'Mottagen';
|
||||
$lang['general_word_requested'] = 'Begärd';
|
||||
$lang['general_word_queued'] = 'Köad';
|
||||
$lang['general_word_table'] = "Table";
|
||||
$lang['general_word_table'] = "Table";
|
||||
$lang['general_word_invalid_ignore'] = 'Invalid (Ignore)';
|
||||
$lang['general_word_qslcard'] = 'QSL-kort';
|
||||
$lang['general_word_qslcard_management'] = 'QSL Management';
|
||||
|
|
@ -100,7 +102,7 @@ $lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
|||
$lang['cloudlog_station_profile'] = 'Stationsplats';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
$lang['gen_hamradio_qso'] = 'QSO';
|
||||
$lang['gen_hamradio_station'] = 'Station';
|
||||
|
||||
|
|
@ -112,7 +114,7 @@ $lang['gen_hamradio_mode'] = 'Mode';
|
|||
$lang['gen_hamradio_rst_sent'] = 'Skickat';
|
||||
$lang['gen_hamradio_rst_rcvd'] = 'Mottagen\'d';
|
||||
$lang['gen_hamradio_band'] = 'Band';
|
||||
$lang['gen_hamradio_bandgroup'] = "Bandgroup";
|
||||
$lang['gen_hamradio_bandgroup'] = "Bandgroup";
|
||||
$lang['gen_hamradio_band_rx'] = 'Band (RX)';
|
||||
$lang['gen_hamradio_frequency'] = 'Frekvens';
|
||||
$lang['gen_hamradio_frequency_rx'] = 'Frekvens (RX)';
|
||||
|
|
@ -124,7 +126,7 @@ $lang['gen_hamradio_myrefs'] = 'My Refs';
|
|||
$lang['gen_hamradio_exchange_sent_short'] = 'Exch (S)';
|
||||
$lang['gen_hamradio_exchange_rcvd_short'] = 'Exch (R)';
|
||||
$lang['gen_hamradio_qsl'] = 'QSL';
|
||||
$lang['gen_hamradio_qsltype'] = "QSL Type";
|
||||
$lang['gen_hamradio_qsltype'] = "QSL Type";
|
||||
$lang['gen_hamradio_qslvia'] = 'QSL via';
|
||||
$lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||
$lang['gen_hamradio_locator'] = 'Lokator';
|
||||
|
|
@ -173,7 +175,7 @@ $lang['dashboard_you_have_had'] = 'Du har kört';
|
|||
$lang['dashboard_qsos_today'] = 'QSOs idag!';
|
||||
$lang['dashboard_qso_breakdown'] = 'QSOs Breakdown';
|
||||
$lang['dashboard_countries_breakdown'] = 'Länder Breakdown';
|
||||
$lang['gen_to_date'] = 'To date';
|
||||
$lang['gen_to_date'] = 'To date';
|
||||
|
||||
$lang['gen_from_date'] = 'Från datum';
|
||||
|
||||
|
|
@ -193,3 +195,8 @@ $lang['southamerica'] = 'Sydamerika';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band val';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
@ -34,3 +34,42 @@ $lang['export_sota_header'] = "SOTA CSV Export";
|
|||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ $lang['general_word_year'] = 'Yıl';
|
|||
$lang['general_word_month'] = 'Ay';
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Çalışılanlar';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
|
|
@ -193,3 +194,8 @@ $lang['southamerica'] = 'South America';
|
|||
|
||||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
|
|
|||
|
|
@ -4109,10 +4109,12 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
|
|||
}
|
||||
|
||||
public function check_for_station_id() {
|
||||
$this->db->select('COL_PRIMARY_KEY, COL_TIME_ON, COL_CALL, COL_MODE, COL_BAND');
|
||||
$this->db->where('station_id =', NULL);
|
||||
$query = $this->db->get($this->config->item('table_name'));
|
||||
log_message('debug','SQL: '.$this->db->last_query());
|
||||
if($query->num_rows() >= 1) {
|
||||
return 1;
|
||||
return $query->result();
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -4165,24 +4167,29 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
|
|||
}
|
||||
}
|
||||
|
||||
public function update_all_station_ids($station_id,$station_callsign) {
|
||||
public function update_station_ids($station_id,$station_callsign,$qsoids) {
|
||||
|
||||
$data = array(
|
||||
'station_id' => $station_id,
|
||||
);
|
||||
if (! empty($qsoids)) {
|
||||
$data = array(
|
||||
'station_id' => $station_id,
|
||||
);
|
||||
|
||||
$this->db->where(array('station_id' => NULL));
|
||||
if ($station_callsign == '') {
|
||||
$this->db->where(array('col_station_callsign' => NULL));
|
||||
} else {
|
||||
$this->db->where('col_station_callsign', $station_callsign);
|
||||
}
|
||||
$this->db->update($this->config->item('table_name'), $data);
|
||||
if ($this->db->affected_rows() > 0) {
|
||||
return TRUE;
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
$this->db->where_in('COL_PRIMARY_KEY', $qsoids);
|
||||
$this->db->where(array('station_id' => NULL));
|
||||
if ($station_callsign == '') {
|
||||
$this->db->where(array('col_station_callsign' => NULL));
|
||||
} else {
|
||||
$this->db->where('col_station_callsign', $station_callsign);
|
||||
}
|
||||
$this->db->update($this->config->item('table_name'), $data);
|
||||
if ($this->db->affected_rows() > 0) {
|
||||
return TRUE;
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
public function parse_frequency($frequency)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
class Setup_model extends CI_Model {
|
||||
|
||||
function getCountryCount() {
|
||||
$sql = 'select count(*) as count from dxcc_entities';
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row()->count;
|
||||
}
|
||||
|
||||
function getLogbookCount() {
|
||||
$userid = xss_clean($this->session->userdata('user_id'));
|
||||
$sql = 'select count(*) as count from station_logbooks where user_id =' . $userid;
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row()->count;
|
||||
}
|
||||
|
||||
function getLocationCount() {
|
||||
$userid = xss_clean($this->session->userdata('user_id'));
|
||||
$sql = 'select count(*) as count from station_profile where user_id =' . $userid;
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->row()->count;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -1,3 +1,7 @@
|
|||
<script>
|
||||
var lang_export_cabrillo_proceed = '<?php echo lang('export_cabrillo_proceed') ?>';
|
||||
var lang_export_cabrillo_no_contests_for_stationlocation = '<?php echo lang('export_cabrillo_no_contests_for_stationlocation') ?>';
|
||||
</script>
|
||||
<div class="container">
|
||||
|
||||
<br>
|
||||
|
|
@ -6,7 +10,7 @@
|
|||
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
Export a contest to a Cabrillo log
|
||||
<?php echo lang('export_cabrillo_description'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
|
|
@ -18,13 +22,13 @@
|
|||
|
||||
<form class="form" action="<?php echo site_url('cabrillo/export'); ?>" method="post" enctype="multipart/form-data">
|
||||
<div class="form-group form-inline row">
|
||||
<div class="col-md-3 control-label" for="station_id">Select Station Location: </div>
|
||||
<div class="col-md-3 control-label" for="station_id"><?php echo lang('export_cabrillo_select_station'); ?> </div>
|
||||
<select id="station_id" name="station_id" class="custom-select my-1 mr-sm-2 col-md-4">
|
||||
<?php foreach ($station_profile->result() as $station) { ?>
|
||||
<option value="<?php echo $station->station_id; ?>" <?php if ($station->station_id == $this->stations->find_active()) { echo " selected =\"selected\""; } ?>>Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>
|
||||
<option value="<?php echo $station->station_id; ?>" <?php if ($station->station_id == $this->stations->find_active()) { echo " selected =\"selected\""; } ?>><?php echo lang('gen_hamradio_callsign') ?>: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
<button id="button1id" type="button" onclick="loadYears();" name="button1id" class="btn btn-sm btn-primary"> Proceed</button>
|
||||
<button id="button1id" type="button" onclick="loadYears();" name="button1id" class="btn btn-sm btn-primary"> <?php echo lang('export_cabrillo_proceed') ?></button>
|
||||
</div>
|
||||
|
||||
<div class="form-group form-inline row contestyear">
|
||||
|
|
@ -38,53 +42,53 @@
|
|||
<input class="form-control my-1 mr-sm-2 col-md-4" id="soapbox" type="soapbox" name="soapbox" aria-label="soapbox">
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categoryoperator">Category-operator: </div>
|
||||
<div class="col-md-3 control-label" for="categoryoperator"><?php echo lang('export_cabrillo_cat_operator') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categoryoperator" name="categoryoperator">
|
||||
<option value="SINGLE-OP">Single-OP</option>
|
||||
<option value="MULTI-OP">Mulit-OP</option>
|
||||
<option value="CHECKLOG">Checklog</option>
|
||||
<option value="SINGLE-OP"><?php echo lang('export_cabrillo_cat_operator_single_op') ?></option>
|
||||
<option value="MULTI-OP"><?php echo lang('export_cabrillo_cat_operator_multi_op') ?></option>
|
||||
<option value="CHECKLOG"><?php echo lang('export_cabrillo_cat_operator_checklog') ?></option>
|
||||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categoryassisted">Category-assisted: </div>
|
||||
<div class="col-md-3 control-label" for="categoryassisted"><?php echo lang('export_cabrillo_cat_assisted') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categoryassisted" name="categoryassisted">
|
||||
<option value="NON-ASSISTED">Non-assisted</option>
|
||||
<option value="ASSISTED">Assisted</option>
|
||||
<option value="NON-ASSISTED"><?php echo lang('export_cabrillo_cat_assisted_not_ass') ?></option>
|
||||
<option value="ASSISTED"><?php echo lang('export_cabrillo_cat_assisted_ass') ?></option>
|
||||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categoryband">Category-band: </div>
|
||||
<div class="col-md-3 control-label" for="categoryband"><?php echo lang('export_cabrillo_cat_band') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categoryband" name="categoryband">
|
||||
<option value="ALL">ALL</option>
|
||||
<option value="160M">160M</option>
|
||||
<option value="80M">80M</option>
|
||||
<option value="40M">40M</option>
|
||||
<option value="20M">20M</option>
|
||||
<option value="15M">15M</option>
|
||||
<option value="10M">10M</option>
|
||||
<option value="6M">6M</option>
|
||||
<option value="4M">4M</option>
|
||||
<option value="2M">2M</option>
|
||||
<option value="222">222</option>
|
||||
<option value="432">432</option>
|
||||
<option value="902">902</option>
|
||||
<option value="1.2G">1.2G</option>
|
||||
<option value="2.3G">2.3G</option>
|
||||
<option value="3.4G">3.4G</option>
|
||||
<option value="5.7G">5.7G</option>
|
||||
<option value="10G">10G</option>
|
||||
<option value="24G">24G</option>
|
||||
<option value="47G">47G</option>
|
||||
<option value="75G">75G</option>
|
||||
<option value="122G">122G</option>
|
||||
<option value="134G">134G</option>
|
||||
<option value="241G">241G</option>
|
||||
<option value="Light">Light</option>
|
||||
<option value="VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)">VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)</option>
|
||||
<option value="ALL"><?php echo lang('general_word_all') ?></option>
|
||||
<option value="160M">160 M</option>
|
||||
<option value="80M">80 M</option>
|
||||
<option value="40M">40 M</option>
|
||||
<option value="20M">20 M</option>
|
||||
<option value="15M">15 M</option>
|
||||
<option value="10M">10 M</option>
|
||||
<option value="6M">6 M</option>
|
||||
<option value="4M">4 M</option>
|
||||
<option value="2M">2 M</option>
|
||||
<option value="222">222 MHz (1.25 M)</option>
|
||||
<option value="432">432 MHz (70 CM)</option>
|
||||
<option value="902">902 MHz (33 CM)</option>
|
||||
<option value="1.2G">1.2 GHz</option>
|
||||
<option value="2.3G">2.3 GHz</option>
|
||||
<option value="3.4G">3.4 GHz</option>
|
||||
<option value="5.7G">5.7 GHz</option>
|
||||
<option value="10G">10 GHz</option>
|
||||
<option value="24G">24 GHz</option>
|
||||
<option value="47G">47 GHz</option>
|
||||
<option value="75G">75 GHz</option>
|
||||
<option value="122G">122 GHz</option>
|
||||
<option value="134G">134 GHz</option>
|
||||
<option value="241G">241 GHz</option>
|
||||
<option value="Light"><?php echo lang('general_word_light') ?></option>
|
||||
<option value="VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)"><?php echo lang('export_cabrillo_cat_band_arrl_vhf') ?></option>
|
||||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categorymode">Category-mode: </div>
|
||||
<div class="col-md-3 control-label" for="categorymode"><?php echo lang('export_cabrillo_cat_mode') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorymode" name="categorymode">
|
||||
<option value="MIXED">MIXED</option>
|
||||
<option value="CW">CW</option>
|
||||
|
|
@ -95,7 +99,7 @@
|
|||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categorypower">Category-power: </div>
|
||||
<div class="col-md-3 control-label" for="categorypower"><?php echo lang('export_cabrillo_cat_power') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorypower" name="categorypower">
|
||||
<option value="LOW">LOW</option>
|
||||
<option value="HIGH">HIGH</option>
|
||||
|
|
@ -103,7 +107,7 @@
|
|||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categorystation">Category-station: </div>
|
||||
<div class="col-md-3 control-label" for="categorystation"><?php echo lang('export_cabrillo_cat_station') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorystation" name="categorystation">
|
||||
<option value="FIXED">FIXED</option>
|
||||
<option value="DISTRIBUTED">DISTRIBUTED</option>
|
||||
|
|
@ -119,7 +123,7 @@
|
|||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categorytransmitter">Category-transmitter: </div>
|
||||
<div class="col-md-3 control-label" for="categorytransmitter"><?php echo lang('export_cabrillo_cat_transmitter') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorytransmitter" name="categorytransmitter">
|
||||
<option value="ONE">ONE</option>
|
||||
<option value="TWO">TWO</option>
|
||||
|
|
@ -129,7 +133,7 @@
|
|||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="categoryoverlay">Category-overlay: </div>
|
||||
<div class="col-md-3 control-label" for="categoryoverlay"><?php echo lang('export_cabrillo_cat_overlay') ?>: </div>
|
||||
<select class="custom-select my-1 mr-sm-2 col-md-4" id="categoryoverlay" name="categoryoverlay">
|
||||
<option value="CLASSIC">CLASSIC</option>
|
||||
<option value="ROOKIE">ROOKIE</option>
|
||||
|
|
@ -140,43 +144,43 @@
|
|||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="operators">Operators: </div>
|
||||
<div class="col-md-3 control-label" for="operators"><?php echo lang('export_cabrillo_operators') ?>: </div>
|
||||
<input class="form-control my-1 mr-sm-2 col-md-4" id="operators" type="operators" name="operators" aria-label="operators">
|
||||
</select>
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="soapbox">Soapbox: </div>
|
||||
<div class="col-md-3 control-label" for="soapbox"><?php echo lang('export_cabrillo_soapbox') ?>: </div>
|
||||
<input class="form-control my-1 mr-sm-2 col-md-4" id="soapbox" type="text" name="soapbox" aria-label="soapbox">
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="address">Address: </div>
|
||||
<div class="col-md-3 control-label" for="address"><?php echo lang('export_cabrillo_address') ?>: </div>
|
||||
<input class="form-control my-1 mr-sm-2 col-md-4" id="address" type="text" name="address" aria-label="address">
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="addresscity">Address-city: </div>
|
||||
<div class="col-md-3 control-label" for="addresscity"><?php echo lang('export_cabrillo_address_city') ?>: </div>
|
||||
<input class="form-control my-1 mr-sm-2 col-md-4" id="addresscity" type="text" name="addresscity" aria-label="addresscity">
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="addressstateprovince">Address-state-province: </div>
|
||||
<div class="col-md-3 control-label" for="addressstateprovince"><?php echo lang('export_cabrillo_address_state_province') ?>: </div>
|
||||
<input class="form-control my-1 mr-sm-2 col-md-4" id="addressstateprovince" type="text" name="addressstateprovince" aria-label="addressstateprovince">
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="addresspostalcode">Address-postalcode: </div>
|
||||
<div class="col-md-3 control-label" for="addresspostalcode"><?php echo lang('export_cabrillo_address_postalcode') ?>: </div>
|
||||
<input class="form-control my-1 mr-sm-2 col-md-4" id="addresspostalcode" type="text" name="addresspostalcode" aria-label="addresspostalcode">
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="addresscountry">Address-country: </div>
|
||||
<div class="col-md-3 control-label" for="addresscountry"><?php echo lang('export_cabrillo_address_country') ?>: </div>
|
||||
<input class="form-control my-1 mr-sm-2 col-md-4" id="addresscountry" type="text" name="addresscountry" aria-label="addresscountry">
|
||||
</div>
|
||||
<div hidden="true" class="form-group form-inline row additionalinfo">
|
||||
<div class="col-md-3 control-label" for="button1id"></div>
|
||||
<button id="button1id" type="submit" name="button1id" class="btn btn-sm btn-primary"> Export</button>
|
||||
<button id="button1id" type="submit" name="button1id" class="btn btn-sm btn-primary"> <?php echo lang('general_word_export') ?></button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<?php }
|
||||
else {
|
||||
echo 'No contests were found in your log.';
|
||||
echo lang('export_cabrillo_no_contests_in_log');
|
||||
}
|
||||
?>
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,31 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
|
|||
?>
|
||||
<div class="container dashboard">
|
||||
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
|
||||
|
||||
|
||||
<?php if (version_compare(PHP_VERSION, '7.4.0') <= 0) { ?>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<?php echo lang('dashboard_php_version_warning') . ' ' . PHP_VERSION . '.';?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($countryCount == 0) { ?>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<?php echo lang('dashboard_country_files_warning'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($locationCount == 0) { ?>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<?php echo lang('dashboard_locations_warning'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($logbookCount == 0) { ?>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<?php echo lang('dashboard_logbooks_warning'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if($this->optionslib->get_option('dashboard_banner') != "false") { ?>
|
||||
<?php if($todays_qsos >= 1) { ?>
|
||||
<div class="alert alert-success" role="alert">
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
foreach ($qslarray->result() as $qsl) {
|
||||
echo '<tr>';
|
||||
echo '<td style=\'text-align: center\'><a id="edit_qso" href="javascript:displayQso('.$qsl->COL_PRIMARY_KEY.')">' . $qsl->COL_CALL . '</a></td>';
|
||||
echo '<td style=\'text-align: center\'><a id="edit_qso" href="javascript:displayQso('.$qsl->COL_PRIMARY_KEY.')">' . str_replace("0","Ø",$qsl->COL_CALL) . '</a></td>';
|
||||
echo '<td style=\'text-align: center\'>';
|
||||
echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE;
|
||||
echo '</td>';
|
||||
|
|
|
|||
|
|
@ -2318,7 +2318,7 @@ function viewQsl(picture, callsign) {
|
|||
if (callsign == null) {
|
||||
title = 'QSL Card';
|
||||
} else {
|
||||
title = 'QSL Card for ' + callsign;
|
||||
title = 'QSL Card for ' + callsign.replace('0', 'Ø');
|
||||
}
|
||||
|
||||
BootstrapDialog.show({
|
||||
|
|
@ -2380,7 +2380,7 @@ function viewEqsl(picture, callsign) {
|
|||
if (callsign == null) {
|
||||
title = 'eQSL Card';
|
||||
} else {
|
||||
title = 'eQSL Card for ' + callsign;
|
||||
title = 'eQSL Card for ' + callsign.replace('0', 'Ø');
|
||||
}
|
||||
|
||||
BootstrapDialog.show({
|
||||
|
|
|
|||
|
|
@ -13,11 +13,44 @@
|
|||
<div class="card-header">
|
||||
QSO-DB Maintenance
|
||||
</div>
|
||||
<?php if($is_there_qsos_with_no_station_id >= 1) { ?>
|
||||
<?php if(!empty($qsos_with_no_station_id)) { ?>
|
||||
<div class="alert alert-danger" role="alert" style="margin-bottom: 0px !important;">
|
||||
<span class="badge badge-pill badge-warning">Warning</span> The Database contains QSOs without a station-profile (location)<br/>
|
||||
<span class="badge badge-pill badge-warning">Warning</span> The Database contains <?php echo count($qsos_with_no_station_id); ?> QSO<?php echo count($qsos_with_no_station_id) > 1 ? 's' : '' ?> without a station-profile (location)<br/>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class?"table-responsive">
|
||||
<table id="unasigned_qsos_table" class="table table-sm table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col"><input type="checkbox" onClick="toggleAll(this)"></th>
|
||||
<th scope="col">Date</th>
|
||||
<th scope="col">Time</th>
|
||||
<th scope="col">Call</th>
|
||||
<th scope="col">Mode</th>
|
||||
<th scope="col">Band</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php if($this->session->userdata('user_date_format')) {
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
$custom_date_format = 'd.m.Y';
|
||||
}
|
||||
foreach ($qsos_with_no_station_id as $qso) {
|
||||
echo '<tr>';
|
||||
echo '<td><input type="checkbox" id="'.$qso->COL_PRIMARY_KEY.'" name="cBox[]" value="'.$qso->COL_PRIMARY_KEY.'"></td>';
|
||||
$timestamp = strtotime($qso->COL_TIME_ON);
|
||||
echo '<td>'.date($custom_date_format, $timestamp).'</td>';
|
||||
$timestamp = strtotime($qso->COL_TIME_ON);
|
||||
echo '<td>'.date('H:i', $timestamp).'</td>';
|
||||
echo '<td>'.$qso->COL_CALL.'</td>';
|
||||
echo '<td>'.$qso->COL_MODE.'</td>';
|
||||
echo '<td>'.$qso->COL_BAND.'</td>';
|
||||
echo '</tr>';
|
||||
} ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p class="card-text">Please reassign those QSOs to an existing station location:</p>
|
||||
|
||||
|
||||
|
|
@ -33,12 +66,12 @@
|
|||
<tbody>
|
||||
<?php
|
||||
foreach ($calls_wo_sid as $call) {
|
||||
echo '<tr><td>'.$call['COL_STATION_CALLSIGN'].'</td><td><select name="station_profile" id="station_profile">';
|
||||
echo '<tr><td><div id="station_call">'.$call['COL_STATION_CALLSIGN'].'</div></td><td><select name="station_profile" id="station_profile" onChange="updateCallsign(this)">';
|
||||
$options='';
|
||||
foreach ($stations->result() as $station) {
|
||||
$options.='<option value='.$station->station_id.'>'.$station->station_profile_name.' ('.$station->station_callsign.')</option>';
|
||||
}
|
||||
echo $options.'</select></td><td><button class="btn btn-warning" onClick="reassign(\''.$call['COL_STATION_CALLSIGN'].'\',$(\'#station_profile option:selected\').val());"><i class="fas fa-sync"></i>Reassign</a></button></td></tr>';
|
||||
echo $options.'</select></td><td><button class="btn btn-warning" onClick="reassign(\''.$call['COL_STATION_CALLSIGN'].'\',$(\'#station_profile option:selected\').val());"><i class="fas fa-sync"></i> Reassign</a></button></td></tr>';
|
||||
} ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
foreach ($qslarray->result() as $qsl) {
|
||||
echo '<tr>';
|
||||
echo '<td style=\'text-align: center\'>' . $qsl->COL_CALL . '</td>';
|
||||
echo '<td style=\'text-align: center\'>' . str_replace("0","Ø",$qsl->COL_CALL) . '</td>';
|
||||
echo '<td style=\'text-align: center\'>';
|
||||
echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE;
|
||||
echo '</td>';
|
||||
|
|
|
|||
|
|
@ -484,7 +484,7 @@
|
|||
|
||||
<div class="tab-pane fade" id="notesdetails" role="tabpanel" aria-labelledby="table-tab">
|
||||
<h3><?php echo lang('general_word_notes'); ?></h3>
|
||||
<?php echo nl2br($row->COL_NOTES); ?>
|
||||
<?php if (isset($row->COL_NOTES)) { echo nl2br($row->COL_NOTES); } ?>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ function loadYears() {
|
|||
$(".contestyear").append('<div class="col-md-3 control-label" for="year">Select year: </div>' +
|
||||
'<select id="year" class="custom-select my-1 mr-sm-2 col-md-2" name="year">' +
|
||||
'</select>' +
|
||||
' <button onclick="loadContests();" class="btn btn-sm btn-primary" type="button">Proceed</button>');
|
||||
' <button onclick="loadContests();" class="btn btn-sm btn-primary" type="button">' + lang_export_cabrillo_proceed + '</button>');
|
||||
|
||||
$.each(data, function(key, value) {
|
||||
$('#year')
|
||||
|
|
@ -21,7 +21,7 @@ function loadYears() {
|
|||
.text(value.year));
|
||||
});
|
||||
} else {
|
||||
$(".contestyear").append("No contests were found for this station location!");
|
||||
$(".contestyear").append(lang_export_cabrillo_no_contests_for_stationlocation);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
@ -40,7 +40,7 @@ function loadContests() {
|
|||
$(".contestname").append('<div class="col-md-3 control-label" for="contestid">Select contest: </div>' +
|
||||
'<select class="custom-select my-1 mr-sm-2 col-md-4" id="contestid" name="contestid">' +
|
||||
'</select>' +
|
||||
' <button onclick="loadContestDates();" class="btn btn-sm btn-primary" type="button">Proceed</button>');
|
||||
' <button onclick="loadContestDates();" class="btn btn-sm btn-primary" type="button">' + lang_export_cabrillo_proceed + '</button>');
|
||||
|
||||
$.each(data, function(key, value) {
|
||||
$('#contestid')
|
||||
|
|
@ -66,7 +66,7 @@ function loadContestDates() {
|
|||
'</select>' +
|
||||
'<select class="custom-select my-1 mr-sm-2 col-md-2" id="contestdatesto" name="contestdatesto">' +
|
||||
'</select>' +
|
||||
' <button class="btn btn-sm btn-primary" onclick="addAdditionalInfo();" type="button">Proceed</button>');
|
||||
' <button class="btn btn-sm btn-primary" onclick="addAdditionalInfo();" type="button">' + lang_export_cabrillo_proceed + '</button>');
|
||||
|
||||
$.each(data, function(key, value) {
|
||||
$('#contestdatesfrom')
|
||||
|
|
|
|||
|
|
@ -1,8 +1,15 @@
|
|||
function reassign(call,target_profile_id) {
|
||||
let qsoids = [];
|
||||
let elements = document.getElementsByName("cBox[]");
|
||||
elements.forEach((item) => {
|
||||
if (item.checked) {
|
||||
qsoids.push(item.value);
|
||||
}
|
||||
});
|
||||
$.ajax({
|
||||
url: base_url + 'index.php/maintenance/reassign',
|
||||
type: 'post',
|
||||
data: {'call': call, 'station_id': target_profile_id},
|
||||
data: {'call': call, 'station_id': target_profile_id, 'qsoids' : qsoids},
|
||||
success: function (resu) {
|
||||
if (resu.status) {
|
||||
location.reload();
|
||||
|
|
@ -10,3 +17,27 @@ function reassign(call,target_profile_id) {
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
function toggleAll(source) {
|
||||
console.log('test');
|
||||
if (source.checked) {
|
||||
let elements = document.getElementsByName("cBox[]");
|
||||
elements.forEach((item) => {
|
||||
item.checked = true;
|
||||
})
|
||||
source.checked = true;
|
||||
}
|
||||
if (!source.checked) {
|
||||
let elements = document.getElementsByName("cBox[]");
|
||||
elements.forEach((item) => {
|
||||
item.checked = false;
|
||||
})
|
||||
source.checked = false;
|
||||
}
|
||||
}
|
||||
|
||||
function updateCallsign(item) {
|
||||
let text = item.options[item.selectedIndex].text
|
||||
let call = text.substr(text.lastIndexOf('(')+1,(text.lastIndexOf(')')-text.lastIndexOf('(')-1));
|
||||
document.getElementById("station_call").innerHTML = call;
|
||||
}
|
||||
|
|
|
|||
正在加载…
在新工单中引用