diff --git a/application/controllers/Station.php b/application/controllers/Station.php index 983dc8d22..caae6bd02 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -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'] = "Edit Station Location: {$data['my_station_profile']->station_profile_name}"; + $data['page_title'] = lang('account_stationlocation_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'] = "Station Profile " . $this->security->xss_clean($this->input->post('station_profile_name', true)) . " Updated"; + $data['notice'] = lang('account_stationlocation') . $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 224421330..13f5901b4 100644 --- a/application/language/bulgarian/account_lang.php +++ b/application/language/bulgarian/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/bulgarian/admin_lang.php index 4a5d74254..74959c858 100644 --- a/application/language/bulgarian/admin_lang.php +++ b/application/language/bulgarian/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/bulgarian/general_words_lang.php b/application/language/bulgarian/general_words_lang.php index ab8bb3724..cda2e37ba 100644 --- a/application/language/bulgarian/general_words_lang.php +++ b/application/language/bulgarian/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Режим на сателита'; $lang['gen_hamradio_logbook'] = 'Дневник'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ зона'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operator'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Вие сте имали'; $lang['dashboard_qsos_today'] = 'QSO-та днес!'; diff --git a/application/language/chinese_simplified/account_lang.php b/application/language/chinese_simplified/account_lang.php index 86e6dc5ef..5f677f482 100644 --- a/application/language/chinese_simplified/account_lang.php +++ b/application/language/chinese_simplified/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/chinese_simplified/admin_lang.php index 23fc62452..66b2c7f9c 100644 --- a/application/language/chinese_simplified/admin_lang.php +++ b/application/language/chinese_simplified/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = '设置'; $lang['admin_create_user'] = '创建用户'; $lang['admin_delete'] = '删除用户'; $lang['admin_edit'] = '编辑用户'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/chinese_simplified/general_words_lang.php b/application/language/chinese_simplified/general_words_lang.php index 1df4cdc70..d092e0a6b 100644 --- a/application/language/chinese_simplified/general_words_lang.php +++ b/application/language/chinese_simplified/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = '卫星模式'; $lang['gen_hamradio_logbook'] = '日志簿'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ 分区'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC实体'; $lang['gen_hamradio_deleted_dxcc'] = '删除 DXCC实体'; $lang['gen_hamradio_continent'] = '大陆'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = '操作员'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig 属性'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = '今天你有'; $lang['dashboard_qsos_today'] = '个 QSO!'; diff --git a/application/language/czech/account_lang.php b/application/language/czech/account_lang.php index fde80702c..8462818df 100644 --- a/application/language/czech/account_lang.php +++ b/application/language/czech/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/czech/admin_lang.php index 3e5a985c8..c8999c96b 100644 --- a/application/language/czech/admin_lang.php +++ b/application/language/czech/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Možnosti'; $lang['admin_create_user'] = 'Vytvořit uživatele'; $lang['admin_delete'] = 'Smazat'; $lang['admin_edit'] = 'Upravit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/czech/general_words_lang.php b/application/language/czech/general_words_lang.php index 574d6932a..ae00af13e 100644 --- a/application/language/czech/general_words_lang.php +++ b/application/language/czech/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Režim satelitu'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ zóna'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Smazané DXCC'; $lang['gen_hamradio_continent'] = 'Kontinent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operátor'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Máte'; $lang['dashboard_qsos_today'] = 'QSO spojení dnes!'; diff --git a/application/language/dutch/account_lang.php b/application/language/dutch/account_lang.php index bf868cd17..74e4e06f2 100644 --- a/application/language/dutch/account_lang.php +++ b/application/language/dutch/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/dutch/admin_lang.php index 4c8de7f74..06b4b1527 100644 --- a/application/language/dutch/admin_lang.php +++ b/application/language/dutch/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/dutch/general_words_lang.php b/application/language/dutch/general_words_lang.php index a577cde8a..295c39c8f 100644 --- a/application/language/dutch/general_words_lang.php +++ b/application/language/dutch/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Satelliet Mode'; $lang['gen_hamradio_logbook'] = 'Logboek'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operator'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Je hebt'; $lang['dashboard_qsos_today'] = 'QSOs vandaag!'; diff --git a/application/language/english/account_lang.php b/application/language/english/account_lang.php index 225274948..982ceabe4 100644 --- a/application/language/english/account_lang.php +++ b/application/language/english/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/english/admin_lang.php index 754ab9808..125504d10 100644 --- a/application/language/english/admin_lang.php +++ b/application/language/english/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/english/general_words_lang.php b/application/language/english/general_words_lang.php index f0bc59930..35e3c4f28 100644 --- a/application/language/english/general_words_lang.php +++ b/application/language/english/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Satellite Mode'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,10 @@ $lang['gen_hamradio_operator'] = 'Operator'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq'] = "If you don't know your CQ Zone then click here to find it"; +$lang['gen_find_zone_itu'] = "If you don't know your ITU Zone then click here to find it"; + // Dashboard Words $lang['dashboard_you_have_had'] = 'You have had'; $lang['dashboard_qsos_today'] = 'QSOs Today!'; diff --git a/application/language/finnish/account_lang.php b/application/language/finnish/account_lang.php index 0d2b593b5..0ad1ee3c8 100644 --- a/application/language/finnish/account_lang.php +++ b/application/language/finnish/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/finnish/admin_lang.php index 02fa6db09..f1ada5357 100644 --- a/application/language/finnish/admin_lang.php +++ b/application/language/finnish/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Valinnat'; $lang['admin_create_user'] = 'Luo käyttäjä'; $lang['admin_delete'] = 'Poista'; $lang['admin_edit'] = 'Muokkaa'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/finnish/general_words_lang.php b/application/language/finnish/general_words_lang.php index ce2aeed72..7240bbf41 100644 --- a/application/language/finnish/general_words_lang.php +++ b/application/language/finnish/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Satelliitin Mode'; $lang['gen_hamradio_logbook'] = 'Lokikirja'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Poistettu DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operator'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Olet pitänyt'; $lang['dashboard_qsos_today'] = 'yhteyttä tänään!'; diff --git a/application/language/french/account_lang.php b/application/language/french/account_lang.php index fa95f8d6f..dea96fded 100644 --- a/application/language/french/account_lang.php +++ b/application/language/french/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/french/admin_lang.php index 533d38735..4aa4bde5c 100644 --- a/application/language/french/admin_lang.php +++ b/application/language/french/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Creation d\'un utilisateur'; $lang['admin_delete'] = 'Supprimer'; $lang['admin_edit'] = 'Editer'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/french/general_words_lang.php b/application/language/french/general_words_lang.php index 145c86e2b..91247ecda 100644 --- a/application/language/french/general_words_lang.php +++ b/application/language/french/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Mode du Satellite'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'Zone CQ '; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -129,8 +131,8 @@ $lang['gen_hamradio_usa_state'] = 'Etat USA'; $lang['gen_hamradio_county_reference'] = 'USA County'; $lang['gen_hamradio_iota_reference'] = 'Référence IOTA'; $lang['gen_hamradio_sota_reference'] = 'Référence SOTA'; -$lang['gen_hamradio_wwff_reference'] = 'WWFF Reference'; -$lang['gen_hamradio_pota_reference'] = 'POTA Reference'; +$lang['gen_hamradio_wwff_reference'] = 'Référence WWFF'; +$lang['gen_hamradio_pota_reference'] = 'Référence POTA'; $lang['gen_hamradio_dok'] = 'DOK'; $lang['gen_hamradio_state'] = 'State'; $lang['gen_hamradio_iota'] = 'IOTA'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operateur'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Vous avez eu'; $lang['dashboard_qsos_today'] = 'QSOs aujourd\'hui!'; diff --git a/application/language/german/account_lang.php b/application/language/german/account_lang.php index d09b92dda..453700366 100644 --- a/application/language/german/account_lang.php +++ b/application/language/german/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Ähnlich wie Logbücher trennen d $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/german/admin_lang.php index 2cace48e0..a4d531693 100644 --- a/application/language/german/admin_lang.php +++ b/application/language/german/admin_lang.php @@ -15,7 +15,9 @@ $lang['admin_options'] = 'Optionen'; $lang['admin_create_user'] = 'Benutzer anlegen'; $lang['admin_delete'] = 'Löschen'; -$lang['admin_edit'] = 'Editieren'; +$lang['admin_edit'] = 'Bearbeiten'; +$lang['admin_create'] = 'Erstelle'; +$lang['admin_update'] = 'Aktualisiere'; $lang['admin_copy'] = 'Kopieren'; $lang['admin_save'] = 'Speichern'; $lang['admin_close'] = 'Schliessen'; diff --git a/application/language/german/general_words_lang.php b/application/language/german/general_words_lang.php index fa0da016a..59366649f 100644 --- a/application/language/german/general_words_lang.php +++ b/application/language/german/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Satellitenmodus'; $lang['gen_hamradio_logbook'] = 'Logbuch'; +$lang['gen_hamradio_zones'] = 'Zonen'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Gelöschtes DXCC'; $lang['gen_hamradio_continent'] = 'Kontinent'; @@ -144,6 +146,10 @@ $lang['gen_hamradio_operator'] = 'Operator'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq'] = "Wenn du deine CQ Zone nicht kennst klicke hier um sie herauszufinden!"; +$lang['gen_find_zone_itu'] = "Wenn du deine ITU Zone nicht kennst klicke hier um sie herauszufinden!"; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Du hattest'; $lang['dashboard_qsos_today'] = 'QSOs heute!'; diff --git a/application/language/greek/account_lang.php b/application/language/greek/account_lang.php index 2fae3ac70..d6eb83ac5 100644 --- a/application/language/greek/account_lang.php +++ b/application/language/greek/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/greek/admin_lang.php index 754ab9808..125504d10 100644 --- a/application/language/greek/admin_lang.php +++ b/application/language/greek/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/greek/general_words_lang.php b/application/language/greek/general_words_lang.php index 64827e2cb..2c933874f 100644 --- a/application/language/greek/general_words_lang.php +++ b/application/language/greek/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Λειτουργία δορυφόρου' $lang['gen_hamradio_logbook'] = 'Αρχείο επαφών'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Χειριστής'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Έχετε'; $lang['dashboard_qsos_today'] = 'Σημερινά QSOs '; diff --git a/application/language/italian/account_lang.php b/application/language/italian/account_lang.php index 0d94e683b..df7fb5b07 100644 --- a/application/language/italian/account_lang.php +++ b/application/language/italian/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/italian/admin_lang.php index 754ab9808..125504d10 100644 --- a/application/language/italian/admin_lang.php +++ b/application/language/italian/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/italian/general_words_lang.php b/application/language/italian/general_words_lang.php index c58ad3cab..1fbc49f13 100644 --- a/application/language/italian/general_words_lang.php +++ b/application/language/italian/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Modo Satellite'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'Zona CQ'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operatore'; $lang['gen_hamradio_sig'] = 'Seg'; $lang['gen_hamradio_sig_info'] = 'Info Seg'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Hai fatto'; $lang['dashboard_qsos_today'] = 'QSO oggi!'; diff --git a/application/language/polish/account_lang.php b/application/language/polish/account_lang.php index 5eb7d5a63..bc1a867ff 100644 --- a/application/language/polish/account_lang.php +++ b/application/language/polish/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/polish/admin_lang.php index 754ab9808..125504d10 100644 --- a/application/language/polish/admin_lang.php +++ b/application/language/polish/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/polish/general_words_lang.php b/application/language/polish/general_words_lang.php index 3a1c84ce3..352c71ecb 100644 --- a/application/language/polish/general_words_lang.php +++ b/application/language/polish/general_words_lang.php @@ -25,6 +25,7 @@ $lang['general_word_satellite'] = 'Satelita'; $lang['general_word_satellite_short'] = 'Sat'; $lang['general_word_notes'] = 'Notatki'; $lang['general_word_country'] = 'Kraj'; +$lang['general_word_city'] = 'City'; $lang['general_word_total'] = 'Suma'; $lang['general_word_year'] = 'Rok'; @@ -42,12 +43,23 @@ $lang['general_word_method'] = 'Sposób'; $lang['general_word_sent'] = 'Wysłane'; $lang['general_word_received'] = 'Odebrane'; $lang['general_word_requested'] = 'Poproszone'; +$lang['general_word_queued'] = 'Queued'; +$lang['general_word_invalid_ignore'] = 'Invalid (Ignore)'; $lang['general_word_qslcard'] = 'Karta QSL'; $lang['general_word_qslcard_management'] = 'Zarządzanie kartami'; $lang['general_word_qslcards'] = 'Karty QSL'; $lang['general_word_qslcard_direct'] = 'Direct'; $lang['general_word_qslcard_bureau'] = 'Biuro'; +$lang['general_word_qslcard_electronic'] = 'Electronic'; +$lang['general_word_qslcard_manager'] = 'Manager'; $lang['general_word_qslcard_via'] = 'Via'; +$lang['general_word_eqslcard'] = 'eQSL Card'; +$lang['general_word_eqslcards'] = 'eQSL Cards'; +$lang['general_word_lotw'] = 'Logbook of the World'; +$lang['general_word_lotw_short'] = 'LoTW'; + +$lang['general_word_details'] = 'Details'; +$lang['general_word_qso_data'] = 'QSO Data'; $lang['general_edit_qso'] = 'Edytuj QSO'; $lang['general_mark_qsl_rx_bureau'] = 'Zaznacz QSL jako odebraną przez (Biuro)'; @@ -59,12 +71,19 @@ $lang['general_mark_qsl_requested'] = 'Zaznacz QSL zgodnie z żądaniem'; $lang['general_mark_qsl_requested_bureau'] = 'Zaznacz QSL zgodnie z żądaniem (Biuro)'; $lang['general_mark_qsl_requested_direct'] = 'Zaznacz QSL zgodnie z żądaniem (Bezpośredni)'; $lang['general_mark_qsl_not_required'] = 'Zaznacz QSLjako niewymagane'; -$lang['general_word_qso_data'] = 'QSO Data'; $lang['general_delete_qso'] = 'Usuń QSO'; +$lang['general_more_qso'] = 'More QSOs'; + +$lang['general_lookup_qrz'] = 'Lookup on QRZ.com'; +$lang['general_lookup_hamqth'] = 'Lookup on HamQTH'; $lang['general_total_distance'] = 'Suma odległości'; +// PHP Upload Warning +$lang['general_word_warning'] = 'Warning'; +$lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; + // Cloudlog Terms $lang['cloudlog_station_profile'] = 'Lokalizacja stacji'; @@ -74,6 +93,8 @@ $lang['gen_hamradio_station'] = 'Stacja'; $lang['gen_hamradio_call'] = 'Znak'; $lang['gen_hamradio_callsign'] = 'Znak'; +$lang['gen_hamradio_de'] = 'De'; +$lang['gen_hamradio_dx'] = 'Dx'; $lang['gen_hamradio_mode'] = 'Modulacja'; $lang['gen_hamradio_rst_sent'] = 'Wysłany'; $lang['gen_hamradio_rst_rcvd'] = 'Odebrany\'d'; @@ -84,6 +105,8 @@ $lang['gen_hamradio_frequency_rx'] = 'Częstotliwość (RX)'; $lang['gen_hamradio_radio'] = 'Radio'; $lang['gen_hamradio_rsts'] = 'RST (S)'; $lang['gen_hamradio_rstr'] = 'RST (R)'; +$lang['gen_hamradio_refs'] = 'Refs'; +$lang['gen_hamradio_myrefs'] = 'My Refs'; $lang['gen_hamradio_exchange_sent_short'] = 'Wymiana (S)'; $lang['gen_hamradio_exchange_rcvd_short'] = 'Wymiana (R)'; $lang['gen_hamradio_qsl'] = 'QSL'; @@ -98,23 +121,37 @@ $lang['gen_hamradio_satellite_mode'] = 'modulacja satelity'; $lang['gen_hamradio_logbook'] = 'Log'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'Strefa CQ'; +$lang['gen_hamradio_itu_zone'] = 'Strefa ITU'; $lang['gen_hamradio_dxcc'] = 'DXCC'; +$lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; +$lang['gen_hamradio_continent'] = 'Continent'; $lang['gen_hamradio_usa_state'] = 'Stan USA'; $lang['gen_hamradio_county_reference'] = 'Hrabstwo USA'; $lang['gen_hamradio_iota_reference'] = 'Podmiot IOTA'; $lang['gen_hamradio_sota_reference'] = 'Podmiot SOTA'; $lang['gen_hamradio_wwff_reference'] = 'Podmiot WWFF'; +$lang['gen_hamradio_pota_reference'] = 'POTA Reference'; $lang['gen_hamradio_dok'] = 'DOK'; $lang['gen_hamradio_state'] = 'Stan'; $lang['gen_hamradio_iota'] = 'IOTA'; $lang['gen_hamradio_sota'] = 'SOTA'; +$lang['gen_hamradio_wwff'] = 'WWFF'; +$lang['gen_hamradio_pota'] = 'POTA'; $lang['gen_hamradio_gridsquare'] = 'Lokator'; +$lang['gen_hamradio_distance'] = 'Distance'; $lang['gen_hamradio_operator'] = 'Operator'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Już miałeś'; $lang['dashboard_qsos_today'] = 'QSOs Today!'; @@ -124,3 +161,18 @@ $lang['dashboard_countries_breakdown'] = 'Rozkład na kraje'; $lang['gen_from_date'] = 'Od daty'; $lang['gen_this_qso_was_confirmed_on'] = 'Ta łączność została potwierdzona'; + +$lang['error_no_logbook_found'] = 'No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:'; + +$lang['copy_to_clipboard'] = 'Copy to clipboard'; + +$lang['africa'] = 'Africa'; +$lang['antarctica'] = 'Antarctica'; +$lang['asia'] = 'Asia'; +$lang['europe'] = 'Europe'; +$lang['northamerica'] = 'North America'; +$lang['oceania'] = 'Oceania'; +$lang['southamerica'] = 'South America'; + +$lang['gen_band_selection'] = 'Band selection'; +$lang['general_word_today'] = 'Today'; diff --git a/application/language/russian/account_lang.php b/application/language/russian/account_lang.php index 5e2e55ff5..40b9a4f6e 100644 --- a/application/language/russian/account_lang.php +++ b/application/language/russian/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/russian/admin_lang.php index 183896817..0c9f98340 100644 --- a/application/language/russian/admin_lang.php +++ b/application/language/russian/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Опции'; $lang['admin_create_user'] = 'Создать пользователя'; $lang['admin_delete'] = 'Удалить'; $lang['admin_edit'] = 'Редактировать'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/russian/general_words_lang.php b/application/language/russian/general_words_lang.php index daba6e560..be888f281 100644 --- a/application/language/russian/general_words_lang.php +++ b/application/language/russian/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_name'] = 'Название спутника'; $lang['gen_hamradio_satellite_mode'] = 'Режим работы спутника'; $lang['gen_hamradio_logbook'] = 'Журнал'; +$lang['gen_hamradio_zones'] = 'Zones'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Удалённые DXCC'; @@ -145,6 +147,12 @@ $lang['gen_hamradio_operator'] = 'Оператор'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = ''; $lang['dashboard_qsos_today'] = 'QSOs сегодня!'; diff --git a/application/language/spanish/account_lang.php b/application/language/spanish/account_lang.php index d742294f2..ff166c62a 100644 --- a/application/language/spanish/account_lang.php +++ b/application/language/spanish/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/spanish/admin_lang.php index 754ab9808..125504d10 100644 --- a/application/language/spanish/admin_lang.php +++ b/application/language/spanish/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/spanish/general_words_lang.php b/application/language/spanish/general_words_lang.php index 872a99169..3a3bf3b3d 100644 --- a/application/language/spanish/general_words_lang.php +++ b/application/language/spanish/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Modo del Satélite'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'Zona CQ'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operator'; $lang['gen_hamradio_sig'] = 'Señal'; $lang['gen_hamradio_sig_info'] = 'Información de señal'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Has tenido'; $lang['dashboard_qsos_today'] = 'QSOs hoy!'; diff --git a/application/language/swedish/account_lang.php b/application/language/swedish/account_lang.php index 785a28dee..8a8909f98 100644 --- a/application/language/swedish/account_lang.php +++ b/application/language/swedish/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/swedish/admin_lang.php index 7382b97b7..e0e15fe62 100644 --- a/application/language/swedish/admin_lang.php +++ b/application/language/swedish/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Alternativ'; $lang['admin_create_user'] = 'Skapa användare'; $lang['admin_delete'] = 'Radera'; $lang['admin_edit'] = 'Redigera'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/swedish/general_words_lang.php b/application/language/swedish/general_words_lang.php index 801121e4f..4edaeede4 100644 --- a/application/language/swedish/general_words_lang.php +++ b/application/language/swedish/general_words_lang.php @@ -7,7 +7,7 @@ $lang['error_no_active_station_profile'] = 'OBS! Du behöver ange en aktiv stati $lang['notice_turn_the_radio_on'] = 'Inga QSOn idag - dags att slå på radion!'; $lang['general_word_important'] = 'Viktigt'; -$lang['general_word_maintenance'] = 'Maintenance'; +$lang['general_word_maintenance'] = 'Maintenance'; $lang['general_word_info'] = 'Info'; $lang['general_word_choose_file'] = 'Välj fil'; $lang['general_word_next'] = 'Next'; @@ -59,7 +59,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; $lang['general_word_lotw_short'] = 'LoTW'; $lang['general_word_details'] = 'Details'; -$lang['general_word_qso_data'] = 'QSO Data'; +$lang['general_word_qso_data'] = 'QSO Data'; $lang['general_edit_qso'] = 'Redigera QSO'; $lang['general_mark_qsl_rx_bureau'] = 'Ange QSL mottagen (Byrå)'; @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Satellite-mode'; $lang['gen_hamradio_logbook'] = 'Loggbok'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Struket DXCC'; $lang['gen_hamradio_continent'] = 'Kontinent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operatör'; $lang['gen_hamradio_sig'] = 'Sig'; $lang['gen_hamradio_sig_info'] = 'Sig Info'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Du har kört'; $lang['dashboard_qsos_today'] = 'QSOs idag!'; diff --git a/application/language/turkish/account_lang.php b/application/language/turkish/account_lang.php index 801246ce3..33943c6eb 100644 --- a/application/language/turkish/account_lang.php +++ b/application/language/turkish/account_lang.php @@ -107,11 +107,17 @@ $lang['account_stationlocation_header_ln2'] = 'Similar to logbooks, a station pr $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'; @@ -120,4 +126,12 @@ $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/admin_lang.php b/application/language/turkish/admin_lang.php index 5c43ab9a0..5929467c1 100644 --- a/application/language/turkish/admin_lang.php +++ b/application/language/turkish/admin_lang.php @@ -16,6 +16,8 @@ $lang['admin_options'] = 'Options'; $lang['admin_create_user'] = 'Create user'; $lang['admin_delete'] = 'Delete'; $lang['admin_edit'] = 'Edit'; +$lang['admin_create'] = 'Create'; +$lang['admin_update'] = 'Update'; $lang['admin_copy'] = 'Copy'; $lang['admin_save'] = 'Save'; $lang['admin_close'] = 'Close'; diff --git a/application/language/turkish/general_words_lang.php b/application/language/turkish/general_words_lang.php index 75da52fcb..d3fcb7de7 100644 --- a/application/language/turkish/general_words_lang.php +++ b/application/language/turkish/general_words_lang.php @@ -121,7 +121,9 @@ $lang['gen_hamradio_satellite_mode'] = 'Uydu Modu'; $lang['gen_hamradio_logbook'] = 'Kayıt defteri'; +$lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ Alanı'; +$lang['gen_hamradio_itu_zone'] = 'ITU Zone'; $lang['gen_hamradio_dxcc'] = 'DXCC'; $lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC'; $lang['gen_hamradio_continent'] = 'Continent'; @@ -144,6 +146,12 @@ $lang['gen_hamradio_operator'] = 'Operatör'; $lang['gen_hamradio_sig'] = 'İmza'; $lang['gen_hamradio_sig_info'] = 'İmza bilgisi'; +// Find your CQ/ITU Zone +$lang['gen_find_zone_cq_part1'] = "If you don't know your CQ Zone then "; +$lang['gen_find_zone_itu_part1'] = "If you don't know your ITU Zone then "; +$lang['gen_find_zone_part2'] = 'click here'; +$lang['gen_find_zone_part3'] = ' to find it!'; + // Dashboard Words $lang['dashboard_you_have_had'] = 'Bu gün'; $lang['dashboard_qsos_today'] = 'QSO Yaptınız!'; diff --git a/application/views/station_profile/edit.php b/application/views/station_profile/edit.php index edb6643b1..bbaaa3283 100644 --- a/application/views/station_profile/edit.php +++ b/application/views/station_profile/edit.php @@ -19,13 +19,13 @@ station_id != NULL) { - $form_action = "Update"; + $form_action = lang("admin_update"); ?>
@@ -33,25 +33,25 @@
-
(Callsign: station_callsign; ?>)
+
station_callsign; ?>)
- + station_profile_name; } ?>" required> - Shortname for the station location. For example: Home (IO87IP) +
- + station_callsign; } ?>" required> - Station callsign. For example: 2M0SQL/P +
- + station_power; } ?>"> - Default station power. Overwritten by CAT. +
@@ -62,11 +62,11 @@
-
Location
+
- + num_rows() > 0) { ?> - Station DXCC entity. For example: Scotland +
- + station_city; } ?>"> - Station city. For example: Inverness +
- + - Station state. Applies to certain countries only. Leave blank if not applicable. +
- + - Station state. Applies to certain countries only. Leave blank if not applicable. +
- + station_cnty; } ?>"> - Station County (Only used for USA/Alaska/Hawaii) +
@@ -182,11 +182,11 @@
-
Zones
+
- + - If you don't know your CQ Zone then click here to find it! +
- + - If you don't know your ITU Zone then click here to find it! +
@@ -227,10 +227,10 @@
-
Gridsquare
+
- +
station_gridsquare; } ?>" required>