Log table : Grid square hint on Distance column
这个提交包含在:
		
						当前提交
						24dcb50bca
					
				
					共有  37 个文件被更改,包括 204 次插入 和 52 次删除
				
			
		
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							|  | @ -23,3 +23,4 @@ sync.sh | ||||||
| .env | .env | ||||||
| /node_modules | /node_modules | ||||||
| /.vs | /.vs | ||||||
|  | .vscode/sftp.json | ||||||
|  |  | ||||||
|  | @ -17,8 +17,12 @@ class Distances extends CI_Controller { | ||||||
|         $data['page_title'] = "Distances Worked"; |         $data['page_title'] = "Distances Worked"; | ||||||
| 
 | 
 | ||||||
|         $this->load->model('bands'); |         $this->load->model('bands'); | ||||||
|  |         $this->load->model('gridmap_model'); | ||||||
|  | 
 | ||||||
|         $data['bands_available'] = $this->bands->get_worked_bands_distances(); |         $data['bands_available'] = $this->bands->get_worked_bands_distances(); | ||||||
|         $data['sats_available'] = $this->bands->get_worked_sats(); |         $data['sats_available'] = $this->bands->get_worked_sats(); | ||||||
|  |         $data['modes'] = $this->gridmap_model->get_worked_modes(); | ||||||
|  |         $data['powers'] = $this->bands->get_worked_powers(); | ||||||
| 
 | 
 | ||||||
|         $this->load->view('interface_assets/header', $data); |         $this->load->view('interface_assets/header', $data); | ||||||
|         $this->load->view('distances/index'); |         $this->load->view('distances/index'); | ||||||
|  | @ -72,12 +76,27 @@ class Distances extends CI_Controller { | ||||||
| 		$distance = $this->security->xss_clean($this->input->post('distance')); | 		$distance = $this->security->xss_clean($this->input->post('distance')); | ||||||
| 		$band = $this->security->xss_clean($this->input->post('band')); | 		$band = $this->security->xss_clean($this->input->post('band')); | ||||||
| 		$sat = $this->security->xss_clean($this->input->post('sat')); | 		$sat = $this->security->xss_clean($this->input->post('sat')); | ||||||
|  | 		$mode = $this->security->xss_clean($this->input->post('mode')); | ||||||
|  | 		$power = $this->security->xss_clean($this->input->post('pwr')); | ||||||
| 
 | 
 | ||||||
| 		$data['results'] = $this->distances_model->qso_details($distance, $band, $sat); | 		$data['results'] = $this->distances_model->qso_details($distance, $band, $sat, $mode, $power); | ||||||
| 
 | 
 | ||||||
|         // Render Page
 |         // Render Page
 | ||||||
|  |         if (strtolower($band) == 'all') $band = lang('statistics_distances_bands_all'); | ||||||
|  |         (strtolower($mode) == 'all') ? $mode = lang('statistics_distances_modes_all') : $mode = strtoupper($mode); | ||||||
|  |         switch (strtolower($power)) { | ||||||
|  |             case 'all': | ||||||
|  |                 $power = lang('statistics_distances_bands_all'); | ||||||
|  |                 break; | ||||||
|  |             case '': | ||||||
|  |                 $power = lang('general_word_undefined'); | ||||||
|  |                 break; | ||||||
|  |             default: | ||||||
|  |                 $power .= 'W'; | ||||||
|  |         } | ||||||
|  | 
 | ||||||
| 		$data['page_title'] = "Log View - " . $distance; | 		$data['page_title'] = "Log View - " . $distance; | ||||||
| 		$data['filter'] = lang('statistics_distances_qsos_with') . " " . $distance . " " . lang('statistics_distances_and_band'). " " . $band; | 		$data['filter'] = lang('statistics_distances_qsos_with') . " " . $distance . lang('statistics_distances_and_band') . " " . $band . lang('statistics_distances_and_mode') . $mode . lang('statistics_distances_and_power') . $power; | ||||||
| 		$this->load->view('awards/details', $data); | 		$this->load->view('awards/details', $data); | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtering on"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Дата'; | $lang['general_word_date'] = 'Дата'; | ||||||
| $lang['general_word_startdate'] = "Start Date"; | $lang['general_word_startdate'] = "Start Date"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# of QSO's worked"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "All"; | $lang['statistics_distances_bands_all'] = "All"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "All"; | ||||||
| $lang['statistics_distances_worked'] = "Distances Worked"; | $lang['statistics_distances_worked'] = "Distances Worked"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs with"; | $lang['statistics_distances_qsos_with'] = "QSOs with distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "and band"; | $lang['statistics_distances_and_band'] = ", band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", power : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "筛选打开"; | ||||||
| $lang['general_word_not_display'] = "不显示"; | $lang['general_word_not_display'] = "不显示"; | ||||||
| $lang['general_word_icon'] = "图标"; | $lang['general_word_icon'] = "图标"; | ||||||
| $lang['general_word_never'] = "从不"; | $lang['general_word_never'] = "从不"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = '日期'; | $lang['general_word_date'] = '日期'; | ||||||
| $lang['general_word_startdate'] = "开始时间"; | $lang['general_word_startdate'] = "开始时间"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "通联的 QSO 数量"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "全部"; | $lang['statistics_distances_bands_all'] = "全部"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "全部"; | ||||||
| $lang['statistics_distances_worked'] = "通联距离"; | $lang['statistics_distances_worked'] = "通联距离"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "次通联<br /> 您最远的通联是与"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "次通联<br /> 您最远的通联是与"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "在网格"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "在网格"; | ||||||
|  | @ -35,6 +36,8 @@ $lang['statistics_distances_number_of_qsos'] = "QSO 数量"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "通联的呼号(最多显示5个):"; | $lang['statistics_distances_callsigns_worked'] = "通联的呼号(最多显示5个):"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSO 与"; | $lang['statistics_distances_qsos_with'] = "QSO 与"; | ||||||
| $lang['statistics_distances_and_band'] = "和波段"; | $lang['statistics_distances_and_band'] = "和波段"; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", 模式 : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", 发射功率 : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtering on"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Datum'; | $lang['general_word_date'] = 'Datum'; | ||||||
| $lang['general_word_startdate'] = "Start Date"; | $lang['general_word_startdate'] = "Start Date"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# of QSO's worked"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "All"; | $lang['statistics_distances_bands_all'] = "All"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "All"; | ||||||
| $lang['statistics_distances_worked'] = "Distances Worked"; | $lang['statistics_distances_worked'] = "Distances Worked"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs with"; | $lang['statistics_distances_qsos_with'] = "QSOs with distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "and band"; | $lang['statistics_distances_and_band'] = ", band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", power : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtering on"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Datum'; | $lang['general_word_date'] = 'Datum'; | ||||||
| $lang['general_word_startdate'] = "Start Date"; | $lang['general_word_startdate'] = "Start Date"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtering on"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Date'; | $lang['general_word_date'] = 'Date'; | ||||||
| $lang['general_word_startdate'] = "Start Date"; | $lang['general_word_startdate'] = "Start Date"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# of QSO's worked"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "All"; | $lang['statistics_distances_bands_all'] = "All"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "All"; | ||||||
| $lang['statistics_distances_worked'] = "Distances Worked"; | $lang['statistics_distances_worked'] = "Distances Worked"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs with"; | $lang['statistics_distances_qsos_with'] = "QSOs with distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "and band"; | $lang['statistics_distances_and_band'] = ", band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", power : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtering on"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Päivä'; | $lang['general_word_date'] = 'Päivä'; | ||||||
| $lang['general_word_startdate'] = "Start Date"; | $lang['general_word_startdate'] = "Start Date"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# of QSO's worked"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "All"; | $lang['statistics_distances_bands_all'] = "All"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "All"; | ||||||
| $lang['statistics_distances_worked'] = "Distances Worked"; | $lang['statistics_distances_worked'] = "Distances Worked"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs with"; | $lang['statistics_distances_qsos_with'] = "QSOs with distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "and band"; | $lang['statistics_distances_and_band'] = ", band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", power : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtré sur"; | ||||||
| $lang['general_word_not_display'] = "Ne pas afficher"; | $lang['general_word_not_display'] = "Ne pas afficher"; | ||||||
| $lang['general_word_icon'] = "Icône"; | $lang['general_word_icon'] = "Icône"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Indéfini(e)"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = "Date"; | $lang['general_word_date'] = "Date"; | ||||||
| $lang['general_word_startdate'] = "Date début"; | $lang['general_word_startdate'] = "Date début"; | ||||||
|  | @ -124,8 +125,8 @@ $lang['gen_hamradio_station'] = "Station"; | ||||||
| 
 | 
 | ||||||
| $lang['gen_hamradio_call'] = "QRZ"; | $lang['gen_hamradio_call'] = "QRZ"; | ||||||
| $lang['gen_hamradio_callsign'] = "Indicatif"; | $lang['gen_hamradio_callsign'] = "Indicatif"; | ||||||
| $lang['gen_hamradio_prefix'] = "Préfix"; | $lang['gen_hamradio_prefix'] = "Préfixe"; | ||||||
| $lang['gen_hamradio_suffix'] = "Suffix"; | $lang['gen_hamradio_suffix'] = "Suffixe"; | ||||||
| $lang['gen_hamradio_de'] = "De"; | $lang['gen_hamradio_de'] = "De"; | ||||||
| $lang['gen_hamradio_dx'] = "Dx"; | $lang['gen_hamradio_dx'] = "Dx"; | ||||||
| $lang['gen_hamradio_mode'] = "Mode"; | $lang['gen_hamradio_mode'] = "Mode"; | ||||||
|  | @ -136,8 +137,8 @@ $lang['gen_hamradio_rst_rcvd'] = "Reçu"; | ||||||
| $lang['gen_hamradio_band'] = "Bande"; | $lang['gen_hamradio_band'] = "Bande"; | ||||||
| $lang['gen_hamradio_bandgroup'] = "Groupe de Bandes"; | $lang['gen_hamradio_bandgroup'] = "Groupe de Bandes"; | ||||||
| $lang['gen_hamradio_band_rx'] = "Bande (RX)"; | $lang['gen_hamradio_band_rx'] = "Bande (RX)"; | ||||||
| $lang['gen_hamradio_frequency'] = "Frequence"; | $lang['gen_hamradio_frequency'] = "Fréquence"; | ||||||
| $lang['gen_hamradio_frequency_rx'] = "Frequence (RX)"; | $lang['gen_hamradio_frequency_rx'] = "Fréquence (RX)"; | ||||||
| $lang['gen_hamradio_radio'] = "Radio"; | $lang['gen_hamradio_radio'] = "Radio"; | ||||||
| $lang['gen_hamradio_rsts'] = "RST (S)"; | $lang['gen_hamradio_rsts'] = "RST (S)"; | ||||||
| $lang['gen_hamradio_rstr'] = "RST (R)"; | $lang['gen_hamradio_rstr'] = "RST (R)"; | ||||||
|  | @ -150,11 +151,11 @@ $lang['gen_hamradio_qsltype'] = "QSL Type"; | ||||||
| $lang['gen_hamradio_qslvia'] = "QSL via"; | $lang['gen_hamradio_qslvia'] = "QSL via"; | ||||||
| $lang['gen_hamradio_qslmsg'] = "QSL Msg"; | $lang['gen_hamradio_qslmsg'] = "QSL Msg"; | ||||||
| $lang['gen_hamradio_locator'] = "Locator"; | $lang['gen_hamradio_locator'] = "Locator"; | ||||||
| $lang['gen_hamradio_transmit_power'] = "Puissance Emission (W)"; | $lang['gen_hamradio_transmit_power'] = "Puissance d'émission (W)"; | ||||||
| $lang['gen_hamradio_propagation_mode'] = "Mode Propagation"; | $lang['gen_hamradio_propagation_mode'] = "Mode de propagation"; | ||||||
| 
 | 
 | ||||||
| $lang['gen_hamradio_satellite_name'] = "Nom du Satellite"; | $lang['gen_hamradio_satellite_name'] = "Nom du satellite"; | ||||||
| $lang['gen_hamradio_satellite_mode'] = "Mode du Satellite"; | $lang['gen_hamradio_satellite_mode'] = "Mode du satellite"; | ||||||
| 
 | 
 | ||||||
| $lang['gen_hamradio_logbook'] = "Journal de trafic"; | $lang['gen_hamradio_logbook'] = "Journal de trafic"; | ||||||
| $lang['gen_hamradio_award'] = "Award"; | $lang['gen_hamradio_award'] = "Award"; | ||||||
|  | @ -166,7 +167,7 @@ $lang['gen_hamradio_dxcc'] = "DXCC"; | ||||||
| $lang['gen_hamradio_deleted_dxcc'] = "DXCC Supprimé"; | $lang['gen_hamradio_deleted_dxcc'] = "DXCC Supprimé"; | ||||||
| $lang['gen_hamradio_continent'] = "Continent"; | $lang['gen_hamradio_continent'] = "Continent"; | ||||||
| $lang['gen_hamradio_usa_state'] = "Etat USA"; | $lang['gen_hamradio_usa_state'] = "Etat USA"; | ||||||
| $lang['gen_hamradio_county_reference'] = "Compté USA"; | $lang['gen_hamradio_county_reference'] = "Comté USA"; | ||||||
| $lang['gen_hamradio_iota_reference'] = "Référence IOTA"; | $lang['gen_hamradio_iota_reference'] = "Référence IOTA"; | ||||||
| $lang['gen_hamradio_sota_reference'] = "Référence SOTA"; | $lang['gen_hamradio_sota_reference'] = "Référence SOTA"; | ||||||
| $lang['gen_hamradio_wwff_reference'] = "Référence WWFF"; | $lang['gen_hamradio_wwff_reference'] = "Référence WWFF"; | ||||||
|  |  | ||||||
|  | @ -14,7 +14,7 @@ $lang['qso_previous_max_shown'] = "Max. 5 previous contacts are shown"; | ||||||
| $lang['qso_quicklog_enter_callsign'] = 'QUICKLOG Enter Callsign'; | $lang['qso_quicklog_enter_callsign'] = 'QUICKLOG Enter Callsign'; | ||||||
| 
 | 
 | ||||||
| // Input Help Text on the /QSO Display
 | // Input Help Text on the /QSO Display
 | ||||||
| $lang['qso_transmit_power_helptext'] = 'Saisissez la ouissance en Watts en utilisant uniquement des chiffres.'; | $lang['qso_transmit_power_helptext'] = 'Saisissez la puissance en Watts en utilisant uniquement des chiffres.'; | ||||||
| 
 | 
 | ||||||
| $lang['qso_sota_ref_helptext'] = 'Par exemple: GM/NS-001.'; | $lang['qso_sota_ref_helptext'] = 'Par exemple: GM/NS-001.'; | ||||||
| $lang['qso_wwff_ref_helptext'] = 'Par exemple: DLFF-0069.'; | $lang['qso_wwff_ref_helptext'] = 'Par exemple: DLFF-0069.'; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "QSOs réalisés"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "Toutes"; | $lang['statistics_distances_bands_all'] = "Toutes"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "Tous"; | ||||||
| $lang['statistics_distances_worked'] = "Nombre de QSOs réalisés par plage de distance"; | $lang['statistics_distances_worked'] = "Nombre de QSOs réalisés par plage de distance"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts utilisés pour le graphique.<br> Le contact le plus lointain réalisé est "; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts utilisés pour le graphique.<br> Le contact le plus lointain réalisé est "; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "avec le locator"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "avec le locator"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "La distanc | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "La distance moyenne est de"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "La distance moyenne est de"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Nombre de QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Nombre de QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Indicatif(s) contacté(s) (liste de 5 max)"; | $lang['statistics_distances_callsigns_worked'] = "Indicatif(s) contacté(s) (liste de 5 max)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs avec"; | $lang['statistics_distances_qsos_with'] = "QSOs avec distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "et bandes"; | $lang['statistics_distances_and_band'] = ", bande : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", puissance : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtern auf"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Nie"; | $lang['general_word_never'] = "Nie"; | ||||||
|  | $lang['general_word_undefined'] = "Unbestimmt"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Datum'; | $lang['general_word_date'] = 'Datum'; | ||||||
| $lang['general_word_startdate'] = "Start Datum"; | $lang['general_word_startdate'] = "Start Datum"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# gearbeitete QSOs"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "Alle"; | $lang['statistics_distances_bands_all'] = "Alle"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "Alle"; | ||||||
| $lang['statistics_distances_worked'] = "Gearbeitete Entfernungen"; | $lang['statistics_distances_worked'] = "Gearbeitete Entfernungen"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "Kontakte wurden dargestellt.<br /> Der weiteste Kontakt war"; // make sure'<br />' stays there
 | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "Kontakte wurden dargestellt.<br /> Der weiteste Kontakt war"; // make sure'<br />' stays there
 | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "im Planquadrat"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "im Planquadrat"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "Die Distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "Die durchschnittliche Distanz ist"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "Die durchschnittliche Distanz ist"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Anzahl der QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Anzahl der QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Gearbeitete(s) Rufzeichen (max 5 werden gezeigt)"; | $lang['statistics_distances_callsigns_worked'] = "Gearbeitete(s) Rufzeichen (max 5 werden gezeigt)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs mit"; | $lang['statistics_distances_qsos_with'] = "QSOs mit Distanz : "; | ||||||
| $lang['statistics_distances_and_band'] = "und Band"; | $lang['statistics_distances_and_band'] = ", Band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", Mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", Sendeleistung : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtering on"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Ημερομηνία'; | $lang['general_word_date'] = 'Ημερομηνία'; | ||||||
| $lang['general_word_startdate'] = "Start Date"; | $lang['general_word_startdate'] = "Start Date"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# of QSO's worked"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "All"; | $lang['statistics_distances_bands_all'] = "All"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "All"; | ||||||
| $lang['statistics_distances_worked'] = "Distances Worked"; | $lang['statistics_distances_worked'] = "Distances Worked"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs with"; | $lang['statistics_distances_qsos_with'] = "QSOs with distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "and band"; | $lang['statistics_distances_and_band'] = ", band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", power : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtro attivo"; | ||||||
| $lang['general_word_not_display'] = "Non visualizzare"; | $lang['general_word_not_display'] = "Non visualizzare"; | ||||||
| $lang['general_word_icon'] = "Icona"; | $lang['general_word_icon'] = "Icona"; | ||||||
| $lang['general_word_never'] = "Mai"; | $lang['general_word_never'] = "Mai"; | ||||||
|  | $lang['general_word_undefined'] = "Indefinito"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Data'; | $lang['general_word_date'] = 'Data'; | ||||||
| $lang['general_word_startdate'] = "Data di inizio"; | $lang['general_word_startdate'] = "Data di inizio"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# di QSO effettuati"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "Tutte"; | $lang['statistics_distances_bands_all'] = "Tutte"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "Tutte"; | ||||||
| $lang['statistics_distances_worked'] = "Distanze percorse"; | $lang['statistics_distances_worked'] = "Distanze percorse"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "i contatti sono stati tracciati.<br /> Il tuo contatto più lontano era con"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "i contatti sono stati tracciati.<br /> Il tuo contatto più lontano era con"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "nella griglia"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "nella griglia"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "La distanz | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "La distanza media è"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "La distanza media è"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Numero di QSO"; | $lang['statistics_distances_number_of_qsos'] = "Numero di QSO"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Nominativo(i) funzionante(i max 5 mostrati)"; | $lang['statistics_distances_callsigns_worked'] = "Nominativo(i) funzionante(i max 5 mostrati)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSO con"; | $lang['statistics_distances_qsos_with'] = "QSO con distanza : "; | ||||||
| $lang['statistics_distances_and_band'] = "e banda"; | $lang['statistics_distances_and_band'] = ", banda : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", modo : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", potenza : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtering on"; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
| $lang['general_word_never'] = "Never"; | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Data'; | $lang['general_word_date'] = 'Data'; | ||||||
| $lang['general_word_startdate'] = "Start Date"; | $lang['general_word_startdate'] = "Start Date"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# of QSO's worked"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "All"; | $lang['statistics_distances_bands_all'] = "All"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "All"; | ||||||
| $lang['statistics_distances_worked'] = "Distances Worked"; | $lang['statistics_distances_worked'] = "Distances Worked"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs with"; | $lang['statistics_distances_qsos_with'] = "QSOs with distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "and band"; | $lang['statistics_distances_and_band'] = ", band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", power : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Отфильтровано по"; | ||||||
| $lang['general_word_not_display'] = "Не отображать"; | $lang['general_word_not_display'] = "Не отображать"; | ||||||
| $lang['general_word_icon'] = "Иконка"; | $lang['general_word_icon'] = "Иконка"; | ||||||
| $lang['general_word_never'] = "Никогда"; | $lang['general_word_never'] = "Никогда"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Дата'; | $lang['general_word_date'] = 'Дата'; | ||||||
| $lang['general_word_startdate'] = "Дата начала"; | $lang['general_word_startdate'] = "Дата начала"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# QSO проведено"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "все"; | $lang['statistics_distances_bands_all'] = "все"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "все"; | ||||||
| $lang['statistics_distances_worked'] = "Сработанные дистанции"; | $lang['statistics_distances_worked'] = "Сработанные дистанции"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "контакты отображены.<br /> Наиболее дальний контакт с"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "контакты отображены.<br /> Наиболее дальний контакт с"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "в квадрате"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "в квадрате"; | ||||||
|  | @ -34,7 +35,9 @@ $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "Средн | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Количество QSO"; | $lang['statistics_distances_number_of_qsos'] = "Количество QSO"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Сработанные позывные(ной) (максимально 5 показано)"; | $lang['statistics_distances_callsigns_worked'] = "Сработанные позывные(ной) (максимально 5 показано)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs с"; | $lang['statistics_distances_qsos_with'] = "QSOs с"; | ||||||
| $lang['statistics_distances_and_band'] = "и диапазоне"; | $lang['statistics_distances_and_band'] = ", диапазоне : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", Вид модуляции : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", Мощность передачи : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,7 +26,8 @@ $lang['general_word_count'] = "Conteo"; | ||||||
| $lang['general_word_filtering_on'] = "Filtrado por"; | $lang['general_word_filtering_on'] = "Filtrado por"; | ||||||
| $lang['general_word_not_display'] = "No mostrar"; | $lang['general_word_not_display'] = "No mostrar"; | ||||||
| $lang['general_word_icon'] = "Icono"; | $lang['general_word_icon'] = "Icono"; | ||||||
| 
 | $lang['general_word_never'] = "Nunca"; | ||||||
|  | $lang['general_word_undefined'] = "Indefinido"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Fecha'; | $lang['general_word_date'] = 'Fecha'; | ||||||
| $lang['general_word_startdate'] = "Fecha de inicio"; | $lang['general_word_startdate'] = "Fecha de inicio"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# de QSOs logradas"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "Todas"; | $lang['statistics_distances_bands_all'] = "Todas"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "Todas"; | ||||||
| $lang['statistics_distances_worked'] = "Distancias Logradas"; | $lang['statistics_distances_worked'] = "Distancias Logradas"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contactos fueron dibujados.<br /> Su contacto más lejano fue con"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contactos fueron dibujados.<br /> Su contacto más lejano fue con"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "en gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "en gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "La distanc | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "La distancia promedio es"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "La distancia promedio es"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Número de QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Número de QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Indicativo(s) trabajados (se muestran máximo 5)"; | $lang['statistics_distances_callsigns_worked'] = "Indicativo(s) trabajados (se muestran máximo 5)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs con"; | $lang['statistics_distances_qsos_with'] = "QSOs con distancia : "; | ||||||
| $lang['statistics_distances_and_band'] = "y banda"; | $lang['statistics_distances_and_band'] = ", banda ; "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", modo : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", potencia : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -17,6 +17,8 @@ $lang['general_word_next'] = 'Next'; | ||||||
| $lang['general_word_previous'] = 'Previous'; | $lang['general_word_previous'] = 'Previous'; | ||||||
| $lang['general_word_not_display'] = "Not display"; | $lang['general_word_not_display'] = "Not display"; | ||||||
| $lang['general_word_icon'] = "Icon"; | $lang['general_word_icon'] = "Icon"; | ||||||
|  | $lang['general_word_never'] = "Never"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_cancel'] = "Cancel"; | $lang['general_word_cancel'] = "Cancel"; | ||||||
| $lang['general_word_ok'] = "OK"; | $lang['general_word_ok'] = "OK"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "# of QSO's worked"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "All"; | $lang['statistics_distances_bands_all'] = "All"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "All"; | ||||||
| $lang['statistics_distances_worked'] = "Distances Worked"; | $lang['statistics_distances_worked'] = "Distances Worked"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distan | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | $lang['statistics_distances_number_of_qsos'] = "Number of QSOs"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | $lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSOs with"; | $lang['statistics_distances_qsos_with'] = "QSOs with distance : "; | ||||||
| $lang['statistics_distances_and_band'] = "and band"; | $lang['statistics_distances_and_band'] = ", band : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", power : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['general_word_filtering_on'] = "Filtrele"; | ||||||
| $lang['general_word_not_display'] = "Gösterme"; | $lang['general_word_not_display'] = "Gösterme"; | ||||||
| $lang['general_word_icon'] = "Ikon"; | $lang['general_word_icon'] = "Ikon"; | ||||||
| $lang['general_word_never'] = "Asla"; | $lang['general_word_never'] = "Asla"; | ||||||
|  | $lang['general_word_undefined'] = "Undefined"; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_date'] = 'Tarih'; | $lang['general_word_date'] = 'Tarih'; | ||||||
| $lang['general_word_startdate'] = "Başlama Tarihi"; | $lang['general_word_startdate'] = "Başlama Tarihi"; | ||||||
|  |  | ||||||
|  | @ -26,6 +26,7 @@ $lang['statistics_number_of_qso_worked'] = "Çalışan QSO sayısı"; | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| $lang['statistics_distances_bands_all'] = "Tüm"; | $lang['statistics_distances_bands_all'] = "Tüm"; | ||||||
|  | $lang['statistics_distances_modes_all'] = "Tüm"; | ||||||
| $lang['statistics_distances_worked'] = "Çalışılan Mesafeler"; | $lang['statistics_distances_worked'] = "Çalışılan Mesafeler"; | ||||||
| $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "kişiler planlandı.<br /> En uzak bağlantınız şununlaydı"; | $lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "kişiler planlandı.<br /> En uzak bağlantınız şununlaydı"; | ||||||
| $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "gridsquare'de"; | $lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "gridsquare'de"; | ||||||
|  | @ -33,8 +34,10 @@ $lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "Mesafe şu | ||||||
| $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "Ortalama mesafe"; | $lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "Ortalama mesafe"; | ||||||
| $lang['statistics_distances_number_of_qsos'] = "QSO sayısı"; | $lang['statistics_distances_number_of_qsos'] = "QSO sayısı"; | ||||||
| $lang['statistics_distances_callsigns_worked'] = "Çağrı işaretleri çalıştı (en fazla 5 tane gösterildi)"; | $lang['statistics_distances_callsigns_worked'] = "Çağrı işaretleri çalıştı (en fazla 5 tane gösterildi)"; | ||||||
| $lang['statistics_distances_qsos_with'] = "QSO'lar ile"; | $lang['statistics_distances_qsos_with'] = "mesafeli QSO'lar ile"; | ||||||
| $lang['statistics_distances_and_band'] = "ve bant"; | $lang['statistics_distances_and_band'] = ", bant : "; | ||||||
|  | $lang['statistics_distances_and_mode'] = ", mode : "; | ||||||
|  | $lang['statistics_distances_and_power'] = ", gücü : "; | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
| * | * | ||||||
|  |  | ||||||
|  | @ -224,6 +224,28 @@ class Bands extends CI_Model { | ||||||
| 		return $results; | 		return $results; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  | 	function get_worked_powers() { | ||||||
|  | 		$CI =& get_instance(); | ||||||
|  | 		$CI->load->model('logbooks_model'); | ||||||
|  | 		$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); | ||||||
|  | 
 | ||||||
|  | 		if (!$logbooks_locations_array) { | ||||||
|  | 			return array(); | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		$location_list = "'".implode("','",$logbooks_locations_array)."'"; | ||||||
|  | 
 | ||||||
|  |         // get all worked powers from database
 | ||||||
|  |         $sql = "SELECT distinct col_tx_pwr FROM ".$this->config->item('table_name')." WHERE station_id in (" . $location_list . ") ORDER BY col_tx_pwr"; | ||||||
|  | 
 | ||||||
|  |         $data = $this->db->query($sql); | ||||||
|  | 
 | ||||||
|  |         $worked_powers = array(); | ||||||
|  |         foreach($data->result() as $row) array_push($worked_powers, $row->col_tx_pwr); | ||||||
|  | 
 | ||||||
|  |         return $worked_powers; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
| 	function activateall() { | 	function activateall() { | ||||||
|         $data = array( |         $data = array( | ||||||
|             'active' => '1', |             'active' => '1', | ||||||
|  |  | ||||||
|  | @ -37,6 +37,19 @@ class Distances_model extends CI_Model | ||||||
| 					$this->db->where('col_band', $postdata['band']); | 					$this->db->where('col_band', $postdata['band']); | ||||||
| 				} | 				} | ||||||
| 
 | 
 | ||||||
|  | 				if ($postdata['mode'] != 'all') { | ||||||
|  | 					$this->db->group_start()->where('col_mode', $postdata['mode'])->or_where('col_submode', $postdata['mode'])->group_end(); | ||||||
|  | 				} | ||||||
|  | 
 | ||||||
|  | 				if ($postdata['pwr'] != 'all') { | ||||||
|  | 					if ($postdata['pwr']) { | ||||||
|  | 						$this->db->where('col_tx_pwr', $postdata['pwr']); | ||||||
|  | 					} else { | ||||||
|  | 						$this->db->where('col_tx_pwr is NULL'); | ||||||
|  | 					} | ||||||
|  | 				} | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| 				$this->db->where('station_id', $station_id); | 				$this->db->where('station_id', $station_id); | ||||||
| 				$queryresult = $this->db->get($this->config->item('table_name')); | 				$queryresult = $this->db->get($this->config->item('table_name')); | ||||||
| 
 | 
 | ||||||
|  | @ -83,6 +96,7 @@ class Distances_model extends CI_Model | ||||||
| 				if(isset($result['qsodata'][$i]['callcount'])) { | 				if(isset($result['qsodata'][$i]['callcount'])) { | ||||||
| 					if ($result['qsodata'][$i]['callcount'] < 5 && $add['qsodata'][$i]['callcount'] > 0) { | 					if ($result['qsodata'][$i]['callcount'] < 5 && $add['qsodata'][$i]['callcount'] > 0) { | ||||||
| 						$calls = explode(',', $add['qsodata'][$i]['calls']); | 						$calls = explode(',', $add['qsodata'][$i]['calls']); | ||||||
|  | 						$calls = array_unique($calls); | ||||||
| 						foreach ($calls as $c) { | 						foreach ($calls as $c) { | ||||||
| 							if ($result['qsodata'][$i]['callcount'] < 5) { | 							if ($result['qsodata'][$i]['callcount'] < 5) { | ||||||
| 								if ($result['qsodata'][$i]['callcount'] > 0) { | 								if ($result['qsodata'][$i]['callcount'] > 0) { | ||||||
|  | @ -186,6 +200,7 @@ class Distances_model extends CI_Model | ||||||
| 				} | 				} | ||||||
| 				$dataarray[$arrayplacement]['count']++;                                 // Used for counting total qsos plotted
 | 				$dataarray[$arrayplacement]['count']++;                                 // Used for counting total qsos plotted
 | ||||||
| 				if ($dataarray[$arrayplacement]['callcount'] < 5) {                     // Used for tooltip in graph, set limit to 5 calls shown
 | 				if ($dataarray[$arrayplacement]['callcount'] < 5) {                     // Used for tooltip in graph, set limit to 5 calls shown
 | ||||||
|  | 					if (strpos($dataarray[$arrayplacement]['calls'], $qso['callsign']) === false) {   // Avoids duplicated callsigns
 | ||||||
| 						if ($dataarray[$arrayplacement]['callcount'] > 0) { | 						if ($dataarray[$arrayplacement]['callcount'] > 0) { | ||||||
| 							$dataarray[$arrayplacement]['calls'] .= ', '; | 							$dataarray[$arrayplacement]['calls'] .= ', '; | ||||||
| 						} | 						} | ||||||
|  | @ -193,6 +208,7 @@ class Distances_model extends CI_Model | ||||||
| 						$dataarray[$arrayplacement]['callcount']++; | 						$dataarray[$arrayplacement]['callcount']++; | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
|  | 			} | ||||||
| 
 | 
 | ||||||
| 			$qrb['Avg_distance'] = round($avg_distance, 1); | 			$qrb['Avg_distance'] = round($avg_distance, 1); | ||||||
| 
 | 
 | ||||||
|  | @ -223,7 +239,7 @@ class Distances_model extends CI_Model | ||||||
|     	/* |     	/* | ||||||
| 	 * Used to fetch QSOs from the logbook in the awards | 	 * Used to fetch QSOs from the logbook in the awards | ||||||
| 	 */ | 	 */ | ||||||
| 	public function qso_details($distance, $band, $sat){ | 	public function qso_details($distance, $band, $sat, $mode, $power){ | ||||||
| 		$distarray = $this->getdistparams($distance); | 		$distarray = $this->getdistparams($distance); | ||||||
| 		$CI =& get_instance(); | 		$CI =& get_instance(); | ||||||
| 		$CI->load->model('logbooks_model'); | 		$CI->load->model('logbooks_model'); | ||||||
|  | @ -238,8 +254,8 @@ class Distances_model extends CI_Model | ||||||
| 
 | 
 | ||||||
| 		$this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array); | 		$this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array); | ||||||
| 
 | 
 | ||||||
| 		if ($band != 'All') { | 		if ($band != 'all') { | ||||||
| 			if($band != "sat") { | 			if ($band != "sat") { | ||||||
| 				$this->db->where('COL_PROP_MODE !=', 'SAT'); | 				$this->db->where('COL_PROP_MODE !=', 'SAT'); | ||||||
| 				$this->db->where('COL_BAND', $band); | 				$this->db->where('COL_BAND', $band); | ||||||
| 			} else { | 			} else { | ||||||
|  | @ -249,6 +265,19 @@ class Distances_model extends CI_Model | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
|  | 
 | ||||||
|  | 		if ($mode != 'all') { | ||||||
|  | 			$this->db->group_start()->where('COL_MODE', $mode)->or_where('COL_SUBMODE', $mode)->group_end(); | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		if ($power != 'all') { | ||||||
|  | 			if ($power) { | ||||||
|  | 				$this->db->where('COL_TX_PWR', $power); | ||||||
|  | 			} else { | ||||||
|  | 				$this->db->where('COL_TX_PWR is NULL'); | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
| 		$this->db->order_by("COL_TIME_ON", "desc"); | 		$this->db->order_by("COL_TIME_ON", "desc"); | ||||||
| 
 | 
 | ||||||
| 		return $this->db->get($this->config->item('table_name')); | 		return $this->db->get($this->config->item('table_name')); | ||||||
|  |  | ||||||
|  | @ -17,7 +17,7 @@ | ||||||
|     </script> |     </script> | ||||||
|     <div id="distances_div"> |     <div id="distances_div"> | ||||||
|         <form class="d-flex align-items-center"> |         <form class="d-flex align-items-center"> | ||||||
|             <label class="my-1 me-2" for="distplot_bands"><?php echo lang('gen_band_selection'); ?></label>
 |             <label class="my-1 me-2" for="distplot_bands"><?php echo lang('gridsquares_band'); ?></label>
 | ||||||
|             <select class="form-select my-1 me-sm-2 w-auto"  id="distplot_bands"> |             <select class="form-select my-1 me-sm-2 w-auto"  id="distplot_bands"> | ||||||
|                 <option value="all"><?php echo lang('statistics_distances_bands_all')?></option>
 |                 <option value="all"><?php echo lang('statistics_distances_bands_all')?></option>
 | ||||||
|                 <?php if (count($sats_available) != 0) { ?>
 |                 <?php if (count($sats_available) != 0) { ?>
 | ||||||
|  | @ -30,7 +30,7 @@ | ||||||
|             <?php if (count($sats_available) != 0) { ?>
 |             <?php if (count($sats_available) != 0) { ?>
 | ||||||
|                 <label class="my-1 me-2" for="distplot_sats"><?php echo lang('general_word_satellite')?></label>
 |                 <label class="my-1 me-2" for="distplot_sats"><?php echo lang('general_word_satellite')?></label>
 | ||||||
|                 <select class="form-select my-1 me-sm-2 w-auto" disabled id="distplot_sats"> |                 <select class="form-select my-1 me-sm-2 w-auto" disabled id="distplot_sats"> | ||||||
|                     <option value="All"><?php echo lang('general_word_all')?></option>
 |                     <option value="All"><?php echo lang('statistics_distances_modes_all')?></option>
 | ||||||
|                     <?php foreach($sats_available as $sat) { |                     <?php foreach($sats_available as $sat) { | ||||||
|                         echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n"; |                         echo '<option value="' . $sat . '"' . '>' . $sat . '</option>'."\n"; | ||||||
|                     } ?>
 |                     } ?>
 | ||||||
|  | @ -38,6 +38,25 @@ | ||||||
|             <?php } else { ?>
 |             <?php } else { ?>
 | ||||||
|                 <input id="distplot_sats" type="hidden" value="All"></input> |                 <input id="distplot_sats" type="hidden" value="All"></input> | ||||||
|             <?php } ?>
 |             <?php } ?>
 | ||||||
|  | 			<label class="my-1 me-2" for="distplot_modes"><?php echo lang('gridsquares_mode'); ?></label>
 | ||||||
|  |             <select class="form-select my-1 me-sm-2 w-auto" id="distplot_modes"> | ||||||
|  | 			<option value="all"><?php echo lang('general_word_all')?></option>
 | ||||||
|  |                     <?php | ||||||
|  |                     foreach($modes as $mode) { | ||||||
|  |                         if ($mode->submode ?? '' == '') { | ||||||
|  |                             echo '<option value="' . $mode . '">' . strtoupper($mode) . '</option>'."\n"; | ||||||
|  |                         } | ||||||
|  |                     } | ||||||
|  |                     ?>
 | ||||||
|  |             </select> | ||||||
|  | 			<label class="my-1 me-2" for="distplot_powers"><?php echo lang('gen_hamradio_transmit_power'); ?></label>
 | ||||||
|  |             <select class="form-select my-1 me-sm-2 w-auto" id="distplot_powers"> | ||||||
|  | 			<option value="all"><?php echo lang('statistics_distances_bands_all')?></option>
 | ||||||
|  |                     <?php foreach($powers as $power) { | ||||||
|  |                         echo '<option value="' . $power . '">' . ($power ? $power : lang('general_word_undefined'))  . '</option>'."\n"; | ||||||
|  |                     } | ||||||
|  |                     ?>
 | ||||||
|  |             </select> | ||||||
|             <button id="plot" type="button" name="plot" class="btn btn-primary" onclick="distPlot(this.form)"><?php echo lang('filter_options_show')?></button>
 |             <button id="plot" type="button" name="plot" class="btn btn-primary" onclick="distPlot(this.form)"><?php echo lang('filter_options_show')?></button>
 | ||||||
|         </form> |         </form> | ||||||
|     </div> |     </div> | ||||||
|  |  | ||||||
|  | @ -33,7 +33,7 @@ function echo_table_col($row, $name) { | ||||||
| 		case 'WWFF':    echo '<td>' . ($row->COL_WWFF_REF) . '</td>'; break; | 		case 'WWFF':    echo '<td>' . ($row->COL_WWFF_REF) . '</td>'; break; | ||||||
| 		case 'POTA':    echo '<td>' . ($row->COL_POTA_REF) . '</td>'; break; | 		case 'POTA':    echo '<td>' . ($row->COL_POTA_REF) . '</td>'; break; | ||||||
| 		case 'Grid':    echo '<td>'; echoQrbCalcLink($row->station_gridsquare, $row->COL_VUCC_GRIDS, $row->COL_GRIDSQUARE); echo '</td>'; break; | 		case 'Grid':    echo '<td>'; echoQrbCalcLink($row->station_gridsquare, $row->COL_VUCC_GRIDS, $row->COL_GRIDSQUARE); echo '</td>'; break; | ||||||
| 		case 'Distance':echo '<td>' . ($row->COL_DISTANCE ? $row->COL_DISTANCE . ' km' : '') . '</td>'; break; | 		case 'Distance':echo '<td><span data-bs-toggle="tooltip" title="'.$row->COL_GRIDSQUARE.'">' . ($row->COL_DISTANCE ? $row->COL_DISTANCE . ' km' : '') . '</span></td>'; break; | ||||||
| 		case 'Band':    echo '<td>'; if($row->COL_SAT_NAME != null) { echo '<a href="https://db.satnogs.org/search/?q='.$row->COL_SAT_NAME.'" target="_blank"><span data-bs-toggle="tooltip" title="'.$row->COL_BAND.'">'.$row->COL_SAT_NAME.'</span></a></td>'; } else { if ($row->COL_FREQ != null) { echo ' <span data-bs-toggle="tooltip" title="'.$ci->frequency->hz_to_mhz($row->COL_FREQ).'">'. strtolower($row->COL_BAND).'</span>'; } else { echo strtolower($row->COL_BAND); } } echo '</td>'; break; | 		case 'Band':    echo '<td>'; if($row->COL_SAT_NAME != null) { echo '<a href="https://db.satnogs.org/search/?q='.$row->COL_SAT_NAME.'" target="_blank"><span data-bs-toggle="tooltip" title="'.$row->COL_BAND.'">'.$row->COL_SAT_NAME.'</span></a></td>'; } else { if ($row->COL_FREQ != null) { echo ' <span data-bs-toggle="tooltip" title="'.$ci->frequency->hz_to_mhz($row->COL_FREQ).'">'. strtolower($row->COL_BAND).'</span>'; } else { echo strtolower($row->COL_BAND); } } echo '</td>'; break; | ||||||
| 		case 'Frequency':    echo '<td>'; if($row->COL_SAT_NAME != null) { echo '<a href="https://db.satnogs.org/search/?q='.$row->COL_SAT_NAME.'" target="_blank">'; if ($row->COL_FREQ != null) { echo ' <span data-bs-toggle="tooltip" title="'.$ci->frequency->hz_to_mhz($row->COL_FREQ).'">'.$row->COL_SAT_NAME.'</span>'; } else { echo $row->COL_SAT_NAME; } echo '</a></td>'; } else { if ($row->COL_FREQ != null) { echo ' <span data-bs-toggle="tooltip" title="'.$row->COL_BAND.'">'.$ci->frequency->hz_to_mhz($row->COL_FREQ).'</span>'; } else { echo strtolower($row->COL_BAND); } } echo '</td>'; break; | 		case 'Frequency':    echo '<td>'; if($row->COL_SAT_NAME != null) { echo '<a href="https://db.satnogs.org/search/?q='.$row->COL_SAT_NAME.'" target="_blank">'; if ($row->COL_FREQ != null) { echo ' <span data-bs-toggle="tooltip" title="'.$ci->frequency->hz_to_mhz($row->COL_FREQ).'">'.$row->COL_SAT_NAME.'</span>'; } else { echo $row->COL_SAT_NAME; } echo '</a></td>'; } else { if ($row->COL_FREQ != null) { echo ' <span data-bs-toggle="tooltip" title="'.$row->COL_BAND.'">'.$ci->frequency->hz_to_mhz($row->COL_FREQ).'</span>'; } else { echo strtolower($row->COL_BAND); } } echo '</td>'; break; | ||||||
| 		case 'State':   echo '<td>' . ($row->COL_STATE) . '</td>'; break; | 		case 'State':   echo '<td>' . ($row->COL_STATE) . '</td>'; break; | ||||||
|  |  | ||||||
|  | @ -14,7 +14,9 @@ function distPlot(form) { | ||||||
| 		url: base_url+'index.php/distances/get_distances', | 		url: base_url+'index.php/distances/get_distances', | ||||||
| 		type: 'post', | 		type: 'post', | ||||||
| 		data: {'band': form.distplot_bands.value, | 		data: {'band': form.distplot_bands.value, | ||||||
| 			'sat': form.distplot_sats.value}, | 			'sat': form.distplot_sats.value, | ||||||
|  | 			'mode': form.distplot_modes.value, | ||||||
|  | 			'pwr': form.distplot_powers.value}, | ||||||
| 		success: function(tmp) { | 		success: function(tmp) { | ||||||
| 			if (tmp.ok == 'OK') { | 			if (tmp.ok == 'OK') { | ||||||
| 				if (!($('#information').length > 0)) | 				if (!($('#information').length > 0)) | ||||||
|  | @ -142,6 +144,8 @@ function getDistanceQsos(distance) { | ||||||
| 			'distance': distance, | 			'distance': distance, | ||||||
| 			'band': $("#distplot_bands").val(), | 			'band': $("#distplot_bands").val(), | ||||||
| 			'sat' : $("#distplot_sats").val(), | 			'sat' : $("#distplot_sats").val(), | ||||||
|  | 			'mode': $("#distplot_modes").val(), | ||||||
|  | 			'pwr': $("#distplot_powers").val(), | ||||||
| 		}, | 		}, | ||||||
| 		success: function (html) { | 		success: function (html) { | ||||||
| 			BootstrapDialog.show({ | 			BootstrapDialog.show({ | ||||||
|  |  | ||||||
		正在加载…
	
		在新工单中引用