diff --git a/application/config/autoload.php b/application/config/autoload.php index 693e6b06..186fe94c 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -110,6 +110,7 @@ $autoload['language'] = array( 'options', 'qslcard', 'qso', + 'station', 'statistics' ); diff --git a/application/controllers/Station.php b/application/controllers/Station.php index caae6bd0..f4e1d912 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -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'); } diff --git a/application/language/bulgarian/account_lang.php b/application/language/bulgarian/account_lang.php index 13f5901b..c6cf047a 100644 --- a/application/language/bulgarian/account_lang.php +++ b/application/language/bulgarian/account_lang.php @@ -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).'; diff --git a/application/language/bulgarian/station_lang.php b/application/language/bulgarian/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/bulgarian/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/chinese_simplified/account_lang.php b/application/language/chinese_simplified/account_lang.php index 5f677f48..93de5fee 100644 --- a/application/language/chinese_simplified/account_lang.php +++ b/application/language/chinese_simplified/account_lang.php @@ -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).'; diff --git a/application/language/chinese_simplified/station_lang.php b/application/language/chinese_simplified/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/chinese_simplified/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/czech/account_lang.php b/application/language/czech/account_lang.php index 8462818d..949d2080 100644 --- a/application/language/czech/account_lang.php +++ b/application/language/czech/account_lang.php @@ -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).'; diff --git a/application/language/czech/station_lang.php b/application/language/czech/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/czech/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/dutch/account_lang.php b/application/language/dutch/account_lang.php index 74e4e06f..3e69e404 100644 --- a/application/language/dutch/account_lang.php +++ b/application/language/dutch/account_lang.php @@ -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).'; diff --git a/application/language/dutch/station_lang.php b/application/language/dutch/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/dutch/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/english/account_lang.php b/application/language/english/account_lang.php index 982ceabe..42fac1b1 100644 --- a/application/language/english/account_lang.php +++ b/application/language/english/account_lang.php @@ -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).'; diff --git a/application/language/english/station_lang.php b/application/language/english/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/english/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/finnish/account_lang.php b/application/language/finnish/account_lang.php index 0ad1ee3c..fd39dc30 100644 --- a/application/language/finnish/account_lang.php +++ b/application/language/finnish/account_lang.php @@ -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).'; diff --git a/application/language/finnish/station_lang.php b/application/language/finnish/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/finnish/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/french/account_lang.php b/application/language/french/account_lang.php index dea96fde..c01c9e7f 100644 --- a/application/language/french/account_lang.php +++ b/application/language/french/account_lang.php @@ -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).'; diff --git a/application/language/french/station_lang.php b/application/language/french/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/french/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/german/account_lang.php b/application/language/german/account_lang.php index 45370036..cf72c87d 100644 --- a/application/language/german/account_lang.php +++ b/application/language/german/account_lang.php @@ -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).'; diff --git a/application/language/german/station_lang.php b/application/language/german/station_lang.php new file mode 100644 index 00000000..9561e1db --- /dev/null +++ b/application/language/german/station_lang.php @@ -0,0 +1,39 @@ + 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).'; diff --git a/application/language/greek/account_lang.php b/application/language/greek/account_lang.php index d6eb83ac..0d653445 100644 --- a/application/language/greek/account_lang.php +++ b/application/language/greek/account_lang.php @@ -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).'; diff --git a/application/language/greek/station_lang.php b/application/language/greek/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/greek/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/italian/account_lang.php b/application/language/italian/account_lang.php index df7fb5b0..6e33c589 100644 --- a/application/language/italian/account_lang.php +++ b/application/language/italian/account_lang.php @@ -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).'; diff --git a/application/language/italian/station_lang.php b/application/language/italian/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/italian/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/polish/account_lang.php b/application/language/polish/account_lang.php index bc1a867f..72884178 100644 --- a/application/language/polish/account_lang.php +++ b/application/language/polish/account_lang.php @@ -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).'; diff --git a/application/language/polish/station_lang.php b/application/language/polish/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/polish/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/russian/account_lang.php b/application/language/russian/account_lang.php index 40b9a4f6..7895ac1f 100644 --- a/application/language/russian/account_lang.php +++ b/application/language/russian/account_lang.php @@ -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).'; diff --git a/application/language/russian/station_lang.php b/application/language/russian/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/russian/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/spanish/account_lang.php b/application/language/spanish/account_lang.php index ff166c62..88edcc85 100644 --- a/application/language/spanish/account_lang.php +++ b/application/language/spanish/account_lang.php @@ -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).'; diff --git a/application/language/spanish/station_lang.php b/application/language/spanish/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/spanish/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/swedish/account_lang.php b/application/language/swedish/account_lang.php index 8a8909f9..54561105 100644 --- a/application/language/swedish/account_lang.php +++ b/application/language/swedish/account_lang.php @@ -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).'; diff --git a/application/language/swedish/station_lang.php b/application/language/swedish/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/swedish/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/language/turkish/account_lang.php b/application/language/turkish/account_lang.php index 33943c6e..98300af5 100644 --- a/application/language/turkish/account_lang.php +++ b/application/language/turkish/account_lang.php @@ -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).'; diff --git a/application/language/turkish/station_lang.php b/application/language/turkish/station_lang.php new file mode 100644 index 00000000..9edc4dce --- /dev/null +++ b/application/language/turkish/station_lang.php @@ -0,0 +1,39 @@ +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).'; \ No newline at end of file diff --git a/application/views/station_profile/edit.php b/application/views/station_profile/edit.php index bbaaa328..0b7977ed 100644 --- a/application/views/station_profile/edit.php +++ b/application/views/station_profile/edit.php @@ -37,21 +37,21 @@
- + station_profile_name; } ?>" required> - +
- + station_callsign; } ?>" required> - +
- + station_power; } ?>"> - +
@@ -66,7 +66,7 @@
- + num_rows() > 0) { ?> - +
- + station_city; } ?>"> - +
- + - +
- + - +
- + station_cnty; } ?>"> - +
diff --git a/application/views/station_profile/index.php b/application/views/station_profile/index.php index 26708a97..ba4803e2 100644 --- a/application/views/station_profile/index.php +++ b/application/views/station_profile/index.php @@ -12,25 +12,25 @@
-

-

-

+

+

+

-

+

num_rows() > 0) { ?> = 1) && ($is_admin)) { ?> @@ -38,14 +38,14 @@ - - + + - + @@ -60,9 +60,9 @@ @@ -79,11 +79,11 @@ station_id; ?>" title= class="btn btn-outline-primary btn-sm"> + station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');">
station_gridsquare;?> station_active != 1) { ?> - station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm(' station_profile_name; ?>');"> + station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm(' station_profile_name; ?>');"> - +
@@ -71,7 +71,7 @@
user_id == "") { ?> - station_id; ?>" class="btn btn-outline-primary btn-sm"> + station_id; ?>" class="btn btn-outline-primary btn-sm"> station_id; ?>" title= class="btn btn-outline-primary btn-sm"> - station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');"> station_active != 1) { ?> - station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm(' station_profile_name; ?> ');"> + station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm(' station_profile_name; ?> ');">