Merge branch 'dev' into simple-fast-log-entry
这个提交包含在:
		
						当前提交
						e6c485fc27
					
				
					共有  43 个文件被更改,包括 919 次插入 和 123 次删除
				
			
		|  | @ -50,6 +50,12 @@ class Dashboard extends CI_Controller { | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$this->load->model('stations'); | 		$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(); | 		$data['current_active'] = $this->stations->find_active(); | ||||||
| 
 | 
 | ||||||
| 		$setup_required = false; | 		$setup_required = false; | ||||||
|  |  | ||||||
|  | @ -14,8 +14,8 @@ class Maintenance extends CI_Controller { | ||||||
| 		$this->load->model('Stations'); | 		$this->load->model('Stations'); | ||||||
| 		$data['stations']=$this->Stations->all(); | 		$data['stations']=$this->Stations->all(); | ||||||
| 		$data['page_title'] = "Maintenance"; | 		$data['page_title'] = "Maintenance"; | ||||||
| 		$data['is_there_qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id(); | 		$data['qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id(); | ||||||
| 		if ($data['is_there_qsos_with_no_station_id']) { | 		if ($data['qsos_with_no_station_id']) { | ||||||
| 			$data['calls_wo_sid']=$this->Logbook_model->calls_without_station_id(); | 			$data['calls_wo_sid']=$this->Logbook_model->calls_without_station_id(); | ||||||
| 		} | 		} | ||||||
| 		$this->load->view('interface_assets/header', $data); | 		$this->load->view('interface_assets/header', $data); | ||||||
|  | @ -29,6 +29,7 @@ class Maintenance extends CI_Controller { | ||||||
| 		$this->load->model('Logbook_model'); | 		$this->load->model('Logbook_model'); | ||||||
| 		$this->load->model('Stations'); | 		$this->load->model('Stations'); | ||||||
| 		$call = xss_clean(($this->input->post('call'))); | 		$call = xss_clean(($this->input->post('call'))); | ||||||
|  | 		$qsoids = xss_clean(($this->input->post('qsoids'))); | ||||||
| 		$station_profile_id = xss_clean(($this->input->post('station_id'))); | 		$station_profile_id = xss_clean(($this->input->post('station_id'))); | ||||||
| 
 | 
 | ||||||
| 		// Check if target-station-id exists
 | 		// 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 ($station->station_id == $station_profile_id) { $allowed=true; } | ||||||
| 		} | 		} | ||||||
| 		if ($allowed) { | 		if ($allowed) { | ||||||
| 			log_message("error",$call." to ".$station_profile_id); | 			$status=$this->Logbook_model->update_station_ids($station_profile_id,$call,$qsoids); | ||||||
| 			$status=$this->Logbook_model->update_all_station_ids($station_profile_id,$call); |  | ||||||
| 		} else { | 		} else { | ||||||
| 			$status=false; | 			$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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Месец'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Работени'; | $lang['general_word_worked'] = 'Работени'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = '月'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = '已通联'; | $lang['general_word_worked'] = '已通联'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = '南美洲'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = '波段选择'; | $lang['gen_band_selection'] = '波段选择'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Měsíc'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Spojeno'; | $lang['general_word_worked'] = 'Spojeno'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Maand'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Gewerkt'; | $lang['general_word_worked'] = 'Gewerkt'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Month'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Worked'; | $lang['general_word_worked'] = 'Worked'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -191,3 +192,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Kuukausi'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Workittu'; | $lang['general_word_worked'] = 'Workittu'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'Etelä-Amerikka'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Bandin valinta'; | $lang['gen_band_selection'] = 'Bandin valinta'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Mois'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Réalisés'; | $lang['general_word_worked'] = 'Réalisés'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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!'; | ||||||
|  |  | ||||||
|  | @ -33,3 +33,43 @@ ________________________________________________________________________________ | ||||||
| $lang['export_sota_header'] = "SOTA CSV Export"; | $lang['export_sota_header'] = "SOTA CSV Export"; | ||||||
| $lang['export_sota_description'] = "Exportiere dein Logbuch um es in SOTA hochzuladen."; | $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_month'] = 'Monat'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Farben"; | $lang['general_word_colors'] = "Farben"; | ||||||
|  | $lang['general_word_light'] = "Licht/Laser"; | ||||||
| $lang['general_word_worked'] = 'Gearbeitet'; | $lang['general_word_worked'] = 'Gearbeitet'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Gearbeitet, nicht bestätigt"; | $lang['general_word_worked_not_confirmed'] = "Gearbeitet, nicht bestätigt"; | ||||||
| $lang['general_word_not_worked'] = "Nicht gearbeitet"; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Μήνας'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Worked'; | $lang['general_word_worked'] = 'Worked'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Mese'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Lavorato'; | $lang['general_word_worked'] = 'Lavorato'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Miesiąc'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Pracowane'; | $lang['general_word_worked'] = 'Pracowane'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Месяц'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Сработано'; | $lang['general_word_worked'] = 'Сработано'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -194,3 +195,8 @@ $lang['southamerica'] = 'Южная Америка'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Выбор диапазона'; | $lang['gen_band_selection'] = 'Выбор диапазона'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Mes'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Realizados'; | $lang['general_word_worked'] = 'Realizados'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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,6 +14,7 @@ $lang['general_word_info'] = 'Info'; | ||||||
| $lang['general_word_choose_file'] = 'Välj fil'; | $lang['general_word_choose_file'] = 'Välj fil'; | ||||||
| $lang['general_word_next'] = 'Next'; | $lang['general_word_next'] = 'Next'; | ||||||
| $lang['general_word_previous'] = 'Previous'; | $lang['general_word_previous'] = 'Previous'; | ||||||
|  | 
 | ||||||
| $lang['general_word_cancel'] = "Cancel"; | $lang['general_word_cancel'] = "Cancel"; | ||||||
| $lang['general_word_ok'] = "OK"; | $lang['general_word_ok'] = "OK"; | ||||||
| $lang['general_word_attention'] = "Attention"; | $lang['general_word_attention'] = "Attention"; | ||||||
|  | @ -41,6 +42,7 @@ $lang['general_word_year'] = 'I år'; | ||||||
| $lang['general_word_month'] = 'Denna månad'; | $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'] = 'Körda'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +195,8 @@ $lang['southamerica'] = 'Sydamerika'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band val'; | $lang['gen_band_selection'] = 'Band val'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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_description'] = "Export your logbook for SOTA uploads."; | ||||||
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!"; | $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_month'] = 'Ay'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_colors'] = "Colors"; | $lang['general_word_colors'] = "Colors"; | ||||||
|  | $lang['general_word_light'] = "Light/Laser"; | ||||||
| $lang['general_word_worked'] = 'Çalışılanlar'; | $lang['general_word_worked'] = 'Çalışılanlar'; | ||||||
| $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | $lang['general_word_worked_not_confirmed'] = "Worked not confirmed"; | ||||||
| $lang['general_word_not_worked'] = "Not worked"; | $lang['general_word_not_worked'] = "Not worked"; | ||||||
|  | @ -193,3 +194,8 @@ $lang['southamerica'] = 'South America'; | ||||||
| 
 | 
 | ||||||
| $lang['gen_band_selection'] = 'Band selection'; | $lang['gen_band_selection'] = 'Band selection'; | ||||||
| $lang['general_word_today'] = 'Today'; | $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() { |     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); |       $this->db->where('station_id =', NULL); | ||||||
|       $query = $this->db->get($this->config->item('table_name')); |       $query = $this->db->get($this->config->item('table_name')); | ||||||
|  |       log_message('debug','SQL: '.$this->db->last_query()); | ||||||
|       if($query->num_rows() >= 1) { |       if($query->num_rows() >= 1) { | ||||||
|         return 1; |         return $query->result(); | ||||||
|       } else { |       } else { | ||||||
|         return 0; |         return 0; | ||||||
|       } |       } | ||||||
|  | @ -4165,12 +4167,14 @@ 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) { | ||||||
| 
 | 
 | ||||||
|  | 	    if (! empty($qsoids)) { | ||||||
| 			 $data = array( | 			 $data = array( | ||||||
| 				 'station_id' => $station_id, | 				 'station_id' => $station_id, | ||||||
| 			 ); | 			 ); | ||||||
| 
 | 
 | ||||||
|  | 			 $this->db->where_in('COL_PRIMARY_KEY', $qsoids); | ||||||
| 			 $this->db->where(array('station_id' => NULL)); | 			 $this->db->where(array('station_id' => NULL)); | ||||||
| 			 if ($station_callsign == '') { | 			 if ($station_callsign == '') { | ||||||
| 				$this->db->where(array('col_station_callsign' => NULL)); | 				$this->db->where(array('col_station_callsign' => NULL)); | ||||||
|  | @ -4183,6 +4187,9 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = | ||||||
| 			 } else { | 			 } else { | ||||||
| 				 return FALSE; | 				 return FALSE; | ||||||
| 			 } | 			 } | ||||||
|  | 		 } else { | ||||||
|  | 			 return FALSE; | ||||||
|  | 		 } | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     public function parse_frequency($frequency) |     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"> | <div class="container"> | ||||||
| 
 | 
 | ||||||
|     <br> |     <br> | ||||||
|  | @ -6,7 +10,7 @@ | ||||||
| 
 | 
 | ||||||
|     <div class="card"> |     <div class="card"> | ||||||
|         <div class="card-header"> |         <div class="card-header"> | ||||||
|             Export a contest to a Cabrillo log | 			<?php echo lang('export_cabrillo_description'); ?>
 | ||||||
|         </div> |         </div> | ||||||
|         <div class="card-body"> |         <div class="card-body"> | ||||||
| 
 | 
 | ||||||
|  | @ -18,13 +22,13 @@ | ||||||
| 
 | 
 | ||||||
| 			<form class="form" action="<?php echo site_url('cabrillo/export'); ?>" method="post" enctype="multipart/form-data"> | 			<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="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"> | 					<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) { ?>
 | 					<?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 } ?>
 | 					<?php } ?>
 | ||||||
| 					</select> | 					</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> | ||||||
| 
 | 
 | ||||||
| 				<div class="form-group form-inline row contestyear"> | 				<div class="form-group form-inline row contestyear"> | ||||||
|  | @ -38,24 +42,24 @@ | ||||||
| 					<input class="form-control my-1 mr-sm-2 col-md-4" id="soapbox" type="soapbox" name="soapbox" aria-label="soapbox"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="soapbox" type="soapbox" name="soapbox" aria-label="soapbox"> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<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="SINGLE-OP"><?php echo lang('export_cabrillo_cat_operator_single_op') ?></option>
 | ||||||
| 						<option value="MULTI-OP">Mulit-OP</option> | 						<option value="MULTI-OP"><?php echo lang('export_cabrillo_cat_operator_multi_op') ?></option>
 | ||||||
| 						<option value="CHECKLOG">Checklog</option> | 						<option value="CHECKLOG"><?php echo lang('export_cabrillo_cat_operator_checklog') ?></option>
 | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<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="NON-ASSISTED"><?php echo lang('export_cabrillo_cat_assisted_not_ass') ?></option>
 | ||||||
| 						<option value="ASSISTED">Assisted</option> | 						<option value="ASSISTED"><?php echo lang('export_cabrillo_cat_assisted_ass') ?></option>
 | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 					<div hidden="true" class="form-group form-inline row additionalinfo"> | 					<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"> | 					<select class="custom-select my-1 mr-sm-2 col-md-4" id="categoryband" name="categoryband"> | ||||||
| 						<option value="ALL">ALL</option> | 						<option value="ALL"><?php echo lang('general_word_all') ?></option>
 | ||||||
| 						<option value="160M">160 M</option> | 						<option value="160M">160 M</option> | ||||||
| 						<option value="80M">80 M</option> | 						<option value="80M">80 M</option> | ||||||
| 						<option value="40M">40 M</option> | 						<option value="40M">40 M</option> | ||||||
|  | @ -65,26 +69,26 @@ | ||||||
| 						<option value="6M">6 M</option> | 						<option value="6M">6 M</option> | ||||||
| 						<option value="4M">4 M</option> | 						<option value="4M">4 M</option> | ||||||
| 						<option value="2M">2 M</option> | 						<option value="2M">2 M</option> | ||||||
| 						<option value="222">222</option> | 						<option value="222">222 MHz (1.25 M)</option> | ||||||
| 						<option value="432">432</option> | 						<option value="432">432 MHz (70 CM)</option> | ||||||
| 						<option value="902">902</option> | 						<option value="902">902 MHz (33 CM)</option> | ||||||
| 						<option value="1.2G">1.2G</option> | 						<option value="1.2G">1.2 GHz</option> | ||||||
| 						<option value="2.3G">2.3G</option> | 						<option value="2.3G">2.3 GHz</option> | ||||||
| 						<option value="3.4G">3.4G</option> | 						<option value="3.4G">3.4 GHz</option> | ||||||
| 						<option value="5.7G">5.7G</option> | 						<option value="5.7G">5.7 GHz</option> | ||||||
| 						<option value="10G">10G</option> | 						<option value="10G">10 GHz</option> | ||||||
| 						<option value="24G">24G</option> | 						<option value="24G">24 GHz</option> | ||||||
| 						<option value="47G">47G</option> | 						<option value="47G">47 GHz</option> | ||||||
| 						<option value="75G">75G</option> | 						<option value="75G">75 GHz</option> | ||||||
| 						<option value="122G">122G</option> | 						<option value="122G">122 GHz</option> | ||||||
| 						<option value="134G">134G</option> | 						<option value="134G">134 GHz</option> | ||||||
| 						<option value="241G">241G</option> | 						<option value="241G">241 GHz</option> | ||||||
| 						<option value="Light">Light</option> | 						<option value="Light"><?php echo lang('general_word_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="VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)"><?php echo lang('export_cabrillo_cat_band_arrl_vhf') ?></option>
 | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorymode" name="categorymode"> | ||||||
| 						<option value="MIXED">MIXED</option> | 						<option value="MIXED">MIXED</option> | ||||||
| 						<option value="CW">CW</option> | 						<option value="CW">CW</option> | ||||||
|  | @ -95,7 +99,7 @@ | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorypower" name="categorypower"> | ||||||
| 						<option value="LOW">LOW</option> | 						<option value="LOW">LOW</option> | ||||||
| 						<option value="HIGH">HIGH</option> | 						<option value="HIGH">HIGH</option> | ||||||
|  | @ -103,7 +107,7 @@ | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorystation" name="categorystation"> | ||||||
| 						<option value="FIXED">FIXED</option> | 						<option value="FIXED">FIXED</option> | ||||||
| 						<option value="DISTRIBUTED">DISTRIBUTED</option> | 						<option value="DISTRIBUTED">DISTRIBUTED</option> | ||||||
|  | @ -119,7 +123,7 @@ | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<select class="custom-select my-1 mr-sm-2 col-md-4" id="categorytransmitter" name="categorytransmitter"> | ||||||
| 						<option value="ONE">ONE</option> | 						<option value="ONE">ONE</option> | ||||||
| 						<option value="TWO">TWO</option> | 						<option value="TWO">TWO</option> | ||||||
|  | @ -129,7 +133,7 @@ | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<select class="custom-select my-1 mr-sm-2 col-md-4" id="categoryoverlay" name="categoryoverlay"> | ||||||
| 						<option value="CLASSIC">CLASSIC</option> | 						<option value="CLASSIC">CLASSIC</option> | ||||||
| 						<option value="ROOKIE">ROOKIE</option> | 						<option value="ROOKIE">ROOKIE</option> | ||||||
|  | @ -140,43 +144,43 @@ | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="operators" type="operators" name="operators" aria-label="operators"> | ||||||
| 					</select> | 					</select> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="soapbox" type="text" name="soapbox" aria-label="soapbox"> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="address" type="text" name="address" aria-label="address"> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="addresscity" type="text" name="addresscity" aria-label="addresscity"> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="addressstateprovince" type="text" name="addressstateprovince" aria-label="addressstateprovince"> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="addresspostalcode" type="text" name="addresspostalcode" aria-label="addresspostalcode"> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<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"> | 					<input class="form-control my-1 mr-sm-2 col-md-4" id="addresscountry" type="text" name="addresscountry" aria-label="addresscountry"> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div hidden="true" class="form-group form-inline row additionalinfo"> | 				<div hidden="true" class="form-group form-inline row additionalinfo"> | ||||||
| 					<div class="col-md-3 control-label" for="button1id"></div> | 					<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> | 				</div> | ||||||
| 			</form> | 			</form> | ||||||
| 
 | 
 | ||||||
| 			<?php } | 			<?php } | ||||||
| 			else { | 			else { | ||||||
| 				echo 'No contests were found in your log.'; | 				echo lang('export_cabrillo_no_contests_in_log'); | ||||||
| 			} | 			} | ||||||
| 			?>
 | 			?>
 | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -49,6 +49,30 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) { | ||||||
| <div class="container dashboard"> | <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(($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($this->optionslib->get_option('dashboard_banner') != "false") { ?>
 | ||||||
| 	<?php if($todays_qsos >= 1) { ?>
 | 	<?php if($todays_qsos >= 1) { ?>
 | ||||||
| 		<div class="alert alert-success" role="alert"> | 		<div class="alert alert-success" role="alert"> | ||||||
|  |  | ||||||
|  | @ -34,7 +34,7 @@ | ||||||
| 
 | 
 | ||||||
|         foreach ($qslarray->result() as $qsl) { |         foreach ($qslarray->result() as $qsl) { | ||||||
|             echo '<tr>'; |             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 '<td style=\'text-align: center\'>'; | ||||||
| 			echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE; | 			echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE; | ||||||
| 			echo '</td>'; | 			echo '</td>'; | ||||||
|  |  | ||||||
|  | @ -2318,7 +2318,7 @@ function viewQsl(picture, callsign) { | ||||||
|             if (callsign == null) { |             if (callsign == null) { | ||||||
|                 title = 'QSL Card'; |                 title = 'QSL Card'; | ||||||
|             } else { |             } else { | ||||||
|                 title = 'QSL Card for ' + callsign; |                 title = 'QSL Card for ' + callsign.replace('0', 'Ø'); | ||||||
|             } |             } | ||||||
| 
 | 
 | ||||||
|             BootstrapDialog.show({ |             BootstrapDialog.show({ | ||||||
|  | @ -2380,7 +2380,7 @@ function viewEqsl(picture, callsign) { | ||||||
|             if (callsign == null) { |             if (callsign == null) { | ||||||
|                 title = 'eQSL Card'; |                 title = 'eQSL Card'; | ||||||
|             } else { |             } else { | ||||||
|                 title = 'eQSL Card for ' + callsign; |                 title = 'eQSL Card for ' + callsign.replace('0', 'Ø'); | ||||||
|             } |             } | ||||||
| 
 | 
 | ||||||
|             BootstrapDialog.show({ |             BootstrapDialog.show({ | ||||||
|  |  | ||||||
|  | @ -13,11 +13,44 @@ | ||||||
| 		  <div class="card-header"> | 		  <div class="card-header"> | ||||||
| 			QSO-DB Maintenance | 			QSO-DB Maintenance | ||||||
| 		  </div> | 		  </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;"> | 					<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> | ||||||
| 		  <div class="card-body"> | 		  <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> | 		  	<p class="card-text">Please reassign those QSOs to an existing station location:</p> | ||||||
| 		 | 		 | ||||||
| 		 | 		 | ||||||
|  | @ -33,7 +66,7 @@ | ||||||
| 					<tbody> | 					<tbody> | ||||||
| 		<?php  | 		<?php  | ||||||
| 		foreach ($calls_wo_sid as $call) { | 		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=''; | 			$options=''; | ||||||
| 			foreach ($stations->result() as $station) { | 			foreach ($stations->result() as $station) { | ||||||
| 				$options.='<option value='.$station->station_id.'>'.$station->station_profile_name.' ('.$station->station_callsign.')</option>'; | 				$options.='<option value='.$station->station_id.'>'.$station->station_profile_name.' ('.$station->station_callsign.')</option>'; | ||||||
|  |  | ||||||
|  | @ -36,7 +36,7 @@ | ||||||
| 
 | 
 | ||||||
|         foreach ($qslarray->result() as $qsl) { |         foreach ($qslarray->result() as $qsl) { | ||||||
|             echo '<tr>'; |             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 '<td style=\'text-align: center\'>'; | ||||||
| 			echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE; | 			echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE; | ||||||
| 			echo '</td>'; | 			echo '</td>'; | ||||||
|  |  | ||||||
|  | @ -484,7 +484,7 @@ | ||||||
| 
 | 
 | ||||||
|         <div class="tab-pane fade" id="notesdetails" role="tabpanel" aria-labelledby="table-tab"> |         <div class="tab-pane fade" id="notesdetails" role="tabpanel" aria-labelledby="table-tab"> | ||||||
|             <h3><?php echo lang('general_word_notes'); ?></h3>
 |             <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> |         </div> | ||||||
| 
 | 
 | ||||||
|         <?php |         <?php | ||||||
|  |  | ||||||
|  | @ -12,7 +12,7 @@ function loadYears() { | ||||||
|                 $(".contestyear").append('<div class="col-md-3 control-label" for="year">Select year: </div>' + |                 $(".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 id="year" class="custom-select my-1 mr-sm-2 col-md-2" name="year">' + | ||||||
|                 '</select>' + |                 '</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) { |                 $.each(data, function(key, value) { | ||||||
|                     $('#year') |                     $('#year') | ||||||
|  | @ -21,7 +21,7 @@ function loadYears() { | ||||||
|                         .text(value.year)); |                         .text(value.year)); | ||||||
|                 }); |                 }); | ||||||
|             } else { |             } 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>' + |                 $(".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 class="custom-select my-1 mr-sm-2 col-md-4" id="contestid" name="contestid">' + | ||||||
|                 '</select>' + |                 '</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) { |                 $.each(data, function(key, value) { | ||||||
|                     $('#contestid') |                     $('#contestid') | ||||||
|  | @ -66,7 +66,7 @@ function loadContestDates() { | ||||||
|                 '</select>' + |                 '</select>' + | ||||||
|                 '<select class="custom-select my-1 mr-sm-2 col-md-2" id="contestdatesto" name="contestdatesto">' + |                 '<select class="custom-select my-1 mr-sm-2 col-md-2" id="contestdatesto" name="contestdatesto">' + | ||||||
|                 '</select>' + |                 '</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) { |                 $.each(data, function(key, value) { | ||||||
|                     $('#contestdatesfrom') |                     $('#contestdatesfrom') | ||||||
|  |  | ||||||
|  | @ -1,8 +1,15 @@ | ||||||
| function reassign(call,target_profile_id) { | function reassign(call,target_profile_id) { | ||||||
|  | 	let qsoids = []; | ||||||
|  | 	let elements = document.getElementsByName("cBox[]"); | ||||||
|  | 	elements.forEach((item) => { | ||||||
|  | 		if (item.checked) { | ||||||
|  | 			qsoids.push(item.value); | ||||||
|  | 		} | ||||||
|  | 	}); | ||||||
| 	$.ajax({ | 	$.ajax({ | ||||||
| 		url: base_url + 'index.php/maintenance/reassign', | 		url: base_url + 'index.php/maintenance/reassign', | ||||||
| 		type: 'post', | 		type: 'post', | ||||||
| 		data: {'call': call, 'station_id': target_profile_id}, | 		data: {'call': call, 'station_id': target_profile_id, 'qsoids' : qsoids}, | ||||||
| 		success: function (resu) { | 		success: function (resu) { | ||||||
| 			if (resu.status) { | 			if (resu.status) { | ||||||
| 				location.reload(); | 				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; | ||||||
|  | } | ||||||
|  |  | ||||||
		正在加载…
	
		在新工单中引用