From 3eae1c71dbe6f2bde57ab19f7e95ccb4bfb2ee54 Mon Sep 17 00:00:00 2001 From: int2001 Date: Sun, 22 Feb 2026 09:02:23 +0000 Subject: [PATCH 1/3] Add option to disable Map at QSO-Window --- application/controllers/Qso.php | 7 +++++++ application/controllers/User.php | 13 +++++++++++++ application/models/User_model.php | 5 ++++- application/views/qso/index.php | 2 +- application/views/user/edit.php | 8 ++++++++ 5 files changed, 33 insertions(+), 2 deletions(-) diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 8da599501..b38b62057 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -99,6 +99,13 @@ class QSO extends CI_Controller { $data['user_station_to_qso_tab'] = 0; } + $qkey_opt = $this->user_options_model->get_options('qso_tab', array('option_name' => 'map', 'option_key' => 'show'))->result(); + if (count($qkey_opt) > 0) { + $data['user_qso_show_map'] = $qkey_opt[0]->option_value; + } else { + $data['user_qso_show_map'] = 1; // default: show map + } + // Get status of DX Waterfall enable option $qkey_opt=$this->user_options_model->get_options('dxwaterfall',array('option_name'=>'enable','option_key'=>'boolean'))->result(); if (count($qkey_opt)>0) { diff --git a/application/controllers/User.php b/application/controllers/User.php index 34069fe54..08d50e09b 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -239,6 +239,7 @@ class User extends CI_Controller { $data['user_sig_to_qso_tab'] = $this->input->post('user_sig_to_qso_tab'); $data['user_dok_to_qso_tab'] = $this->input->post('user_dok_to_qso_tab'); $data['user_station_to_qso_tab'] = $this->input->post('user_station_to_qso_tab'); + $data['user_qso_show_map'] = $this->input->post('user_qso_show_map') ?? 1; $data['user_language'] = $this->input->post('user_language'); $data['global_oqrs_text'] = $this->input->post('global_oqrs_text') ?? ''; $data['oqrs_grouped_search'] = $this->input->post('oqrs_grouped_search') ?? 'off'; @@ -313,6 +314,7 @@ class User extends CI_Controller { $this->input->post('oqrs_auto_matching') ?? 'on', $this->input->post('oqrs_direct_auto_matching') ?? 'on', $this->input->post('user_dxwaterfall_enable') ?? 'N', + $this->input->post('user_qso_show_map') ?? 1, $this->input->post('clubstation') == '1' ? true : false) ) { // Check for errors @@ -822,6 +824,17 @@ class User extends CI_Controller { } } + if ($this->input->post('user_qso_show_map') !== false) { + $data['user_qso_show_map'] = $this->input->post('user_qso_show_map', false); + } else { + $qkey_opt = $this->user_options_model->get_options('qso_tab', array('option_name' => 'map', 'option_key' => 'show'), $this->uri->segment(3))->result(); + if (count($qkey_opt) > 0) { + $data['user_qso_show_map'] = $qkey_opt[0]->option_value; + } else { + $data['user_qso_show_map'] = 1; // default: show + } + } + if($this->input->post('global_oqrs_text')) { $data['global_oqrs_text'] = $this->input->post('global_oqrs_text', false); } else { diff --git a/application/models/User_model.php b/application/models/User_model.php index f13eff6a4..3fc0e422b 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -225,7 +225,7 @@ class User_Model extends CI_Model { $user_lotw_name, $user_lotw_password, $user_eqsl_name, $user_eqsl_password, $user_clublog_name, $user_clublog_password, $user_winkey, $on_air_widget_enabled, $on_air_widget_display_last_seen, $on_air_widget_show_only_most_recent_radio, $qso_widget_display_qso_time, $dashboard_banner, $dashboard_solar, $global_oqrs_text, $oqrs_grouped_search, - $oqrs_grouped_search_show_station_name, $oqrs_auto_matching, $oqrs_direct_auto_matching,$user_dxwaterfall_enable, $clubstation = 0) { + $oqrs_grouped_search_show_station_name, $oqrs_auto_matching, $oqrs_direct_auto_matching,$user_dxwaterfall_enable, $user_qso_show_map, $clubstation = 0) { // Check that the user isn't already used if(!$this->exists($username)) { $data = array( @@ -317,6 +317,7 @@ class User_Model extends CI_Model { $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'widget','qso','display_qso_time','".(xss_clean($qso_widget_display_qso_time ?? 'false'))."');"); $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'qso_db_search_priority','enable','boolean','".(xss_clean($user_qso_db_search_priority ?? 'Y'))."');"); $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'dxwaterfall','enable','boolean','".xss_clean($user_dxwaterfall_enable ?? 'N')."');"); + $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (?, 'qso_tab', 'map', 'show', ?)", [$insert_id, (int)(xss_clean($user_qso_show_map ?? 1))]); return OK; } else { return EUSERNAMEEXISTS; @@ -382,6 +383,8 @@ class User_Model extends CI_Model { $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'qso_tab','sig','show',".(xss_clean($fields['user_sig_to_qso_tab'] ?? 'off') == "on" ? 1 : 0).");"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'qso_tab','dok','show',".(xss_clean($fields['user_dok_to_qso_tab'] ?? 'off') == "on" ? 1 : 0).");"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'qso_tab','station','show',".(xss_clean($fields['user_station_to_qso_tab'] ?? 'off') == "on" ? 1 : 0).");"); + $this->db->query("replace INTO user_options (user_id, option_type, option_name, option_key, option_value) VALUES (?, 'qso_tab', 'map', 'show', ?)", [$fields['id'], (int)(xss_clean($fields['user_qso_show_map'] ?? 1))] + ); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'widget','on_air','enabled','".(xss_clean($fields['on_air_widget_enabled'] ?? 'false'))."');"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'widget','on_air','display_last_seen','".(xss_clean($fields['on_air_widget_display_last_seen'] ?? 'false'))."');"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'widget','on_air','display_only_most_recent_radio','".(xss_clean($fields['on_air_widget_show_only_most_recent_radio'] ?? 'true'))."');"); diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 44f8cc332..d97b3c104 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -820,7 +820,7 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') {
-
+ diff --git a/application/views/user/edit.php b/application/views/user/edit.php index 311824e3b..72920d168 100644 --- a/application/views/user/edit.php +++ b/application/views/user/edit.php @@ -688,6 +688,14 @@
+
+ + + +
From 2dce04d71fd592f5f8bcbc544cbc2ba29a655f33 Mon Sep 17 00:00:00 2001 From: int2001 Date: Sun, 22 Feb 2026 09:17:10 +0000 Subject: [PATCH 2/3] enable xss_check --- application/controllers/User.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/controllers/User.php b/application/controllers/User.php index 08d50e09b..047335bff 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -313,7 +313,7 @@ class User extends CI_Controller { $this->input->post('oqrs_grouped_search_show_station_name') ?? 'off', $this->input->post('oqrs_auto_matching') ?? 'on', $this->input->post('oqrs_direct_auto_matching') ?? 'on', - $this->input->post('user_dxwaterfall_enable') ?? 'N', + $this->input->post('user_dxwaterfall_enable') ?? 'N', $this->input->post('user_qso_show_map') ?? 1, $this->input->post('clubstation') == '1' ? true : false) ) { @@ -716,7 +716,7 @@ class User extends CI_Controller { } if($this->input->post('user_dashboard_map')) { - $data['user_dashboard_map'] = $this->input->post('user_dashboard_map', false); + $data['user_dashboard_map'] = $this->input->post('user_dashboard_map', true); } else { $dkey_opt=$this->user_options_model->get_options('dashboard',array('option_name'=>'show_map','option_key'=>'boolean'), $this->uri->segment(3))->result(); if (count($dkey_opt)>0) { @@ -825,7 +825,7 @@ class User extends CI_Controller { } if ($this->input->post('user_qso_show_map') !== false) { - $data['user_qso_show_map'] = $this->input->post('user_qso_show_map', false); + $data['user_qso_show_map'] = $this->input->post('user_qso_show_map', true); } else { $qkey_opt = $this->user_options_model->get_options('qso_tab', array('option_name' => 'map', 'option_key' => 'show'), $this->uri->segment(3))->result(); if (count($qkey_opt) > 0) { From bd49baa27223be646b110d74c4f318d7e4393adf Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 23 Feb 2026 05:42:46 +0000 Subject: [PATCH 3/3] po/mo updates --- .../locale/bg_BG/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/bs/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/cnr/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/de_DE/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/el_GR/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/es_ES/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/et/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/fi_FI/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/fr_FR/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/hr/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/hu/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/hy/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/it_IT/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/ja/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/lt/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/lv/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/nl_NL/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/pl_PL/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/pt_PT/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/ru_RU/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/sk/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/sl/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/sq/LC_MESSAGES/messages.po | 303 +++++++++--------- application/locale/sr/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/sv_SE/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/tr_TR/LC_MESSAGES/messages.po | 303 +++++++++--------- .../locale/zh_CN/LC_MESSAGES/messages.po | 303 +++++++++--------- assets/lang_src/messages.pot | 303 +++++++++--------- 29 files changed, 4524 insertions(+), 4263 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 7fdd5419f..8b319c205 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-22 20:14+0000\n" +"POT-Creation-Date: 2026-02-23 05:42+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Dutch \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Slovak \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) \n" "Language-Team: LANGUAGE \n" @@ -79,9 +79,9 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 #: application/controllers/Radio.php:32 application/controllers/Radio.php:320 #: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 @@ -114,11 +114,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -340,7 +340,7 @@ msgstr "" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 #: application/views/view_log/qso.php:478 msgid "DOK" msgstr "" @@ -575,7 +575,7 @@ msgstr "" #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:244 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 #: application/views/view_log/qso.php:443 #: application/views/view_log/qso.php:761 msgid "SIG" @@ -785,7 +785,7 @@ msgstr "" #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 #: application/views/view_log/qso.php:583 #: application/views/view_log/qso.php:588 @@ -918,7 +918,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 #: application/views/view_log/qso.php:593 #: application/views/view_log/qso.php:598 @@ -1344,7 +1344,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "" @@ -1385,7 +1385,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:549 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 #: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "" @@ -1423,7 +1423,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "" @@ -1952,7 +1952,7 @@ msgstr "" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "" @@ -2362,19 +2362,19 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "" -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "" @@ -2647,7 +2647,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2660,7 +2660,7 @@ msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "" @@ -3026,115 +3026,115 @@ msgstr "" msgid "Add User" msgstr "" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "" -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:712 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 @@ -3144,128 +3144,128 @@ msgstr "" msgid "Station Callsign" msgstr "" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " "setup, click %shere%s." msgstr "" -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "" -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "" -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " "your config.php!" msgstr "" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "" -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" msgstr "" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "" -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "" -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "" -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "" -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3847,7 +3847,7 @@ msgstr "" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "" @@ -4203,6 +4203,7 @@ msgstr "" #: application/views/timeline/index.php:370 #: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 +#: application/views/user/edit.php:695 msgid "Show" msgstr "" @@ -4283,7 +4284,7 @@ msgstr "" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "" @@ -5825,7 +5826,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:878 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "" @@ -6592,7 +6593,7 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:421 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 #: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "" @@ -7040,7 +7041,7 @@ msgstr "" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:414 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 #: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "" @@ -8395,10 +8396,10 @@ msgstr "" #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:994 +#: application/views/user/edit.php:1010 application/views/user/edit.php:1018 +#: application/views/user/edit.php:1038 application/views/user/edit.php:1067 +#: application/views/user/edit.php:1099 application/views/user/edit.php:1124 msgid "Yes" msgstr "" @@ -8466,10 +8467,10 @@ msgstr "" #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:993 +#: application/views/user/edit.php:1009 application/views/user/edit.php:1037 +#: application/views/user/edit.php:1068 application/views/user/edit.php:1098 +#: application/views/user/edit.php:1123 msgid "No" msgstr "" @@ -9452,7 +9453,7 @@ msgstr "" #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "" @@ -15057,7 +15058,7 @@ msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 #: application/views/view_log/qso.php:459 #: application/views/view_log/qso.php:766 msgid "SIG Info" @@ -15230,7 +15231,7 @@ msgstr "" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:400 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 #: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "" @@ -15238,7 +15239,7 @@ msgstr "" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:407 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 #: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "" @@ -16438,7 +16439,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -17439,169 +17440,177 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:696 +msgid "Don't show" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17609,85 +17618,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr ""