2023-10-19 11:53:42 +00:00
|
|
|
<?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!";
|
|
|
|
|
|
|
|
|
2023-10-23 21:07:28 +00:00
|
|
|
/*
|
|
|
|
___________________________________________________________________________________________
|
|
|
|
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
|
|
|
|
___________________________________________________________________________________________
|
|
|
|
*/
|
2023-10-19 11:53:42 +00:00
|
|
|
|
2023-10-23 21:07:28 +00:00
|
|
|
$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!";
|
2023-10-19 11:53:42 +00:00
|
|
|
|