Created dedicated station_lang.php

pull/2564/head
HB9HIL 2023-10-12 20:21:05 +02:00
rodzic a71c62a6fb
commit 259738fca7
34 zmienionych plików z 622 dodań i 546 usunięć

Wyświetl plik

@ -110,6 +110,7 @@ $autoload['language'] = array(
'options',
'qslcard',
'qso',
'station',
'statistics'
);

Wyświetl plik

@ -28,7 +28,7 @@ class Station extends CI_Controller {
$data['is_there_qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id();
// Render Page
$data['page_title'] = lang('account_stationlocation');
$data['page_title'] = lang('station_location');
$this->load->view('interface_assets/header', $data);
$this->load->view('station_profile/index');
$this->load->view('interface_assets/footer');
@ -48,7 +48,7 @@ class Station extends CI_Controller {
if ($this->form_validation->run() == FALSE)
{
$data['page_title'] = lang('account_stationlocation_create_header');
$data['page_title'] = lang('station_location_create_header');
$this->load->view('interface_assets/header', $data);
$this->load->view('station_profile/create');
$this->load->view('interface_assets/footer');
@ -65,7 +65,7 @@ class Station extends CI_Controller {
$this->load->model('stations');
if ($this->stations->check_station_is_accessible($id)) {
$data = $this->load_station_for_editing($id);
$data['page_title'] = lang('account_stationlocation_edit') . $data['my_station_profile']->station_profile_name;
$data['page_title'] = lang('station_location_edit') . $data['my_station_profile']->station_profile_name;
if ($this->form_validation->run() == FALSE) {
$this->load->view('interface_assets/header', $data);
@ -74,7 +74,7 @@ class Station extends CI_Controller {
} else {
$this->stations->edit();
$data['notice'] = lang('account_stationlocation') . $this->security->xss_clean($this->input->post('station_profile_name', true)) . " Updated";
$data['notice'] = lang('station_location') . $this->security->xss_clean($this->input->post('station_profile_name', true)) . " Updated";
redirect('station');
}

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = '网格地图设置';
$lang['account_gridmap_default_band'] = '默认波段';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Nastavení pro Mapu lokátorů';
$lang['account_gridmap_default_band'] = 'Výchozí pásma';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Gridsquare -kartan asetukset';
$lang['account_gridmap_default_band'] = 'Oletusbandi';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Einstellung der Planquadratkarte';
$lang['account_gridmap_default_band'] = 'Standardband';
$lang['account_qsl_settings'] = 'QSL-Methoden, die in der Planquadratkarte und beim anlegen eines QSOs angezeigt werden';
// Station Location
$lang['account_stationlocation'] = 'Stationsstandort';
$lang['account_stationlocation_header_ln1'] = 'Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein Zuhause, Bei Freunden oder Unterwegs';
$lang['account_stationlocation_header_ln2'] = 'Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO voneinander ab.';
$lang['account_stationlocation_header_ln3'] = 'Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist siehst du in der Liste an dem "Aktive Station" Symbol';
$lang['account_stationlocation_create_header'] = 'Erstellung Stationsstandort';
$lang['account_stationlocation_create'] = 'Erstelle einen neuen Stationsstandort';
$lang['account_stationlocation_edit'] = 'Bearbeite Stationsstandort: ';
$lang['account_stationlocation_updated_suff'] = ' aktualisiert.'; // nur letztes Wort im Satz "XYZ wurde aktualisiert"
$lang['account_stationlocation_warning'] = 'Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu Rufzeichen -> Stationsstandorte um einen zu aktivieren.';
$lang['account_stationlocation_reassign_at'] = 'Bitte mache die Zuordnung in ';
$lang['account_stationlocation_warning_reassign'] = 'Aufgrund von Änderungen in Cloudlog musst du QSOs wieder einem Stationsstandort zuordnen.';
$lang['account_stationlocation_name'] = 'Station Name';
$lang['account_stationlocation_name_hint'] = 'Kurzname für den Stationsstandort. Zum Beispiel: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Rufzeichen';
$lang['account_stationlocation_callsign_hint'] = 'Station Rufzeichen. Zum Beispiel: HB9HIL/P';
$lang['account_stationlocation_power'] = 'Station Sendeleistung (W)';
$lang['account_stationlocation_power_hint'] = 'Standardmässig eingestellte Sendeleistung in Watt. Wird von CAT-Daten überschrieben.';
$lang['account_stationlocation_emptylog'] = 'Lösche Log';
$lang['account_stationlocation_confirm_active'] = 'Bist du sicher, dass du den folgenden Stationsstandort zum aktiven Standort machen möchtest?: ';
$lang['account_stationlocation_set_active'] = 'Aktiviere';
$lang['account_stationlocation_active'] = 'Aktive Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Bist du sicher, dass du alle QSO an diesem Stationsstandort löschen möchtest?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Bist du sicher, dass du diesen Stationsstandort löschen willst?:';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'Es werden alle QSO an diesem Stationsstandort gelöscht!';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC Einteilung. Zum Beispiel: Germany';
$lang['account_stationlocation_city'] = 'Station Stadt';
$lang['account_stationlocation_city_hint'] = 'Station Stadt. Zum Beispiel: Berlin';
$lang['account_stationlocation_state'] = 'Station Staat';
$lang['account_stationlocation_state_hint'] = 'Station Staat. Nur verfügbar für einige Länder. Leer lassen falls nicht verfügbar.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Nur für USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Stationsstandort';
$lang['station_location_header_ln1'] = 'Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein Zuhause, Bei Freunden oder Unterwegs';
$lang['station_location_header_ln2'] = 'Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO voneinander ab.';
$lang['station_location_header_ln3'] = 'Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist siehst du in der Liste an dem "Aktive Station" Symbol';
$lang['station_location_create_header'] = 'Erstellung Stationsstandort';
$lang['station_location_create'] = 'Erstelle einen neuen Stationsstandort';
$lang['station_location_edit'] = 'Bearbeite Stationsstandort: ';
$lang['station_location_updated_suff'] = ' aktualisiert.'; // nur letztes Wort im Satz "XYZ wurde aktualisiert"
$lang['station_location_warning'] = 'Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu Rufzeichen -> Stationsstandorte um einen zu aktivieren.';
$lang['station_location_reassign_at'] = 'Bitte mache die Zuordnung in ';
$lang['station_location_warning_reassign'] = 'Aufgrund von Änderungen in Cloudlog musst du QSOs wieder einem Stationsstandort zuordnen.';
$lang['station_location_name'] = 'Station Name';
$lang['station_location_name_hint'] = 'Kurzname für den Stationsstandort. Zum Beispiel: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Rufzeichen';
$lang['station_location_callsign_hint'] = 'Station Rufzeichen. Zum Beispiel: HB9HIL/P';
$lang['station_location_power'] = 'Station Sendeleistung (W)';
$lang['station_location_power_hint'] = 'Standardmässig eingestellte Sendeleistung in Watt. Wird von CAT-Daten überschrieben.';
$lang['station_location_emptylog'] = 'Lösche Log';
$lang['station_location_confirm_active'] = 'Bist du sicher, dass du den folgenden Stationsstandort zum aktiven Standort machen möchtest?: ';
$lang['station_location_set_active'] = 'Aktiviere';
$lang['station_location_active'] = 'Aktive Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Bist du sicher, dass du alle QSO an diesem Stationsstandort löschen möchtest?';
$lang['station_location_confirm_del_stationlocation'] = 'Bist du sicher, dass du diesen Stationsstandort löschen willst?:';
$lang['station_location_confirm_del_stationlocation_qso'] = 'Es werden alle QSO an diesem Stationsstandort gelöscht!';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC Einteilung. Zum Beispiel: Germany';
$lang['station_location_city'] = 'Station Stadt';
$lang['station_location_city_hint'] = 'Station Stadt. Zum Beispiel: Berlin';
$lang['station_location_state'] = 'Station Staat';
$lang['station_location_state_hint'] = 'Station Staat. Nur verfügbar für einige Länder. Leer lassen falls nicht verfügbar.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Nur für USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Настройки для карты ква
$lang['account_gridmap_default_band'] = 'Диапазон по умолчанию';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -19,7 +19,7 @@ $lang['account_password'] = 'Lösenord';
$lang['account_roles'] = 'Roller';
$lang['account_user_role'] = 'Användarroll';
$lang['account_word_admin'] = 'Admin';
$lang['account_word_admin'] = 'Admin';
$lang['account_theme'] = 'Tema';
$lang['account_stylesheet'] = 'Stilmall';
@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Inställningar för Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Standard Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -100,38 +100,4 @@ $lang['account_gridmap_settings'] = 'Settings for Gridsquare Map';
$lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Method shown in views (Gridsquare and Add-QSO)';
// Station Location
$lang['account_stationlocation'] = 'Station Location';
$lang['account_stationlocation_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['account_stationlocation_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['account_stationlocation_create_header'] = 'Create Station Location';
$lang['account_stationlocation_create'] = 'Create a Station Location';
$lang['account_stationlocation_edit'] = 'Edit Station Location: ';
$lang['account_stationlocation_updated_suff'] = ' Updated.';
$lang['account_stationlocation_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['account_stationlocation_reassign_at'] = 'Please reassign them at ';
$lang['account_stationlocation_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['account_stationlocation_name'] = 'Profile Name';
$lang['account_stationlocation_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['account_stationlocation_callsign'] = 'Station Callsign';
$lang['account_stationlocation_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['account_stationlocation_power'] = 'Station Power (W)';
$lang['account_stationlocation_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
$lang['account_stationlocation_emptylog'] = 'Empty Log';
$lang['account_stationlocation_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['account_stationlocation_set_active'] = 'Set Active';
$lang['account_stationlocation_active'] = 'Active Station';
$lang['account_stationlocation_claim_ownership'] = 'Claim Ownership';
$lang['account_stationlocation_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['account_stationlocation_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['account_stationlocation_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['account_stationlocation_dxcc'] = 'Station DXCC';
$lang['account_stationlocation_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['account_stationlocation_city'] = 'Station City';
$lang['account_stationlocation_city_hint'] = 'Station city. For example: Inverness';
$lang['account_stationlocation_state'] = 'Station State';
$lang['account_stationlocation_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['account_stationlocation_county'] = 'Station County';
$lang['account_stationlocation_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -0,0 +1,39 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// Station Location
$lang['station_location'] = 'Station Location';
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
$lang['station_location_create_header'] = 'Create Station Location';
$lang['station_location_create'] = 'Create a Station Location';
$lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = ' Updated.';
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
$lang['station_location_reassign_at'] = 'Please reassign them at ';
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
$lang['station_location_name'] = 'Profile Name';
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_power'] = 'Station Power (W)';
$lang['station_location_power_hint'] = 'Desfault station power in Watt. Overwritten by CAT.';
$lang['station_location_emptylog'] = 'Empty Log';
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
$lang['station_location_set_active'] = 'Set Active';
$lang['station_location_active'] = 'Active Station';
$lang['station_location_claim_ownership'] = 'Claim Ownership';
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
$lang['station_location_dxcc'] = 'Station DXCC';
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
$lang['station_location_city'] = 'Station City';
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
$lang['station_location_state'] = 'Station State';
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';

Wyświetl plik

@ -37,21 +37,21 @@
<div class="card-body">
<div class="form-group">
<label for="stationNameInput"><?php echo lang("account_stationlocation_name"); ?></label>
<label for="stationNameInput"><?php echo lang("station_location_name"); ?></label>
<input type="text" class="form-control" name="station_profile_name" id="stationNameInput" aria-describedby="stationNameInputHelp" value="<?php if(set_value('station_profile_name') != "") { echo set_value('station_profile_name'); } else { echo $my_station_profile->station_profile_name; } ?>" required>
<small id="stationNameInputHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_name_hint"); ?></small>
<small id="stationNameInputHelp" class="form-text text-muted"><?php echo lang("station_location_name_hint"); ?></small>
</div>
<div class="form-group">
<label for="stationCallsignInput"><?php echo lang("account_stationlocation_callsign"); ?></label>
<label for="stationCallsignInput"><?php echo lang("station_location_callsign"); ?></label>
<input type="text" class="form-control" name="station_callsign" id="stationCallsignInput" aria-describedby="stationCallsignInputHelp" value="<?php if(set_value('station_callsign') != "") { echo set_value('station_callsign'); } else { echo $my_station_profile->station_callsign; } ?>" required>
<small id="stationCallsignInputHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_callsign_hint"); ?></small>
<small id="stationCallsignInputHelp" class="form-text text-muted"><?php echo lang("station_location_callsign_hint"); ?></small>
</div>
<div class="form-group">
<label for="stationPowerInput"><?php echo lang("account_stationlocation_power"); ?></label>
<label for="stationPowerInput"><?php echo lang("station_location_power"); ?></label>
<input type="number" class="form-control" name="station_power" step="1" id="stationPowerInput" aria-describedby="stationPowerInputHelp" value="<?php if(set_value('station_power') != "") { echo set_value('station_power'); } else { echo $my_station_profile->station_power; } ?>">
<small id="stationPowerInputHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_power_hint"); ?></small>
<small id="stationPowerInputHelp" class="form-text text-muted"><?php echo lang("station_location_power_hint"); ?></small>
</div>
</div>
</div>
@ -66,7 +66,7 @@
<div class="card-body">
<!-- DXCC -->
<div class="form-group">
<label for="stationDXCCInput"><?php echo lang("account_stationlocation_dxcc"); ?></label>
<label for="stationDXCCInput"><?php echo lang("station_location_dxcc"); ?></label>
<?php if ($dxcc_list->num_rows() > 0) { ?>
<select class="form-control" id="dxcc_select" name="dxcc" aria-describedby="stationCallsignInputHelp">
<option value="0" <?php if($my_station_profile->station_dxcc == "0") { ?>selected<?php } ?>>- NONE -</option>
@ -76,19 +76,19 @@
<?php } ?>
</select>
<?php } ?>
<small id="stationDXCCInputHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_dxcc_hint"); ?></small>
<small id="stationDXCCInputHelp" class="form-text text-muted"><?php echo lang("station_location_dxcc_hint"); ?></small>
</div>
<!-- City -->
<div class="form-group">
<label for="stationCityInput"><?php echo lang("account_stationlocation_city"); ?></label>
<label for="stationCityInput"><?php echo lang("station_location_city"); ?></label>
<input type="text" class="form-control" name="city" id="stationCityInput" aria-describedby="stationCityInputHelp" value="<?php if(set_value('city') != "") { echo set_value('city'); } else { echo $my_station_profile->station_city; } ?>">
<small id="stationCityInputHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_city_hint"); ?></small>
<small id="stationCityInputHelp" class="form-text text-muted"><?php echo lang("station_location_city_hint"); ?></small>
</div>
<!-- US State -->
<div class="form-group" id="us_state">
<label for="stateInput"><?php echo lang("account_stationlocation_state"); ?></label>
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
<select class="form-control custom-select" name="station_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
<option value=""></option>
<option value="AK" <?php if($my_station_profile->state == "AK") { echo "selected"; } ?>>Alaska</option>
@ -143,12 +143,12 @@
<option value="WV" <?php if($my_station_profile->state == "WV") { echo "selected"; } ?>>West Virginia</option>
<option value="WY" <?php if($my_station_profile->state == "WY") { echo "selected"; } ?>>Wyoming</option>
</select>
<small id="StateHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_state_hint"); ?></small>
<small id="StateHelp" class="form-text text-muted"><?php echo lang("station_location_state_hint"); ?></small>
</div>
<!-- Canada State -->
<div class="form-group" id="canada_state">
<label for="stateInput"><?php echo lang("account_stationlocation_state"); ?></label>
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
<select class="form-control custom-select" name="station_ca_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
<option value=""></option>
<option value="AB" <?php if($my_station_profile->state == "AB") { echo "selected"; } ?>>Alberta</option>
@ -165,14 +165,14 @@
<option value="SK" <?php if($my_station_profile->state == "SK") { echo "selected"; } ?>>Saskatchewan</option>
<option value="YT" <?php if($my_station_profile->state == "YT") { echo "selected"; } ?>>Yukon</option>
</select>
<small id="StateHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_state_hint"); ?></small>
<small id="StateHelp" class="form-text text-muted"><?php echo lang("station_location_state_hint"); ?></small>
</div>
<!-- US County -->
<div class="form-group">
<label for="stationCntyInput"><?php echo lang("account_stationlocation_county"); ?></label>
<label for="stationCntyInput"><?php echo lang("station_location_county"); ?></label>
<input disabled="disabled" type="text" class="form-control" name="station_cnty" id="stationCntyInput" aria-describedby="stationCntyInputHelp" value="<?php if(set_value('station_cnty') != "") { echo set_value('station_cnty'); } else { echo $my_station_profile->station_cnty; } ?>">
<small id="stationCntyInputHelp" class="form-text text-muted"><?php echo lang("account_stationlocation_county_hint"); ?></small>
<small id="stationCntyInputHelp" class="form-text text-muted"><?php echo lang("station_location_county_hint"); ?></small>
</div>
</div>
</div>

Wyświetl plik

@ -12,25 +12,25 @@
<div class="card">
<div class="card-body">
<p class="card-text"><?php echo lang('account_stationlocation_header_ln1'); ?></p>
<p class="card-text"><?php echo lang('account_stationlocation_header_ln2'); ?></p>
<p class="card-text"><?php echo lang('account_stationlocation_header_ln3'); ?></p>
<p class="card-text"><?php echo lang('station_location_header_ln1'); ?></p>
<p class="card-text"><?php echo lang('station_location_header_ln2'); ?></p>
<p class="card-text"><?php echo lang('station_location_header_ln3'); ?></p>
<p><a href="<?php echo site_url('station/create'); ?>" class="btn btn-primary"><i class="fas fa-plus"></i> <?php echo lang('account_stationlocation_create'); ?></a></p>
<p><a href="<?php echo site_url('station/create'); ?>" class="btn btn-primary"><i class="fas fa-plus"></i> <?php echo lang('station_location_create'); ?></a></p>
<?php if ($stations->num_rows() > 0) { ?>
<?php if($current_active == 0) { ?>
<div class="alert alert-danger" role="alert">
<?php echo lang('account_stationlocation_warning'); ?>
<?php echo lang('station_location_warning'); ?>
</div>
<?php } ?>
<?php if (($is_there_qsos_with_no_station_id >= 1) && ($is_admin)) { ?>
<div class="alert alert-danger" role="alert">
<span class="badge badge-pill badge-warning"><?php echo lang('general_word_warning'); ?></span> <?php echo lang('account_stationlocation_warning_reassign'); ?>
<span class="badge badge-pill badge-warning"><?php echo lang('general_word_warning'); ?></span> <?php echo lang('station_location_warning_reassign'); ?>
</br>
<?php echo lang('account_stationlocation_reassign_at'); ?> <a href="<?php echo site_url('maintenance/'); ?>" class="btn btn-warning"><i class="fas fa-sync"></i><?php echo lang('account_word_admin') . "/" . lang('general_word_maintenance'); ?></a>
<?php echo lang('station_location_reassign_at'); ?> <a href="<?php echo site_url('maintenance/'); ?>" class="btn btn-warning"><i class="fas fa-sync"></i><?php echo lang('account_word_admin') . "/" . lang('general_word_maintenance'); ?></a>
</div>
<?php } ?>
@ -38,14 +38,14 @@
<table id="station_locations_table" class="table table-sm table-striped">
<thead>
<tr>
<th scope="col"><?php echo lang('account_stationlocation_name'); ?></th>
<th scope="col"><?php echo lang('account_stationlocation_callsign'); ?></th>
<th scope="col"><?php echo lang('station_location_name'); ?></th>
<th scope="col"><?php echo lang('station_location_callsign'); ?></th>
<th scope="col"><?php echo lang('general_word_country'); ?></th>
<th scope="col"><?php echo lang('gen_hamradio_gridsquare'); ?></th>
<th></th>
<th scope="col"><?php echo lang('admin_edit'); ?></th>
<th scope="col"><?php echo lang('admin_copy'); ?></th>
<th scope="col"><?php echo lang('account_stationlocation_emptylog'); ?></th>
<th scope="col"><?php echo lang('station_location_emptylog'); ?></th>
<th scope="col"><?php echo lang('admin_delete'); ?></th>
</tr>
</thead>
@ -60,9 +60,9 @@
<td><?php echo $row->station_gridsquare;?></td>
<td style="text-align: center" data-order="<?php echo $row->station_id;?>">
<?php if($row->station_active != 1) { ?>
<a href="<?php echo site_url('station/set_active/').$current_active."/".$row->station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm('<?php echo lang('account_stationlocation_confirm_active'); ?> <?php echo $row->station_profile_name; ?>');"><?php echo lang('account_stationlocation_set_active'); ?></a>
<a href="<?php echo site_url('station/set_active/').$current_active."/".$row->station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm('<?php echo lang('station_location_confirm_active'); ?> <?php echo $row->station_profile_name; ?>');"><?php echo lang('station_location_set_active'); ?></a>
<?php } else { ?>
<span class="badge badge-success"><?php echo lang('account_stationlocation_active'); ?></span>
<span class="badge badge-success"><?php echo lang('station_location_active'); ?></span>
<?php } ?>
<br>
@ -71,7 +71,7 @@
</td>
<td>
<?php if($row->user_id == "") { ?>
<a href="<?php echo site_url('station/claim_user')."/".$row->station_id; ?>" class="btn btn-outline-primary btn-sm"><i class="fas fa-user-plus"></i> <?php echo lang('account_stationlocation_claim_ownership'); ?></a>
<a href="<?php echo site_url('station/claim_user')."/".$row->station_id; ?>" class="btn btn-outline-primary btn-sm"><i class="fas fa-user-plus"></i> <?php echo lang('station_location_claim_ownership'); ?></a>
<?php } ?>
<a href="<?php echo site_url('station/edit')."/".$row->station_id; ?>" title=<?php echo lang('admin_edit'); ?> class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i></a>
</td>
@ -79,11 +79,11 @@
<a href="<?php echo site_url('station/copy')."/".$row->station_id; ?>" title=<?php echo lang('admin_copy'); ?> class="btn btn-outline-primary btn-sm"><i class="fas fa-copy"></i></a>
</td>
<td>
<a href="<?php echo site_url('station/deletelog')."/".$row->station_id; ?>" class="btn btn-danger btn-sm" title=<?php echo lang('account_stationlocation_emptylog'); ?> onclick="return confirm('<?php echo lang('account_stationlocation_confirm_del_qso'); ?>');"><i class="fas fa-trash-alt"></i></a></td>
<a href="<?php echo site_url('station/deletelog')."/".$row->station_id; ?>" class="btn btn-danger btn-sm" title=<?php echo lang('station_location_emptylog'); ?> onclick="return confirm('<?php echo lang('station_location_confirm_del_qso'); ?>');"><i class="fas fa-trash-alt"></i></a></td>
</td>
<td>
<?php if($row->station_active != 1) { ?>
<a href="<?php echo site_url('station/delete')."/".$row->station_id; ?>" class="btn btn-danger btn-sm" title=<?php echo lang('admin_delete'); ?> onclick="return confirm('<?php echo lang('account_stationlocation_confirm_del_stationlocation'); ?> <?php echo $row->station_profile_name; ?> <?php echo lang('account_stationlocation_confirm_del_stationlocation_qso'); ?>');"><i class="fas fa-trash-alt"></i></a>
<a href="<?php echo site_url('station/delete')."/".$row->station_id; ?>" class="btn btn-danger btn-sm" title=<?php echo lang('admin_delete'); ?> onclick="return confirm('<?php echo lang('station_location_confirm_del_stationlocation'); ?> <?php echo $row->station_profile_name; ?> <?php echo lang('station_location_confirm_del_stationlocation_qso'); ?>');"><i class="fas fa-trash-alt"></i></a>
<?php } ?>
</td>
</tr>