75 行
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			75 行
		
	
	
	
		
			3.5 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:";
 | |
| $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!";
 | |
| 
 | |
| 
 |