47 行
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 行
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| defined('BASEPATH') OR exit('No direct script access allowed');
 | |
| 
 | |
| /*
 | |
| ___________________________________________________________________________________________
 | |
| KML Export
 | |
| ___________________________________________________________________________________________
 | |
| */
 | |
| 
 | |
| $lang['export_kml_header'] = "KML Export";
 | |
| $lang['export_kml_description'] = "Export your logbook to a KML file for use in Google Earth.";
 | |
| $lang['export_kml_grisquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
 | |
| 
 | |
| 
 | |
| /*
 | |
| ___________________________________________________________________________________________
 | |
| DX Atlas Export
 | |
| ___________________________________________________________________________________________
 | |
| */
 | |
| 
 | |
| $lang['export_dxatlas_header'] = "DX Atlas Export";
 | |
| $lang['export_dxatlas_description'] = "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares.";
 | |
| $lang['export_dxatlas_gridsquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
 | |
| 
 | |
| 
 | |
| /*
 | |
| ___________________________________________________________________________________________
 | |
| SOTA Export
 | |
| ___________________________________________________________________________________________
 | |
| */
 | |
| 
 | |
| $lang['export_sota_header'] = "SOTA CSV Export";
 | |
| $lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
 | |
| $lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
 | |
| 
 | |
| /*
 | |
| ___________________________________________________________________________________________
 | |
| Cabrillo Export
 | |
| ___________________________________________________________________________________________
 | |
| */
 | |
| 
 | |
| $lang['export_cabrillo_header'] = "Cabrillo Export";
 | |
| $lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
 | |
| $lang['export_cabrillo_select_station'] = "Select Station Location:";
 | |
| 
 | |
| 
 |