diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 4f6b35cd1..ac3e30c5c 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -456,10 +456,10 @@ class Awards extends CI_Controller { // Render Page $data['page_title'] = __("Log View")." - " . $type; - $data['filter'] = $type." ".$searchphrase.__(" and band ").$band; + $data['filter'] = (($type != $band) ? $type : '')." ".$searchphrase.__(" and band ").$band; if ($band == 'SAT') { if ($sat != 'All' && $sat != null) { - $data['filter'] .= __(" and sat ").$sat; + $data['filter'] .= __(" and satellite ").$sat; } if ($orbit != 'All' && $orbit != null) { $data['filter'] .= __(" and orbit type ").$orbit; @@ -469,7 +469,7 @@ class Awards extends CI_Controller { $data['filter'] .= __(" and propagation ").$propagation; } if ($mode != null && strtolower($mode) != 'all') { - $data['filter'] .= __(" and mode ").$mode; + $data['filter'] .= __(" and mode ").strtoupper($mode); } if (!empty($qsltype)) { $data['filter'] .= __(" and ").implode('/', $qsltype); diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php index 20df0fa88..9e2b4d8d9 100644 --- a/application/controllers/Lookup.php +++ b/application/controllers/Lookup.php @@ -74,6 +74,18 @@ class Lookup extends CI_Controller { } + public function sat() { + $this->load->model('lookup_model'); + $this->load->model('bands'); + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $data['location_list'] = "'".implode("','",$logbooks_locations_array)."'"; + $data['callsign'] = xss_clean($this->input->post('callsign')); + $data['sats'] = $this->bands->get_worked_sats(); + $data['result'] = $this->lookup_model->getSatResult($data); + $this->load->view('lookup/satresult', $data); + } + public function scp() { session_write_close(); $uppercase_callsign = strtoupper($this->input->post('callsign', TRUE) ?? ''); diff --git a/application/controllers/Qsl.php b/application/controllers/Qsl.php index 59177e8ad..e0b27404d 100644 --- a/application/controllers/Qsl.php +++ b/application/controllers/Qsl.php @@ -10,7 +10,7 @@ class Qsl extends CI_Controller { parent::__construct(); $this->load->model('user_model'); if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } - if(($this->config->item('disable_qsl') ?? false)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); exit; } + if(($this->config->item('disable_qsl') ?? false)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); exit; } } // Default view when loading controller. @@ -25,11 +25,39 @@ class Qsl extends CI_Controller { $data['page_title'] = __("QSL Cards"); $data['qslarray'] = $this->qsl_model->getQsoWithQslList(); + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/qsl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qsl.js")), + ]; + $this->load->view('interface_assets/header', $data); $this->load->view('qslcard/index'); - $this->load->view('interface_assets/footer'); + $this->load->view('interface_assets/footer', $footerData); } + // View for filtering and showing confirmations on LoTW/QSL/eQSL/QRZ/HRDLog/Clublog + public function confirmations() { + // Render Page + $data['page_title'] = __("Confirmations"); + + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/sections/qsl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qsl.js")), + ]; + + $this->load->view('interface_assets/header', $data); + $this->load->view('qslcard/confirmations'); + $this->load->view('interface_assets/footer', $footerData); + } + + public function searchConfirmations() { + $this->load->model('qsl_model'); + $confirmationtype = xss_clean($this->input->post('type')); + $data['result'] = $this->qsl_model->getConfirmations($confirmationtype); + $this->load->view('qslcard/confirmationresult', $data); + } + public function upload() { // Render Page $data['page_title'] = __("Upload QSL Cards"); diff --git a/application/controllers/Statistics.php b/application/controllers/Statistics.php index 3585f12dd..e21ef6e60 100644 --- a/application/controllers/Statistics.php +++ b/application/controllers/Statistics.php @@ -261,7 +261,8 @@ class Statistics extends CI_Controller { $footerData = []; $footerData['scripts'] = [ 'assets/js/chart.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/chart.js")), - 'assets/js/sections/antennastats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/antennestats.js")), + 'assets/js/sections/antennastats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/antennastats.js")), + 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), ]; // Load Views diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 1ef4ecbdd..2c28508a7 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: 2025-07-02 15:54+0000\n" +"POT-Creation-Date: 2025-07-06 15:33+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" +"POT-Creation-Date: 2025-07-06 15:33+0000\n" +"PO-Revision-Date: 2025-07-04 06:44+0000\n" +"Last-Translator: Fabian Berg \n" "Language-Team: German \n" "Language: de_DE\n" @@ -92,8 +92,8 @@ msgstr "" #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:136 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 #: application/controllers/Qrz.php:285 application/controllers/Qsl.php:12 -#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 -#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:24 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:72 +#: application/controllers/Qsl.php:80 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 #: application/controllers/Qso.php:287 application/controllers/Qso.php:308 @@ -144,7 +144,7 @@ msgid "You're not allowed to do that!" msgstr "Das ist dir nicht gestattet!" #: application/controllers/Accumulated.php:19 -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "Accumulated Statistics" msgstr "Kumulierte Statistiken" @@ -207,7 +207,7 @@ msgstr "Total Felder gearbeitet" #: application/controllers/Activators.php:20 #: application/views/activators/index.php:5 -#: application/views/interface_assets/header.php:150 +#: application/views/interface_assets/header.php:152 msgid "Gridsquare Activators" msgstr "Locator Aktivierer" @@ -225,7 +225,7 @@ msgid "date incorrect" msgstr "ungültiges Datum" #: application/controllers/Adif.php:134 -#: application/views/interface_assets/header.php:444 +#: application/views/interface_assets/header.php:446 msgid "ADIF Import / Export" msgstr "ADIF Import/Export" @@ -299,7 +299,7 @@ msgid "API Key %s has been deleted" msgstr "API-Schlüssel %s wurde gelöscht" #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:172 +#: application/views/interface_assets/header.php:174 #: application/views/qso/edit_ajax.php:36 msgid "Awards" msgstr "Diplome" @@ -331,12 +331,13 @@ msgstr "Diplome – %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:48 -#: application/views/contesting/index.php:58 -#: application/views/interface_assets/header.php:218 +#: application/views/contesting/index.php:59 +#: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/index.php:348 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:14 +#: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:276 #: application/views/qso/index.php:567 application/views/user/edit.php:671 #: application/views/view_log/qso.php:460 @@ -347,7 +348,7 @@ msgstr "DOK" #: application/views/bandmap/list.php:122 application/views/bands/index.php:49 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:178 +#: application/views/interface_assets/header.php:180 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:9 #: application/views/logbookadvanced/index.php:224 @@ -356,7 +357,7 @@ msgstr "DOK" #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 -#: application/views/qso/award_tabs.php:25 +#: application/views/qso/award_tabs.php:29 #: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:375 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 @@ -372,12 +373,12 @@ msgid "Awards - WAJA" msgstr "Diplome – WAJA" #: application/controllers/Awards.php:332 application/views/bands/index.php:52 -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:236 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:380 application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:184 +#: application/views/interface_assets/header.php:186 msgid "VUCC" msgstr "VUCC" @@ -388,7 +389,7 @@ msgstr "Log Ansicht – VUCC" #: application/controllers/Awards.php:458 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:86 -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 #: application/controllers/Timeline.php:126 #: application/controllers/Timeline.php:129 #: application/controllers/Timeline.php:132 @@ -404,9 +405,8 @@ msgid " and band " msgstr " und Band " #: application/controllers/Awards.php:462 -#: application/controllers/Callstats.php:104 -msgid " and sat " -msgstr " und Sat " +msgid " and satellite " +msgstr " und Satellit " #: application/controllers/Awards.php:465 #: application/controllers/Callstats.php:107 @@ -432,7 +432,7 @@ msgstr " und " #: application/controllers/Logbook.php:1290 #: application/views/awards/index.php:8 application/views/bands/index.php:56 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:204 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/index.php:352 #: application/views/logbookadvanced/useroptions.php:126 @@ -442,7 +442,7 @@ msgstr " und " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/award_tabs.php:53 +#: application/views/qso/award_tabs.php:61 #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:376 #: application/views/search/search_result_ajax.php:9 @@ -459,12 +459,12 @@ msgstr "SOTA" #: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:62 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:190 +#: application/views/interface_assets/header.php:192 #: application/views/logbookadvanced/edit.php:22 #: application/views/logbookadvanced/index.php:372 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:12 -#: application/views/qso/award_tabs.php:57 +#: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:386 #: application/views/search/search_result_ajax.php:10 @@ -480,12 +480,12 @@ msgstr "WWFF" #: application/controllers/Logbook.php:1292 #: application/views/bands/index.php:53 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:208 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:356 #: application/views/logbookadvanced/index.php:764 #: application/views/logbookadvanced/useroptions.php:122 -#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:49 +#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:382 #: application/views/search/search_result_ajax.php:11 @@ -508,7 +508,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:720 application/views/bands/index.php:54 -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:214 msgid "RAC" msgstr "RAC" @@ -522,7 +522,7 @@ msgstr "IOTA (Islands On The Air)" #: application/controllers/Awards.php:876 #: application/controllers/Awards.php:890 -#: application/views/interface_assets/header.php:260 +#: application/views/interface_assets/header.php:262 msgid "US Counties" msgstr "US Counties" @@ -554,7 +554,7 @@ msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1149 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:260 #: application/views/qso/index.php:553 application/views/user/edit.php:667 @@ -578,7 +578,7 @@ msgstr "ITU-Zonen" #: application/controllers/Awards.php:2042 #: application/views/awards/wac/index.php:8 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:190 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" @@ -587,12 +587,12 @@ msgid "WAE" msgstr "WAE" #: application/controllers/Awards.php:2132 -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:198 msgid "73 on 73" msgstr "73 on 73" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:308 +#: application/views/interface_assets/header.php:310 msgid "Backup" msgstr "Backup" @@ -606,7 +606,7 @@ msgstr "Notizen - Backup" #: application/controllers/Band.php:25 application/views/bands/index.php:29 #: application/views/bands/index.php:33 -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:417 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:67 msgid "Bands" @@ -659,8 +659,12 @@ msgstr "CBR-Daten importiert" msgid "Callsign statistics" msgstr "Rufzeichen Statistik" +#: application/controllers/Callstats.php:104 +msgid " and sat " +msgstr " und Sat " + #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:458 +#: application/views/interface_assets/header.php:460 msgid "CFD Export" msgstr "CFD-Export" @@ -767,7 +771,7 @@ msgid "Clublog QSL Import" msgstr "Clublog QSL-Import" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:277 +#: application/views/interface_assets/header.php:279 msgid "Contest Calendar" msgstr "Contest-Kalender" @@ -776,12 +780,12 @@ msgid "Contestcalendar not reachable. Try again later" msgstr "Contestkalender nicht erreichbar. Versuche es später noch einmal" #: application/controllers/Contesting.php:52 -#: application/views/contesting/index.php:7 +#: application/views/contesting/index.php:8 msgid "Contest Logging" msgstr "Contest-Logging" #: application/controllers/Contesting.php:123 -#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:304 msgid "Contests" msgstr "Conteste" @@ -792,12 +796,12 @@ msgstr "Aktualisiere Contest" #: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:83 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 msgid "Continents" msgstr "Kontinente" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:312 +#: application/views/interface_assets/header.php:314 msgid "Cron Manager" msgstr "Cron-Manager" @@ -864,7 +868,7 @@ msgid "Not running" msgstr "Läuft nicht" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:452 +#: application/views/interface_assets/header.php:454 msgid "SOTA CSV Export" msgstr "SOTA CSV-Export" @@ -875,7 +879,7 @@ msgstr "Dashboard" #: application/controllers/Dayswithqso.php:17 #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:156 +#: application/views/interface_assets/header.php:158 msgid "Days with QSOs" msgstr "Tage mit QSOs" @@ -923,14 +927,14 @@ msgstr "Datenmigration fehlgeschlagen! Bitte das Fehlerprotokoll prüfen." #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Satellite Distance Records" msgstr "Satelliten-Distanzrekorde" #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 msgid "Distances Worked" msgstr "Gearbeitete Entfernungen" @@ -948,12 +952,12 @@ msgid "and propagation" msgstr "und Ausbreitungsart" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:450 +#: application/views/interface_assets/header.php:452 msgid "DX Atlas Gridsquare Export" msgstr "DX-Atlas Locator-Export" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:275 +#: application/views/interface_assets/header.php:277 msgid "DX Calendar" msgstr "DX Kalender" @@ -1010,7 +1014,7 @@ msgid "eQSL Card Image Download" msgstr "eQSL-Karten Bilder Download" #: application/controllers/Gridmap.php:10 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Gridsquare Map" msgstr "Locatorkarte" @@ -1035,7 +1039,7 @@ msgid "No QSOs found to upload." msgstr "Keine QSOs zum hochladen gefunden." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:448 +#: application/views/interface_assets/header.php:450 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML-Export" @@ -1318,8 +1322,8 @@ msgstr "eQSL" #: application/views/awards/was/index.php:87 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:114 +#: application/views/contesting/index.php:260 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:587 @@ -1341,6 +1345,7 @@ msgstr "eQSL" #: application/views/oqrs/request_grouped.php:11 #: application/views/oqrs/showrequests.php:84 #: application/views/public_search/result.php:15 +#: application/views/qslcard/confirmationresult.php:17 #: application/views/qslcard/index.php:40 #: application/views/qslcard/searchresult.php:12 #: application/views/qslcard/searchresult.php:28 @@ -1378,8 +1383,8 @@ msgstr "Mode" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:174 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:701 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1406,8 +1411,8 @@ msgstr "RST (S)" #: application/views/awards/73on73/index.php:36 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:198 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:199 +#: application/views/contesting/index.php:262 #: application/views/logbookadvanced/index.php:704 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1455,7 +1460,7 @@ msgstr "Land" #: application/controllers/Logbook.php:1289 #: application/views/awards/iota/index.php:195 #: application/views/bands/index.php:51 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:204 +#: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:360 #: application/views/logbookadvanced/index.php:761 @@ -1467,7 +1472,7 @@ msgstr "Land" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/award_tabs.php:41 +#: application/views/qso/award_tabs.php:49 #: application/views/qso/components/previous_contacts.php:81 #: application/views/qso/edit_ajax.php:367 #: application/views/search/search_result_ajax.php:8 @@ -1485,7 +1490,7 @@ msgstr "IOTA" #: application/views/awards/counties/index.php:20 #: application/views/awards/rac/index.php:143 #: application/views/awards/was/index.php:151 -#: application/views/contesting/index.php:61 +#: application/views/contesting/index.php:62 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/edit.php:78 @@ -1513,8 +1518,8 @@ msgstr "Staat" #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 -#: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:267 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1530,7 +1535,7 @@ msgstr "Staat" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/award_tabs.php:37 +#: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:291 #: application/views/satellite/pass.php:46 @@ -1595,7 +1600,7 @@ msgstr "Distanz" #: application/views/awards/pota/index.php:35 #: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 -#: application/views/awards/sota/index.php:26 +#: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 #: application/views/awards/wac/index.php:63 @@ -1607,8 +1612,8 @@ msgstr "Distanz" #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:95 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:46 application/views/callstats/index.php:7 -#: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:127 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:588 application/views/dxatlas/index.php:31 @@ -1625,6 +1630,7 @@ msgstr "Distanz" #: application/views/oqrs/request_grouped.php:10 #: application/views/oqrs/showrequests.php:83 #: application/views/public_search/result.php:16 +#: application/views/qslcard/confirmationresult.php:18 #: application/views/qslcard/index.php:43 #: application/views/qslcard/searchresult.php:21 #: application/views/qslcard/searchresult.php:37 @@ -1661,7 +1667,7 @@ msgstr "Band" #: application/controllers/Logbook.php:1297 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:120 -#: application/views/contesting/index.php:143 +#: application/views/contesting/index.php:144 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:710 #: application/views/logbookadvanced/useroptions.php:50 @@ -1743,7 +1749,7 @@ msgstr "Schnellsuche" #: application/controllers/Lotw.php:53 application/controllers/Lotw.php:85 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 #: 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:773 application/views/visitor/index.php:328 @@ -1822,8 +1828,8 @@ msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 nicht gesendet" #: application/controllers/Mode.php:25 application/controllers/Usermode.php:23 -#: application/views/interface_assets/header.php:300 -#: application/views/interface_assets/header.php:416 +#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:418 #: application/views/mode/index.php:27 application/views/usermode/index.php:25 msgid "Modes" msgstr "Modes" @@ -1833,7 +1839,7 @@ msgid "Edit Mode" msgstr "Bearbeite Mode" #: application/controllers/Notes.php:18 -#: application/views/interface_assets/header.php:134 +#: application/views/interface_assets/header.php:136 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 @@ -2014,7 +2020,7 @@ msgid "Invalid Station ID" msgstr "Ungültige Stations-ID" #: application/controllers/Oqrs.php:134 -#: application/views/interface_assets/header.php:475 +#: application/views/interface_assets/header.php:477 msgid "OQRS Requests" msgstr "OQRS-Anforderungen" @@ -2063,7 +2069,7 @@ msgstr "" "westlich von Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:490 msgid "QRZ Logbook" msgstr "QRZ-Logbuch" @@ -2082,7 +2088,11 @@ msgstr "QRZ ADIF-Information" msgid "QSL Cards" msgstr "QSL-Karten" -#: application/controllers/Qsl.php:35 +#: application/controllers/Qsl.php:41 +msgid "Confirmations" +msgstr "" + +#: application/controllers/Qsl.php:63 msgid "Upload QSL Cards" msgstr "QSL-Karten Upload" @@ -2111,13 +2121,13 @@ msgid "No callsign provided." msgstr "Kein Rufzeichen angegeben." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:498 +#: application/views/interface_assets/header.php:500 msgid "Hardware Interfaces" msgstr "Hardware-Schnittstellen" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 -#: application/views/contesting/index.php:152 +#: application/views/contesting/index.php:153 #: application/views/qso/index.php:324 msgid "Radio" msgstr "Funkgerät" @@ -2145,7 +2155,7 @@ msgid "UNKNOWN" msgstr "UNBEKANNT" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:156 +#: application/views/contesting/index.php:157 #: application/views/qso/index.php:328 msgid "last updated" msgstr "zuletzt aktualisiert" @@ -2276,8 +2286,8 @@ msgstr "Satelliten-Timer" #: application/controllers/Search.php:17 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:40 -#: application/views/interface_assets/header.php:364 -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:366 +#: application/views/interface_assets/header.php:373 #: application/views/logbookadvanced/index.php:641 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 @@ -2377,8 +2387,8 @@ msgid "Please check value for grid locator (%s)" msgstr "Bitte den Wert für den Locator (%s) überprüfen" #: application/controllers/Stationsetup.php:60 -#: application/views/interface_assets/header.php:413 -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:563 msgid "Station Setup" msgstr "Stationssetup" @@ -2445,7 +2455,7 @@ msgid "Set as Active Logbook" msgstr "Setze als aktives Logbuch" #: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:559 +#: application/views/interface_assets/header.php:561 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -2489,7 +2499,7 @@ msgid "Active Station" msgstr "Aktive Station" #: application/controllers/Stationsetup.php:396 -#: application/views/interface_assets/header.php:117 +#: application/views/interface_assets/header.php:119 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:27 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:166 @@ -2541,33 +2551,33 @@ msgid "Edit Export Map options" msgstr "Bearbeite Export-Karte Optionen" #: application/controllers/Statistics.php:26 -#: application/views/interface_assets/header.php:140 +#: application/views/interface_assets/header.php:142 msgid "Statistics" msgstr "Statistik" #: application/controllers/Statistics.php:238 -#: application/views/interface_assets/header.php:144 +#: application/views/interface_assets/header.php:146 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "QSL-Statistiken" #: application/controllers/Statistics.php:253 -#: application/views/interface_assets/header.php:142 +#: application/views/interface_assets/header.php:144 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" msgstr "Antennenanalyse" -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 msgid "Satellite QSOs" msgstr "Satellit QSOs" -#: application/controllers/Statistics.php:321 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Statistics.php:322 +#: application/views/interface_assets/header.php:170 msgid "EME Initials" msgstr "EME Erstverbindungen" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:306 +#: application/views/interface_assets/header.php:308 msgid "Themes" msgstr "Themes" @@ -2580,13 +2590,13 @@ msgid "Edit Theme" msgstr "Bearbeite Theme" #: application/controllers/Timeline.php:15 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Zeitleiste" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Zeitplotter" @@ -2692,7 +2702,7 @@ msgid "Update of Hams of Note" msgstr "Update von 'Hams of Note'" #: application/controllers/User.php:50 -#: application/views/interface_assets/header.php:296 +#: application/views/interface_assets/header.php:298 msgid "User Accounts" msgstr "Benutzerkonten" @@ -2775,7 +2785,7 @@ msgid "Login failed. Try again." msgstr "Login fehlgeschlagen. Bitte erneut versuchen." #: application/controllers/User.php:1073 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:386 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" @@ -2977,7 +2987,7 @@ msgstr "Karte exportieren" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:489 +#: application/views/interface_assets/header.php:491 msgid "QO-100 Dx Club Upload" msgstr "QO-100 DX Club Upload" @@ -3159,36 +3169,36 @@ msgstr "HRDlog: Keine QSOs gefunden zum hochladen für Stationsrufzeichen: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Keine Stationsstandorte mit HRDlog Zugangsdaten gefunden." -#: application/models/Logbook_model.php:1245 +#: application/models/Logbook_model.php:1250 msgid "Station ID not allowed" msgstr "Stations ID nicht erlaubt" -#: application/models/Logbook_model.php:1250 +#: application/models/Logbook_model.php:1255 msgid "No Call given" msgstr "Kein Rufzeichen angegeben" -#: application/models/Logbook_model.php:1320 -#: application/models/Logbook_model.php:1494 +#: application/models/Logbook_model.php:1325 +#: application/models/Logbook_model.php:1499 msgid "DXCC has to be Numeric" msgstr "DXCC muss numerisch sein" -#: application/models/Logbook_model.php:3944 +#: application/models/Logbook_model.php:3949 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Falscher Stationscall %s im QSO mit %s für das Stationsprofil %s: Nicht " "importiert" -#: application/models/Logbook_model.php:3945 +#: application/models/Logbook_model.php:3950 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Schaue im %s für Tipps zu möglichen Fehlern in der ADIF-Datei." -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3196,63 +3206,63 @@ msgstr "" "Du hast versucht, ein QSO ohne angegebenes Rufzeichen zu importieren. Dieses " "QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4256 +#: application/models/Logbook_model.php:4261 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:4267 +#: application/models/Logbook_model.php:4272 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:4328 +#: application/models/Logbook_model.php:4333 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4348 +#: application/models/Logbook_model.php:4353 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Empfangs-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4369 +#: application/models/Logbook_model.php:4374 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Sende-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4661 +#: application/models/Logbook_model.php:4666 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:4722 +#: application/models/Logbook_model.php:4727 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:4728 +#: application/models/Logbook_model.php:4733 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4733 +#: application/models/Logbook_model.php:4738 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:4736 +#: application/models/Logbook_model.php:4741 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:4739 +#: application/models/Logbook_model.php:4744 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:4742 +#: application/models/Logbook_model.php:4747 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:4745 +#: application/models/Logbook_model.php:4750 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5583 +#: application/models/Logbook_model.php:5588 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3468,9 +3478,7 @@ msgstr "Differenz" #: application/views/statistics/antennaanalytics.php:22 #: application/views/statistics/antennaanalytics.php:34 #: application/views/statistics/antennaanalytics.php:48 -#: application/views/statistics/antennaanalytics.php:63 -#: application/views/statistics/antennaanalytics.php:91 -#: application/views/statistics/antennaanalytics.php:104 +#: application/views/statistics/antennaanalytics.php:88 #: application/views/statistics/initials.php:20 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 @@ -3818,9 +3826,10 @@ msgstr "troposphärisches Ducting" #: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:94 +#: application/views/qslcard/confirmations.php:21 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/statistics/antennaanalytics.php:77 -#: application/views/statistics/antennaanalytics.php:116 +#: application/views/statistics/antennaanalytics.php:74 +#: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 #: application/views/timeline/index.php:219 @@ -3843,9 +3852,10 @@ msgstr "Anzeigen" #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 -#: application/views/interface_assets/header.php:194 +#: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/edit.php:19 #: application/views/logbookadvanced/index.php:275 +#: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 #: application/views/satellite/passtable.php:6 @@ -3870,7 +3880,7 @@ msgstr "Satellit" #: application/views/satellite/index.php:54 #: application/views/satellite/satinfo.php:12 #: application/views/statistics/antennaanalytics.php:60 -#: application/views/statistics/antennaanalytics.php:101 +#: application/views/statistics/antennaanalytics.php:98 msgid "Orbit" msgstr "Orbit" @@ -3950,7 +3960,7 @@ msgstr "Minimale Anzahl" #: application/views/awards/pota/index.php:67 #: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 -#: application/views/awards/sota/index.php:51 +#: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 #: application/views/awards/wac/index.php:199 @@ -3973,13 +3983,13 @@ msgstr "Nichts gefunden!" #: application/views/awards/73on73/index.php:34 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 -#: application/views/awards/sota/index.php:25 +#: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:148 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:166 #: application/views/csv/index.php:23 application/views/dashboard/index.php:226 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3989,6 +3999,7 @@ msgstr "Nichts gefunden!" #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/confirmationresult.php:15 #: application/views/qslcard/index.php:39 #: application/views/qslcard/searchform.php:3 #: application/views/qslprint/index.php:24 @@ -4075,11 +4086,12 @@ msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab" #: application/views/adif/dcl_success.php:29 #: application/views/awards/73on73/index.php:32 #: application/views/awards/pota/index.php:32 +#: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:99 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:221 #: application/views/debug/index.php:584 #: application/views/distancerecords/index.php:16 @@ -4119,11 +4131,12 @@ msgstr "Datum" #: application/views/adif/dcl_success.php:30 #: application/views/awards/73on73/index.php:33 #: application/views/awards/pota/index.php:33 +#: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:104 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:224 #: application/views/debug/index.php:585 #: application/views/distancerecords/index.php:17 @@ -4151,7 +4164,7 @@ msgstr "Zeit" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:121 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:258 #: application/views/debug/index.php:586 application/views/debug/index.php:621 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -4637,7 +4650,7 @@ msgid "Save" msgstr "Speichern" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:497 +#: application/views/interface_assets/header.php:499 msgid "API Keys" msgstr "API-Schlüssel" @@ -5444,7 +5457,7 @@ msgid "Prefix" msgstr "Präfix" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:266 +#: application/views/interface_assets/header.php:268 msgid "Fred Fish Memorial Award" msgstr "Fred Fish Memorial Award" @@ -5585,7 +5598,7 @@ msgid "Canton" msgstr "Kanton" #: application/views/awards/index.php:9 application/views/bands/index.php:47 -#: application/views/qso/award_tabs.php:29 +#: application/views/qso/award_tabs.php:33 msgid "CQ" msgstr "CQ" @@ -5651,8 +5664,8 @@ msgstr "Zeige IOTA Karte" #: application/views/awards/iota/index.php:197 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:223 +#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:224 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:716 @@ -5888,12 +5901,11 @@ msgid "Number of Refs" msgstr "Anzahl der Refs" #: application/views/awards/sig/qso_list.php:9 -#: application/views/awards/sota/index.php:23 +#: application/views/awards/sota/index.php:30 msgid "Reference" msgstr "Referenz" #: application/views/awards/sig/qso_list.php:10 -#: application/views/awards/sota/index.php:24 #: application/views/logbookadvanced/index.php:689 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 @@ -5905,12 +5917,12 @@ msgid "Date/Time" msgstr "Datum/Uhrzeit" #: application/views/awards/sig/qso_list.php:14 -#: application/views/awards/sota/index.php:27 +#: application/views/awards/sota/index.php:35 msgid "RST Sent" msgstr "RST gesendet" #: application/views/awards/sig/qso_list.php:15 -#: application/views/awards/sota/index.php:28 +#: application/views/awards/sota/index.php:36 msgid "RST Received" msgstr "RST empfangen" @@ -6028,7 +6040,7 @@ msgstr "Diplome - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:386 #: application/views/logbookadvanced/index.php:797 #: application/views/logbookadvanced/useroptions.php:166 -#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:33 +#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:395 #: application/views/view_log/qso.php:342 msgid "Continent" @@ -6306,9 +6318,9 @@ msgid "BandList" msgstr "BandListe" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:69 -#: application/views/contesting/index.php:19 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:154 +#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:58 +#: application/views/contesting/index.php:155 #: application/views/qso/index.php:326 msgid "None" msgstr "Nichts" @@ -6418,12 +6430,12 @@ msgid "USA County" msgstr "US-County" #: application/views/bands/index.php:60 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:234 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:61 -#: application/views/interface_assets/header.php:262 +#: application/views/interface_assets/header.php:264 msgid "WAS" msgstr "WAS" @@ -6454,7 +6466,7 @@ msgstr "Erstelle ein neues Band" #: application/views/bands/index.php:156 #: application/views/club/permissions.php:142 #: application/views/contesting/add.php:74 -#: application/views/contesting/index.php:88 +#: application/views/contesting/index.php:89 #: application/views/interface_assets/footer.php:48 #: application/views/simplefle/index.php:21 #: application/views/user/modals/more_actions_modal.php:51 @@ -7158,7 +7170,7 @@ msgstr "" "vorbeischauen." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:228 +#: application/views/contesting/index.php:229 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:402 @@ -7265,7 +7277,7 @@ msgstr "ADIF-Name" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -7332,7 +7344,7 @@ msgid "Create" msgstr "Erstelle" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:29 +#: application/views/contesting/index.php:30 #: application/views/qso/edit_ajax.php:659 #: application/views/view_log/qso.php:375 msgid "Contest Name" @@ -7351,78 +7363,83 @@ msgid "You need to start a new session before you can change the contest name!" msgstr "" "Du musst eine neue Sitzung starten, bevor du den Contest-Name ändern kannst!" -#: application/views/contesting/index.php:6 +#: application/views/contesting/index.php:3 +msgid "Are you really sure you want to start a new contest session?" +msgstr "" +"Bist du wirklich sicher, dass du eine neue Contest Session starten willst?" + +#: application/views/contesting/index.php:7 msgid "Start new Contest Session" msgstr "Beginne neue Contest-Sitzung" -#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:16 msgid "Exchange Type" msgstr "Austauschtyp" -#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:21 msgid "Exchange" msgstr "Exchange" -#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:23 msgid "Serial" msgstr "Seriennummer" -#: application/views/contesting/index.php:23 +#: application/views/contesting/index.php:24 msgid "Serial + Exchange" msgstr "Seriennummer + Exchange" -#: application/views/contesting/index.php:24 +#: application/views/contesting/index.php:25 msgid "Serial + Gridsquare" msgstr "Seriennummer + Locator" -#: application/views/contesting/index.php:25 +#: application/views/contesting/index.php:26 msgid "Serial + Gridsquare + Exchange" msgstr "Seriennummer + Locator + Austausch" -#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:41 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:649 application/views/qso/index.php:365 msgid "Operator Callsign" msgstr "Rufzeichen des Operators" -#: application/views/contesting/index.php:45 -#: application/views/contesting/index.php:50 +#: application/views/contesting/index.php:46 +#: application/views/contesting/index.php:51 msgid "More Settings" msgstr "Weitere Einstellungen" -#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:55 msgid "Copy received exchange to" msgstr "Kopiere Exchange zu" -#: application/views/contesting/index.php:56 +#: application/views/contesting/index.php:57 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" "Exchange wird nur kopiert, wenn der Wert Regeln für das Zielfeld erfüllt!" -#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:61 msgid "Age" msgstr "Alter" -#: application/views/contesting/index.php:62 +#: application/views/contesting/index.php:63 msgid "RX Power (W)" msgstr "Leistung Gegenstation (W)" -#: application/views/contesting/index.php:63 +#: application/views/contesting/index.php:64 msgid "Locator" msgstr "Lokator" -#: application/views/contesting/index.php:64 +#: application/views/contesting/index.php:65 #: application/views/logbookadvanced/index.php:719 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" -#: application/views/contesting/index.php:69 +#: application/views/contesting/index.php:70 msgid "Sequence of Exchanges" msgstr "Abfolge der Austausche" -#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 msgid "" "Choose in which order you want to type in the different reports. However, " "only the elements contained in the selected exchange type are displayed." @@ -7431,84 +7448,84 @@ msgstr "" "möchtest. Es werden jedoch nur die Elemente angezeigt, die im ausgewählten " "Austauschtyp enthalten sind." -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Exchange" msgstr "Austausch (Exch)" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Grid" msgstr "Loc." -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Serial" msgstr "Seriennummer" -#: application/views/contesting/index.php:181 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:674 msgid "Serial (S)" msgstr "Nummer (S)" -#: application/views/contesting/index.php:186 +#: application/views/contesting/index.php:187 msgid "Gridsquare (S)" msgstr "Locator (S)" -#: application/views/contesting/index.php:191 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:192 +#: application/views/contesting/index.php:263 msgid "Exch (S)" msgstr "Exch (S)" -#: application/views/contesting/index.php:205 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:266 #: application/views/qso/edit_ajax.php:669 msgid "Serial (R)" msgstr "Nummer (R)" -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 msgid "Gridsquare (R)" msgstr "Locator (R)" -#: application/views/contesting/index.php:215 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:216 +#: application/views/contesting/index.php:264 msgid "Exch (R)" msgstr "Exch (R)" -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 msgid "Reset QSO" msgstr "Setze QSO zurück" -#: application/views/contesting/index.php:234 +#: application/views/contesting/index.php:235 #: application/views/qso/index.php:681 msgid "Save QSO" msgstr "Speichere QSO" -#: application/views/contesting/index.php:243 +#: application/views/contesting/index.php:244 msgid "Callsign Suggestions" msgstr "Rufzeichenvorschläge" -#: application/views/contesting/index.php:250 +#: application/views/contesting/index.php:251 msgid "Contest Logbook" msgstr "Contest-Logbuch" -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:268 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC Locator" @@ -8746,7 +8763,7 @@ msgstr "QSO hochladen" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:273 +#: application/views/interface_assets/header.php:275 msgid "Tools" msgstr "Tools" @@ -9082,7 +9099,7 @@ msgid "Satellite Information" msgstr "Satelliten-Information" #: application/views/interface_assets/footer.php:139 -#: application/views/interface_assets/header.php:500 +#: application/views/interface_assets/header.php:502 #: application/views/options/sidebar.php:13 msgid "Version Info" msgstr "Versionsinfo" @@ -9288,136 +9305,140 @@ msgstr "QSL Ansicht" msgid "View eQSL Cards" msgstr "eQSL Ansicht" -#: application/views/interface_assets/header.php:119 +#: application/views/interface_assets/header.php:113 +msgid "View last confirmations" +msgstr "" + +#: application/views/interface_assets/header.php:121 msgid "Live QSO" msgstr "Live QSO" -#: application/views/interface_assets/header.php:121 +#: application/views/interface_assets/header.php:123 msgid "Post QSO" msgstr "Zeitversetztes QSO" -#: application/views/interface_assets/header.php:123 +#: application/views/interface_assets/header.php:125 msgid "Simple Fast Log Entry" msgstr "Simple Fast Log Entry" -#: application/views/interface_assets/header.php:126 +#: application/views/interface_assets/header.php:128 msgid "Live Contest Logging" msgstr "Live Contest-Logging" -#: application/views/interface_assets/header.php:128 +#: application/views/interface_assets/header.php:130 msgid "Post Contest Logging" msgstr "Zeitversetztes Contest-Logging" -#: application/views/interface_assets/header.php:138 +#: application/views/interface_assets/header.php:140 msgid "Analytics" msgstr "Analysen" -#: application/views/interface_assets/header.php:148 +#: application/views/interface_assets/header.php:150 msgid "Activated Gridsquares" msgstr "Aktivierte Locator" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "Callsign Statistics" msgstr "Rufzeichen Statistik" -#: application/views/interface_assets/header.php:174 +#: application/views/interface_assets/header.php:176 msgid "International" msgstr "International" -#: application/views/interface_assets/header.php:176 +#: application/views/interface_assets/header.php:178 msgid "CQ WAZ" msgstr "CQ WAZ" -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:182 msgid "ITU" msgstr "ITU" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:188 msgid "Worked All Europe (WAE)" msgstr "Worked All Europe (WAE)" -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:212 msgid "Canada" msgstr "Kanada" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:218 msgid "Germany" msgstr "Deutschland" -#: application/views/interface_assets/header.php:220 +#: application/views/interface_assets/header.php:222 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:224 +#: application/views/interface_assets/header.php:226 msgid "Great Britain" msgstr "Großbritannien" -#: application/views/interface_assets/header.php:226 +#: application/views/interface_assets/header.php:228 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:230 +#: application/views/interface_assets/header.php:232 msgid "Japan" msgstr "Japan" -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:238 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:240 +#: application/views/interface_assets/header.php:242 msgid "Luxemburg" msgstr "Luxemburg" -#: application/views/interface_assets/header.php:242 +#: application/views/interface_assets/header.php:244 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:246 +#: application/views/interface_assets/header.php:248 msgid "Switzerland" msgstr "Schweiz" -#: application/views/interface_assets/header.php:252 +#: application/views/interface_assets/header.php:254 msgid "The Netherlands" msgstr "Die Niederlande" -#: application/views/interface_assets/header.php:254 +#: application/views/interface_assets/header.php:256 msgid "WAP Worked All Provinces" msgstr "WAP Worked All Provinces" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:260 msgid "USA" msgstr "USA" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:266 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:281 +#: application/views/interface_assets/header.php:283 msgid "Bandmap" msgstr "Bandmap" -#: application/views/interface_assets/header.php:283 +#: application/views/interface_assets/header.php:285 msgid "SAT Timers" msgstr "SAT Timer" -#: application/views/interface_assets/header.php:285 +#: application/views/interface_assets/header.php:287 msgid "Satellite Flightpath" msgstr "Satellitenflugbahn" -#: application/views/interface_assets/header.php:287 +#: application/views/interface_assets/header.php:289 msgid "Satellite Pass" msgstr "Satellitenüberflug" -#: application/views/interface_assets/header.php:293 +#: application/views/interface_assets/header.php:295 #: application/views/stationsetup/stationsetup.php:116 msgid "Admin" msgstr "Admin" -#: application/views/interface_assets/header.php:298 +#: application/views/interface_assets/header.php:300 msgid "Global Options" msgstr "Globale Optionen" -#: application/views/interface_assets/header.php:304 +#: application/views/interface_assets/header.php:306 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:40 #: application/views/statistics/index.php:50 @@ -9425,129 +9446,129 @@ msgstr "Globale Optionen" msgid "Satellites" msgstr "Satelliten" -#: application/views/interface_assets/header.php:310 +#: application/views/interface_assets/header.php:312 msgid "Update Country Files" msgstr "Länderdaten aktualisieren" -#: application/views/interface_assets/header.php:314 +#: application/views/interface_assets/header.php:316 msgid "Debug Information" msgstr "Debug-Informationen" -#: application/views/interface_assets/header.php:361 +#: application/views/interface_assets/header.php:363 msgid "Add/Search Callsign" msgstr "Logge/Suche Call" -#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:365 msgid "Log" msgstr "Logge" -#: application/views/interface_assets/header.php:370 +#: application/views/interface_assets/header.php:372 #: application/views/logbookadvanced/index.php:568 #: application/views/oqrs/index.php:27 application/views/user/edit.php:470 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Suche Rufzeichen" -#: application/views/interface_assets/header.php:397 +#: application/views/interface_assets/header.php:399 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" msgstr "Op: %s" -#: application/views/interface_assets/header.php:408 +#: application/views/interface_assets/header.php:410 #: application/views/user/edit.php:53 msgid "Account" msgstr "Benutzerkonto" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:423 msgid "Switch to Clubstation:" msgstr "Wechsel zur Clubstation:" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:427 #, php-format msgid "Switch to %s" msgstr "Wechsle zu %s" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:431 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" msgstr "Verwalte %s" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:440 msgid "No Clubstations available" msgstr "Keine Clubstationen verfügbar" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:448 msgid "Other Export Options" msgstr "Andere Export-Optionen" -#: application/views/interface_assets/header.php:454 +#: application/views/interface_assets/header.php:456 msgid "Cabrillo Export" msgstr "Cabrillo Export" -#: application/views/interface_assets/header.php:456 +#: application/views/interface_assets/header.php:458 msgid "EDI Export" msgstr "EDI Export" -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:482 msgid "QSL Queue" msgstr "QSL-Warteschlange" -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "Labels" msgstr "Etiketten" -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "Third-Party Services" msgstr "Drittanbieter-Dienste" -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:488 msgid "eQSL Import / Export" msgstr "eQSL Import/Export" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "HRDLog Logbook" msgstr "HRDLog Logbuch" -#: application/views/interface_assets/header.php:490 +#: application/views/interface_assets/header.php:492 msgid "Clublog Import / Export" msgstr "Clublog Import/Export" -#: application/views/interface_assets/header.php:501 +#: application/views/interface_assets/header.php:503 #: application/views/logbookadvanced/index.php:675 msgid "Help" msgstr "Hilfe" -#: application/views/interface_assets/header.php:502 +#: application/views/interface_assets/header.php:504 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:506 +#: application/views/interface_assets/header.php:508 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Stoppe zu imitieren und wechsle zurück zu %s" -#: application/views/interface_assets/header.php:507 +#: application/views/interface_assets/header.php:509 #, php-format msgid "Switch back to %s" msgstr "Wechsle zurück zu %s" -#: application/views/interface_assets/header.php:511 +#: application/views/interface_assets/header.php:513 msgid "Logout" msgstr "Ausloggen" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Select a Location" msgstr "Wähle einen Stationsstandort" -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:563 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Du vermisst Stationsstandorte hier? Geh ins Stationssetup und markiere sie " "als Favoriten" -#: application/views/interface_assets/header.php:598 +#: application/views/interface_assets/header.php:600 msgid "Extras" msgstr "Extras" @@ -10551,7 +10572,7 @@ msgid "Default on" msgstr "Standardmässig an" #: application/views/lookup/index.php:11 -#: application/views/qso/award_tabs.php:45 +#: application/views/qso/award_tabs.php:53 msgid "US State" msgstr "US-Staat" @@ -11615,6 +11636,33 @@ msgstr "Markiere QSO als zu QRZ hochgeladen" msgid "The QSOs are marked as exported to QRZ Logbook." msgstr "Die QSOs wurden als zu QRZ hochgeladen markiert." +#: application/views/qslcard/confirmationresult.php:16 +msgid "QSO date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:19 +msgid "Confirmation date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:20 +#: application/views/user/index.php:30 +msgid "Type" +msgstr "Typ" + +#: application/views/qslcard/confirmationresult.php:52 +msgid "No confirmations found." +msgstr "" + +#: application/views/qslcard/confirmations.php:6 +msgid "" +"A maximum of 1000 rows are shown in the table. This is for performance " +"reasons." +msgstr "" + +#: application/views/qslcard/confirmations.php:11 +msgid "Confirmation type" +msgstr "" + #: application/views/qslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store QSL Card assets" @@ -11622,11 +11670,11 @@ msgstr "Aktuell werden %s des Plattenplatzes durch QSL-Karten belegt" #: application/views/qslcard/index.php:17 msgid "List View" -msgstr "" +msgstr "Listen Ansicht" #: application/views/qslcard/index.php:18 msgid "Gallery View" -msgstr "" +msgstr "Gallerie Ansicht" #: application/views/qslcard/index.php:78 #: application/views/qslcard/index.php:126 @@ -11782,49 +11830,67 @@ msgid "Showing summary for IOTA" msgstr "Zusammenfassung für IOTA" #: application/views/qso/award_tabs.php:9 +msgid "Showing summary for DOK" +msgstr "Zeige Übersicht für den DOK" + +#: application/views/qso/award_tabs.php:10 +msgid "Showing summary for satellite QSOs with" +msgstr "Zeige Übersicht für Satelliten QSOs mit" + +#: application/views/qso/award_tabs.php:11 msgid "Showing summary for continent" msgstr "Zeige Zusammenfassung für Kontinent" -#: application/views/qso/award_tabs.php:10 +#: application/views/qso/award_tabs.php:12 msgid "Showing summary for gridsquare" msgstr "Zeige Zusammenfassung für Locator" -#: application/views/qso/award_tabs.php:11 +#: application/views/qso/award_tabs.php:13 msgid "State input needs to be filled to show a summary!" msgstr "Staat muss ausgefüllt werden, um eine Zusammenfassung anzuzeigen!" -#: application/views/qso/award_tabs.php:12 +#: application/views/qso/award_tabs.php:14 msgid "SOTA input needs to be filled to show a summary!" msgstr "SOTA muss ausgefüllt sein, um eine Zusammenfassung anzuzeigen!" -#: application/views/qso/award_tabs.php:13 +#: application/views/qso/award_tabs.php:15 msgid "POTA input needs to be filled to show a summary!" msgstr "POTA muss ausgefüllt sein, um eine Zusammenfassung anzuzeigen!" -#: application/views/qso/award_tabs.php:14 +#: application/views/qso/award_tabs.php:16 msgid "IOTA input needs to be filled to show a summary!" msgstr "IOTA muss ausgefüllt sein, um eine Zusammenfassung anzuzeigen!" -#: application/views/qso/award_tabs.php:15 +#: application/views/qso/award_tabs.php:17 +msgid "DOK input needs to be filled to show a summary!" +msgstr "DOK darf nicht leer sein um eine Übersicht anzuzeigen!" + +#: application/views/qso/award_tabs.php:18 msgid "WWFF input needs to be filled to show a summary!" msgstr "WWFF muss ausgefüllt sein, um eine Zusammenfassung anzuzeigen!" -#: application/views/qso/award_tabs.php:16 +#: application/views/qso/award_tabs.php:19 +msgid "Propagation mode needs to be 'SAT' to show a summary!" +msgstr "" +"Propagation muss auf 'SAT' gestellt sein um eine Übersicht anzeigen zu " +"können!" + +#: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" msgstr "Locator muss ausgefüllt sein, um eine Zusammenfassung anzuzeigen!" -#: application/views/qso/award_tabs.php:17 +#: application/views/qso/award_tabs.php:21 msgid "Summary only shows for the first POTA entered." msgstr "" "Die Zusammenfassung wird nur für das erste eingegebene POTA Referenz " "angezeigt." -#: application/views/qso/award_tabs.php:18 +#: application/views/qso/award_tabs.php:22 msgid "Summary only shows for the first gridsquare entered." msgstr "" "Die Zusammenfassung wird nur für den ersten eingegebene Locator angezeigt." -#: application/views/qso/award_tabs.php:19 +#: application/views/qso/award_tabs.php:23 msgid "Summary only shows for US states." msgstr "Zusammenfassung wird nur für US-Bundesstaaten angezeigt." @@ -12075,7 +12141,7 @@ msgstr "POST" #: application/views/qso/index.php:40 #: application/views/statistics/antennaanalytics.php:45 -#: application/views/statistics/antennaanalytics.php:88 +#: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Sat" @@ -13711,11 +13777,11 @@ msgstr "Erstelle einen neuen Stationsstandort" #: application/views/stationsetup/stationsetup.php:104 msgid "Show all locations" -msgstr "" +msgstr "Zeige alle Standorte" #: application/views/stationsetup/stationsetup.php:104 msgid "Show only locations from the active logbook" -msgstr "" +msgstr "Zeige nur Standorte vom aktiven Logbuch" #: application/views/stationsetup/stationsetup.php:108 msgid "" @@ -13743,7 +13809,7 @@ msgstr "Bitte mache die Zuordnung in " #: application/views/stationsetup/stationsetup.php:129 msgid "Last QSO" -msgstr "" +msgstr "Letztes QSO" #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" @@ -14731,10 +14797,6 @@ msgstr "" msgid "Create user" msgstr "Benutzer anlegen" -#: application/views/user/index.php:30 -msgid "Type" -msgstr "Typ" - #: application/views/user/index.php:31 application/views/user/index.php:158 msgid "Last seen" msgstr "Zuletzt gesehen" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index fe7884205..46887d202 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-07-02 15:54+0000\n" +"POT-Creation-Date: 2025-07-06 15:33+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \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: Italian \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Dutch \n" @@ -75,8 +75,8 @@ msgstr "" #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:136 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 #: application/controllers/Qrz.php:285 application/controllers/Qsl.php:12 -#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 -#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:24 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:72 +#: application/controllers/Qsl.php:80 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 #: application/controllers/Qso.php:287 application/controllers/Qso.php:308 @@ -127,7 +127,7 @@ msgid "You're not allowed to do that!" msgstr "Je mag dat niet doen!" #: application/controllers/Accumulated.php:19 -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "Accumulated Statistics" msgstr "Opgetelde statistieken" @@ -190,7 +190,7 @@ msgstr "Totaal aantal gewerkte vakken" #: application/controllers/Activators.php:20 #: application/views/activators/index.php:5 -#: application/views/interface_assets/header.php:150 +#: application/views/interface_assets/header.php:152 msgid "Gridsquare Activators" msgstr "Geactiveerde locator vakken" @@ -208,7 +208,7 @@ msgid "date incorrect" msgstr "Datum niet correct" #: application/controllers/Adif.php:134 -#: application/views/interface_assets/header.php:444 +#: application/views/interface_assets/header.php:446 msgid "ADIF Import / Export" msgstr "ADIF Import / Export" @@ -282,7 +282,7 @@ msgid "API Key %s has been deleted" msgstr "API sleutel %s is verwijderd" #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:172 +#: application/views/interface_assets/header.php:174 #: application/views/qso/edit_ajax.php:36 msgid "Awards" msgstr "Awards" @@ -314,12 +314,13 @@ msgstr "Awards - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:48 -#: application/views/contesting/index.php:58 -#: application/views/interface_assets/header.php:218 +#: application/views/contesting/index.php:59 +#: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/index.php:348 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:14 +#: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:276 #: application/views/qso/index.php:567 application/views/user/edit.php:671 #: application/views/view_log/qso.php:460 @@ -330,7 +331,7 @@ msgstr "DOK" #: application/views/bandmap/list.php:122 application/views/bands/index.php:49 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:178 +#: application/views/interface_assets/header.php:180 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:9 #: application/views/logbookadvanced/index.php:224 @@ -339,7 +340,7 @@ msgstr "DOK" #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 -#: application/views/qso/award_tabs.php:25 +#: application/views/qso/award_tabs.php:29 #: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:375 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 @@ -355,12 +356,12 @@ msgid "Awards - WAJA" msgstr "Awards - WAJA" #: application/controllers/Awards.php:332 application/views/bands/index.php:52 -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:236 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:380 application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:184 +#: application/views/interface_assets/header.php:186 msgid "VUCC" msgstr "VUCC" @@ -371,7 +372,7 @@ msgstr "Logweergave - VUCC" #: application/controllers/Awards.php:458 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:86 -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 #: application/controllers/Timeline.php:126 #: application/controllers/Timeline.php:129 #: application/controllers/Timeline.php:132 @@ -387,8 +388,7 @@ msgid " and band " msgstr " en band " #: application/controllers/Awards.php:462 -#: application/controllers/Callstats.php:104 -msgid " and sat " +msgid " and satellite " msgstr " en satelliet " #: application/controllers/Awards.php:465 @@ -415,7 +415,7 @@ msgstr " en " #: application/controllers/Logbook.php:1290 #: application/views/awards/index.php:8 application/views/bands/index.php:56 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:204 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/index.php:352 #: application/views/logbookadvanced/useroptions.php:126 @@ -425,7 +425,7 @@ msgstr " en " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/award_tabs.php:53 +#: application/views/qso/award_tabs.php:61 #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:376 #: application/views/search/search_result_ajax.php:9 @@ -442,12 +442,12 @@ msgstr "SOTA" #: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:62 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:190 +#: application/views/interface_assets/header.php:192 #: application/views/logbookadvanced/edit.php:22 #: application/views/logbookadvanced/index.php:372 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:12 -#: application/views/qso/award_tabs.php:57 +#: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:386 #: application/views/search/search_result_ajax.php:10 @@ -463,12 +463,12 @@ msgstr "WWFF" #: application/controllers/Logbook.php:1292 #: application/views/bands/index.php:53 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:208 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:356 #: application/views/logbookadvanced/index.php:764 #: application/views/logbookadvanced/useroptions.php:122 -#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:49 +#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:382 #: application/views/search/search_result_ajax.php:11 @@ -491,7 +491,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:720 application/views/bands/index.php:54 -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:214 msgid "RAC" msgstr "RAC" @@ -505,7 +505,7 @@ msgstr "IOTA (Island On The Air)" #: application/controllers/Awards.php:876 #: application/controllers/Awards.php:890 -#: application/views/interface_assets/header.php:260 +#: application/views/interface_assets/header.php:262 msgid "US Counties" msgstr "US Counties" @@ -537,7 +537,7 @@ msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1149 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:260 #: application/views/qso/index.php:553 application/views/user/edit.php:667 @@ -561,7 +561,7 @@ msgstr "ITU Zones" #: application/controllers/Awards.php:2042 #: application/views/awards/wac/index.php:8 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:190 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" @@ -570,12 +570,12 @@ msgid "WAE" msgstr "WAE" #: application/controllers/Awards.php:2132 -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:198 msgid "73 on 73" msgstr "73 op 73" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:308 +#: application/views/interface_assets/header.php:310 msgid "Backup" msgstr "Back-up" @@ -589,7 +589,7 @@ msgstr "Notities - Back-up" #: application/controllers/Band.php:25 application/views/bands/index.php:29 #: application/views/bands/index.php:33 -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:417 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:67 msgid "Bands" @@ -642,8 +642,12 @@ msgstr "CBR-gegevens geïmporteerd" msgid "Callsign statistics" msgstr "Roepnaam statistieken" +#: application/controllers/Callstats.php:104 +msgid " and sat " +msgstr " en satelliet " + #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:458 +#: application/views/interface_assets/header.php:460 msgid "CFD Export" msgstr "CFD-export" @@ -749,7 +753,7 @@ msgid "Clublog QSL Import" msgstr "Clublog QSL Import" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:277 +#: application/views/interface_assets/header.php:279 msgid "Contest Calendar" msgstr "Wedstrijd kalender" @@ -758,12 +762,12 @@ msgid "Contestcalendar not reachable. Try again later" msgstr "Wedstrijd kalender niet bereikbaar. Probeer het later opnieuw" #: application/controllers/Contesting.php:52 -#: application/views/contesting/index.php:7 +#: application/views/contesting/index.php:8 msgid "Contest Logging" msgstr "Wedstrijd loggen" #: application/controllers/Contesting.php:123 -#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:304 msgid "Contests" msgstr "Wedstrijden" @@ -774,12 +778,12 @@ msgstr "Bijwerken wedstrijd" #: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:83 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 msgid "Continents" msgstr "Continenten" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:312 +#: application/views/interface_assets/header.php:314 msgid "Cron Manager" msgstr "Cron Manager" @@ -847,7 +851,7 @@ msgid "Not running" msgstr "Draait niet" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:452 +#: application/views/interface_assets/header.php:454 msgid "SOTA CSV Export" msgstr "SOTA CSV-export" @@ -858,7 +862,7 @@ msgstr "Dashboard" #: application/controllers/Dayswithqso.php:17 #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:156 +#: application/views/interface_assets/header.php:158 msgid "Days with QSOs" msgstr "Dagen met QSOs" @@ -906,14 +910,14 @@ msgstr "Bestandsoverdracht mislukt. Controleer het foutlogboek." #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Satellite Distance Records" msgstr "Satelliet afstandrecords" #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 msgid "Distances Worked" msgstr "Afstanden gewerkt" @@ -931,12 +935,12 @@ msgid "and propagation" msgstr "en propagatie" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:450 +#: application/views/interface_assets/header.php:452 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas locator vakken Exporteren" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:275 +#: application/views/interface_assets/header.php:277 msgid "DX Calendar" msgstr "DX-kalender" @@ -993,7 +997,7 @@ msgid "eQSL Card Image Download" msgstr "eQSL-kaart afbeelding downloaden" #: application/controllers/Gridmap.php:10 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Gridsquare Map" msgstr "Locator vakken kaart" @@ -1018,7 +1022,7 @@ msgid "No QSOs found to upload." msgstr "Geen QSOs gevonden om te uploaden." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:448 +#: application/views/interface_assets/header.php:450 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML-export" @@ -1301,8 +1305,8 @@ msgstr "eQSL" #: application/views/awards/was/index.php:87 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:114 +#: application/views/contesting/index.php:260 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:587 @@ -1324,6 +1328,7 @@ msgstr "eQSL" #: application/views/oqrs/request_grouped.php:11 #: application/views/oqrs/showrequests.php:84 #: application/views/public_search/result.php:15 +#: application/views/qslcard/confirmationresult.php:17 #: application/views/qslcard/index.php:40 #: application/views/qslcard/searchresult.php:12 #: application/views/qslcard/searchresult.php:28 @@ -1361,8 +1366,8 @@ msgstr "Modus" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:174 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:701 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1389,8 +1394,8 @@ msgstr "RST (S)" #: application/views/awards/73on73/index.php:36 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:198 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:199 +#: application/views/contesting/index.php:262 #: application/views/logbookadvanced/index.php:704 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1438,7 +1443,7 @@ msgstr "Land" #: application/controllers/Logbook.php:1289 #: application/views/awards/iota/index.php:195 #: application/views/bands/index.php:51 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:204 +#: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:360 #: application/views/logbookadvanced/index.php:761 @@ -1450,7 +1455,7 @@ msgstr "Land" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/award_tabs.php:41 +#: application/views/qso/award_tabs.php:49 #: application/views/qso/components/previous_contacts.php:81 #: application/views/qso/edit_ajax.php:367 #: application/views/search/search_result_ajax.php:8 @@ -1468,7 +1473,7 @@ msgstr "IOTA" #: application/views/awards/counties/index.php:20 #: application/views/awards/rac/index.php:143 #: application/views/awards/was/index.php:151 -#: application/views/contesting/index.php:61 +#: application/views/contesting/index.php:62 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/edit.php:78 @@ -1496,8 +1501,8 @@ msgstr "Staat" #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 -#: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:267 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1513,7 +1518,7 @@ msgstr "Staat" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/award_tabs.php:37 +#: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:291 #: application/views/satellite/pass.php:46 @@ -1578,7 +1583,7 @@ msgstr "Afstand" #: application/views/awards/pota/index.php:35 #: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 -#: application/views/awards/sota/index.php:26 +#: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 #: application/views/awards/wac/index.php:63 @@ -1590,8 +1595,8 @@ msgstr "Afstand" #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:95 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:46 application/views/callstats/index.php:7 -#: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:127 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:588 application/views/dxatlas/index.php:31 @@ -1608,6 +1613,7 @@ msgstr "Afstand" #: application/views/oqrs/request_grouped.php:10 #: application/views/oqrs/showrequests.php:83 #: application/views/public_search/result.php:16 +#: application/views/qslcard/confirmationresult.php:18 #: application/views/qslcard/index.php:43 #: application/views/qslcard/searchresult.php:21 #: application/views/qslcard/searchresult.php:37 @@ -1644,7 +1650,7 @@ msgstr "Band" #: application/controllers/Logbook.php:1297 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:120 -#: application/views/contesting/index.php:143 +#: application/views/contesting/index.php:144 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:710 #: application/views/logbookadvanced/useroptions.php:50 @@ -1726,7 +1732,7 @@ msgstr "Snel opzoeken" #: application/controllers/Lotw.php:53 application/controllers/Lotw.php:85 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 #: 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:773 application/views/visitor/index.php:328 @@ -1805,8 +1811,8 @@ msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 niet verzonden" #: application/controllers/Mode.php:25 application/controllers/Usermode.php:23 -#: application/views/interface_assets/header.php:300 -#: application/views/interface_assets/header.php:416 +#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:418 #: application/views/mode/index.php:27 application/views/usermode/index.php:25 msgid "Modes" msgstr "Modi" @@ -1816,7 +1822,7 @@ msgid "Edit Mode" msgstr "Modus bewerken" #: application/controllers/Notes.php:18 -#: application/views/interface_assets/header.php:134 +#: application/views/interface_assets/header.php:136 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 @@ -1999,7 +2005,7 @@ msgid "Invalid Station ID" msgstr "Ongeldige station-ID" #: application/controllers/Oqrs.php:134 -#: application/views/interface_assets/header.php:475 +#: application/views/interface_assets/header.php:477 msgid "OQRS Requests" msgstr "OQRS-verzoeken" @@ -2048,7 +2054,7 @@ msgstr "" "lengtegraden liggen ten westen van Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:490 msgid "QRZ Logbook" msgstr "QRZ Logboek" @@ -2067,7 +2073,11 @@ msgstr "QRZ ADIF Informatie" msgid "QSL Cards" msgstr "QSL-kaarten" -#: application/controllers/Qsl.php:35 +#: application/controllers/Qsl.php:41 +msgid "Confirmations" +msgstr "Bevestigingen" + +#: application/controllers/Qsl.php:63 msgid "Upload QSL Cards" msgstr "QSL-kaarten uploaden" @@ -2096,13 +2106,13 @@ msgid "No callsign provided." msgstr "Geen roepnaam opgegeven." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:498 +#: application/views/interface_assets/header.php:500 msgid "Hardware Interfaces" msgstr "Hardware-interfaces" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 -#: application/views/contesting/index.php:152 +#: application/views/contesting/index.php:153 #: application/views/qso/index.php:324 msgid "Radio" msgstr "Radio" @@ -2130,7 +2140,7 @@ msgid "UNKNOWN" msgstr "ONBEKEND" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:156 +#: application/views/contesting/index.php:157 #: application/views/qso/index.php:328 msgid "last updated" msgstr "laatst bijgewerkt" @@ -2261,8 +2271,8 @@ msgstr "Satelliet timers" #: application/controllers/Search.php:17 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:40 -#: application/views/interface_assets/header.php:364 -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:366 +#: application/views/interface_assets/header.php:373 #: application/views/logbookadvanced/index.php:641 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 @@ -2362,8 +2372,8 @@ msgid "Please check value for grid locator (%s)" msgstr "Controleer de waarde voor locator vak (%s)" #: application/controllers/Stationsetup.php:60 -#: application/views/interface_assets/header.php:413 -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:563 msgid "Station Setup" msgstr "Stations instellen" @@ -2430,7 +2440,7 @@ msgid "Set as Active Logbook" msgstr "Instellen als actief logboek" #: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:559 +#: application/views/interface_assets/header.php:561 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -2473,7 +2483,7 @@ msgid "Active Station" msgstr "Actief station" #: application/controllers/Stationsetup.php:396 -#: application/views/interface_assets/header.php:117 +#: application/views/interface_assets/header.php:119 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:27 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:166 @@ -2524,33 +2534,33 @@ msgid "Edit Export Map options" msgstr "Opties voor Exportkaart bewerken" #: application/controllers/Statistics.php:26 -#: application/views/interface_assets/header.php:140 +#: application/views/interface_assets/header.php:142 msgid "Statistics" msgstr "Statistieken" #: application/controllers/Statistics.php:238 -#: application/views/interface_assets/header.php:144 +#: application/views/interface_assets/header.php:146 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "QSL-statistieken" #: application/controllers/Statistics.php:253 -#: application/views/interface_assets/header.php:142 +#: application/views/interface_assets/header.php:144 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" msgstr "Antenne-analyse" -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 msgid "Satellite QSOs" msgstr "Satelliet QSOs" -#: application/controllers/Statistics.php:321 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Statistics.php:322 +#: application/views/interface_assets/header.php:170 msgid "EME Initials" msgstr "Eerste EME verbindingen" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:306 +#: application/views/interface_assets/header.php:308 msgid "Themes" msgstr "Thema's" @@ -2563,13 +2573,13 @@ msgid "Edit Theme" msgstr "Thema bewerken" #: application/controllers/Timeline.php:15 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Tijdlijn" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Tijdplotter" @@ -2675,7 +2685,7 @@ msgid "Update of Hams of Note" msgstr "Update van Vermeldenswaardige Radiozendamateurs" #: application/controllers/User.php:50 -#: application/views/interface_assets/header.php:296 +#: application/views/interface_assets/header.php:298 msgid "User Accounts" msgstr "Gebruikersaccounts" @@ -2758,7 +2768,7 @@ msgid "Login failed. Try again." msgstr "Inloggen mislukt. Probeer het opnieuw." #: application/controllers/User.php:1073 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:386 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" @@ -2959,7 +2969,7 @@ msgstr "Kaart exporteren" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:489 +#: application/views/interface_assets/header.php:491 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Upload" @@ -3136,36 +3146,36 @@ msgstr "HRDlog: Geen QSOs gevonden om te uploaden voor de station roepnaam: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Geen stationprofielen met HRDlog-gegevens gevonden." -#: application/models/Logbook_model.php:1245 +#: application/models/Logbook_model.php:1250 msgid "Station ID not allowed" msgstr "Station-ID niet toegestaan" -#: application/models/Logbook_model.php:1250 +#: application/models/Logbook_model.php:1255 msgid "No Call given" msgstr "Geen roepnaam gegeven" -#: application/models/Logbook_model.php:1320 -#: application/models/Logbook_model.php:1494 +#: application/models/Logbook_model.php:1325 +#: application/models/Logbook_model.php:1499 msgid "DXCC has to be Numeric" msgstr "DXCC moet numeriek zijn" -#: application/models/Logbook_model.php:3944 +#: application/models/Logbook_model.php:3949 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Verkeerde station roepnaam %s bij het importeren van QSO met %s voor %s: " "OVERGESLAGEN" -#: application/models/Logbook_model.php:3945 +#: application/models/Logbook_model.php:3950 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Controleer %s voor hints over fouten in ADIF-bestanden." -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "QSO on" msgstr "QSO vanaf" -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3173,63 +3183,63 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder een opgegeven CALL. Dit QSO " "is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4256 +#: application/models/Logbook_model.php:4261 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4267 +#: application/models/Logbook_model.php:4272 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4328 +#: application/models/Logbook_model.php:4333 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4348 +#: application/models/Logbook_model.php:4353 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "de lotw_qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4369 +#: application/models/Logbook_model.php:4374 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "de lotw_qslsdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4661 +#: application/models/Logbook_model.php:4666 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:4722 +#: application/models/Logbook_model.php:4727 msgid "QSO could not be matched" msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:4728 +#: application/models/Logbook_model.php:4733 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4733 +#: application/models/Logbook_model.php:4738 msgid "confirmed by award manager" msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:4736 +#: application/models/Logbook_model.php:4741 msgid "confirmed by cross-check of DCL data" msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:4739 +#: application/models/Logbook_model.php:4744 msgid "confirmation pending" msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:4742 +#: application/models/Logbook_model.php:4747 msgid "unconfirmed" msgstr "onbevestigd" -#: application/models/Logbook_model.php:4745 +#: application/models/Logbook_model.php:4750 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "onbekend" -#: application/models/Logbook_model.php:5583 +#: application/models/Logbook_model.php:5588 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3444,9 +3454,7 @@ msgstr "Verschil" #: application/views/statistics/antennaanalytics.php:22 #: application/views/statistics/antennaanalytics.php:34 #: application/views/statistics/antennaanalytics.php:48 -#: application/views/statistics/antennaanalytics.php:63 -#: application/views/statistics/antennaanalytics.php:91 -#: application/views/statistics/antennaanalytics.php:104 +#: application/views/statistics/antennaanalytics.php:88 #: application/views/statistics/initials.php:20 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 @@ -3794,9 +3802,10 @@ msgstr "Tropospheric ducting" #: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:94 +#: application/views/qslcard/confirmations.php:21 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/statistics/antennaanalytics.php:77 -#: application/views/statistics/antennaanalytics.php:116 +#: application/views/statistics/antennaanalytics.php:74 +#: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 #: application/views/timeline/index.php:219 @@ -3819,9 +3828,10 @@ msgstr "Toon" #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 -#: application/views/interface_assets/header.php:194 +#: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/edit.php:19 #: application/views/logbookadvanced/index.php:275 +#: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 #: application/views/satellite/passtable.php:6 @@ -3846,7 +3856,7 @@ msgstr "Satelliet" #: application/views/satellite/index.php:54 #: application/views/satellite/satinfo.php:12 #: application/views/statistics/antennaanalytics.php:60 -#: application/views/statistics/antennaanalytics.php:101 +#: application/views/statistics/antennaanalytics.php:98 msgid "Orbit" msgstr "Baan" @@ -3926,7 +3936,7 @@ msgstr "Minimum aantal" #: application/views/awards/pota/index.php:67 #: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 -#: application/views/awards/sota/index.php:51 +#: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 #: application/views/awards/wac/index.php:199 @@ -3949,13 +3959,13 @@ msgstr "Niets gevonden!" #: application/views/awards/73on73/index.php:34 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 -#: application/views/awards/sota/index.php:25 +#: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:148 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:166 #: application/views/csv/index.php:23 application/views/dashboard/index.php:226 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3965,6 +3975,7 @@ msgstr "Niets gevonden!" #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/confirmationresult.php:15 #: application/views/qslcard/index.php:39 #: application/views/qslcard/searchform.php:3 #: application/views/qslprint/index.php:24 @@ -4052,11 +4063,12 @@ msgstr "" #: application/views/adif/dcl_success.php:29 #: application/views/awards/73on73/index.php:32 #: application/views/awards/pota/index.php:32 +#: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:99 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:221 #: application/views/debug/index.php:584 #: application/views/distancerecords/index.php:16 @@ -4096,11 +4108,12 @@ msgstr "Datum" #: application/views/adif/dcl_success.php:30 #: application/views/awards/73on73/index.php:33 #: application/views/awards/pota/index.php:33 +#: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:104 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:224 #: application/views/debug/index.php:585 #: application/views/distancerecords/index.php:17 @@ -4128,7 +4141,7 @@ msgstr "Tijd" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:121 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:258 #: application/views/debug/index.php:586 application/views/debug/index.php:621 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -4611,7 +4624,7 @@ msgid "Save" msgstr "Opslaan" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:497 +#: application/views/interface_assets/header.php:499 msgid "API Keys" msgstr "API-sleutels" @@ -5420,7 +5433,7 @@ msgid "Prefix" msgstr "Voorvoegsel" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:266 +#: application/views/interface_assets/header.php:268 msgid "Fred Fish Memorial Award" msgstr "Fred Fish Memorial Award" @@ -5560,7 +5573,7 @@ msgid "Canton" msgstr "Kanton" #: application/views/awards/index.php:9 application/views/bands/index.php:47 -#: application/views/qso/award_tabs.php:29 +#: application/views/qso/award_tabs.php:33 msgid "CQ" msgstr "CQ" @@ -5625,8 +5638,8 @@ msgstr "Toon IOTA-kaart" #: application/views/awards/iota/index.php:197 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:223 +#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:224 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:716 @@ -5862,12 +5875,11 @@ msgid "Number of Refs" msgstr "Aantal referenties" #: application/views/awards/sig/qso_list.php:9 -#: application/views/awards/sota/index.php:23 +#: application/views/awards/sota/index.php:30 msgid "Reference" msgstr "Referentie" #: application/views/awards/sig/qso_list.php:10 -#: application/views/awards/sota/index.php:24 #: application/views/logbookadvanced/index.php:689 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 @@ -5879,12 +5891,12 @@ msgid "Date/Time" msgstr "Datum/Tijd" #: application/views/awards/sig/qso_list.php:14 -#: application/views/awards/sota/index.php:27 +#: application/views/awards/sota/index.php:35 msgid "RST Sent" msgstr "RST verzonden" #: application/views/awards/sig/qso_list.php:15 -#: application/views/awards/sota/index.php:28 +#: application/views/awards/sota/index.php:36 msgid "RST Received" msgstr "RST ontvangen" @@ -6002,7 +6014,7 @@ msgstr "Awards - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:386 #: application/views/logbookadvanced/index.php:797 #: application/views/logbookadvanced/useroptions.php:166 -#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:33 +#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:395 #: application/views/view_log/qso.php:342 msgid "Continent" @@ -6276,9 +6288,9 @@ msgid "BandList" msgstr "Bandlijst" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:69 -#: application/views/contesting/index.php:19 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:154 +#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:58 +#: application/views/contesting/index.php:155 #: application/views/qso/index.php:326 msgid "None" msgstr "Geen" @@ -6387,12 +6399,12 @@ msgid "USA County" msgstr "USA County" #: application/views/bands/index.php:60 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:234 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:61 -#: application/views/interface_assets/header.php:262 +#: application/views/interface_assets/header.php:264 msgid "WAS" msgstr "WAS" @@ -6423,7 +6435,7 @@ msgstr "Maak een band" #: application/views/bands/index.php:156 #: application/views/club/permissions.php:142 #: application/views/contesting/add.php:74 -#: application/views/contesting/index.php:88 +#: application/views/contesting/index.php:89 #: application/views/interface_assets/footer.php:48 #: application/views/simplefle/index.php:21 #: application/views/user/modals/more_actions_modal.php:51 @@ -7123,7 +7135,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Geen aankomende activaties gevonden. Kom later terug." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:228 +#: application/views/contesting/index.php:229 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:402 @@ -7229,7 +7241,7 @@ msgstr "ADIF-naam" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -7297,7 +7309,7 @@ msgid "Create" msgstr "Creëren" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:29 +#: application/views/contesting/index.php:30 #: application/views/qso/edit_ajax.php:659 #: application/views/view_log/qso.php:375 msgid "Contest Name" @@ -7317,79 +7329,83 @@ msgstr "" "Je moet een nieuwe sessie starten voordat je de naam van de contest kunt " "wijzigen!" -#: application/views/contesting/index.php:6 +#: application/views/contesting/index.php:3 +msgid "Are you really sure you want to start a new contest session?" +msgstr "Weet je echt zeker dat je een nieuwe wedstrijdsessie wilt starten?" + +#: application/views/contesting/index.php:7 msgid "Start new Contest Session" msgstr "Herstel Contest Sessie" -#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:16 msgid "Exchange Type" msgstr "Soort uitwisseling" -#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:21 msgid "Exchange" msgstr "Uitwisseling" -#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:23 msgid "Serial" msgstr "Volgnummer" -#: application/views/contesting/index.php:23 +#: application/views/contesting/index.php:24 msgid "Serial + Exchange" msgstr "Serienummer + Uitwisseling" -#: application/views/contesting/index.php:24 +#: application/views/contesting/index.php:25 msgid "Serial + Gridsquare" msgstr "Serienummer + Gridsquare" -#: application/views/contesting/index.php:25 +#: application/views/contesting/index.php:26 msgid "Serial + Gridsquare + Exchange" msgstr "Serienummer + Gridsquare + Uitwisseling" -#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:41 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:649 application/views/qso/index.php:365 msgid "Operator Callsign" msgstr "Operator roepnaam" -#: application/views/contesting/index.php:45 -#: application/views/contesting/index.php:50 +#: application/views/contesting/index.php:46 +#: application/views/contesting/index.php:51 msgid "More Settings" msgstr "Meer instellingen" -#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:55 msgid "Copy received exchange to" msgstr "Kopieer ontvangen uitwisseling naar" -#: application/views/contesting/index.php:56 +#: application/views/contesting/index.php:57 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" "Uitwisseling wordt alleen gekopieerd als het voldoet aan de regels voor het " "geselecteerde veld!" -#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:61 msgid "Age" msgstr "Leeftijd" -#: application/views/contesting/index.php:62 +#: application/views/contesting/index.php:63 msgid "RX Power (W)" msgstr "RX Vermogen (W)" -#: application/views/contesting/index.php:63 +#: application/views/contesting/index.php:64 msgid "Locator" msgstr "Locator" -#: application/views/contesting/index.php:64 +#: application/views/contesting/index.php:65 #: application/views/logbookadvanced/index.php:719 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" -#: application/views/contesting/index.php:69 +#: application/views/contesting/index.php:70 msgid "Sequence of Exchanges" msgstr "Reeks van Uitwisselingen" -#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 msgid "" "Choose in which order you want to type in the different reports. However, " "only the elements contained in the selected exchange type are displayed." @@ -7398,84 +7414,84 @@ msgstr "" "alleen de elementen die in het geselecteerde uitwisselingstype zijn " "opgenomen, worden weergegeven." -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Exchange" msgstr "Uitwisseling" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Grid" msgstr "Vak" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Serial" msgstr "Serienummer" -#: application/views/contesting/index.php:181 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:674 msgid "Serial (S)" msgstr "Serienummer (S)" -#: application/views/contesting/index.php:186 +#: application/views/contesting/index.php:187 msgid "Gridsquare (S)" msgstr "Gridsquare (S)" -#: application/views/contesting/index.php:191 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:192 +#: application/views/contesting/index.php:263 msgid "Exch (S)" msgstr "Verz (S)" -#: application/views/contesting/index.php:205 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:266 #: application/views/qso/edit_ajax.php:669 msgid "Serial (R)" msgstr "Serienummer (R)" -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 msgid "Gridsquare (R)" msgstr "Gridsquare (R)" -#: application/views/contesting/index.php:215 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:216 +#: application/views/contesting/index.php:264 msgid "Exch (R)" msgstr "Ontv (R)" -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 msgid "Reset QSO" msgstr "Wis QSO" -#: application/views/contesting/index.php:234 +#: application/views/contesting/index.php:235 #: application/views/qso/index.php:681 msgid "Save QSO" msgstr "Bewaar QSO" -#: application/views/contesting/index.php:243 +#: application/views/contesting/index.php:244 msgid "Callsign Suggestions" msgstr "Aanbevelingen voor roepnamen" -#: application/views/contesting/index.php:250 +#: application/views/contesting/index.php:251 msgid "Contest Logbook" msgstr "Contest Logboek" -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:268 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC Gridsquare" @@ -8706,7 +8722,7 @@ msgstr "Upload QSOs" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:273 +#: application/views/interface_assets/header.php:275 msgid "Tools" msgstr "Gereedschap" @@ -9043,7 +9059,7 @@ msgid "Satellite Information" msgstr "Satellietinformatie" #: application/views/interface_assets/footer.php:139 -#: application/views/interface_assets/header.php:500 +#: application/views/interface_assets/header.php:502 #: application/views/options/sidebar.php:13 msgid "Version Info" msgstr "Versie-informatie" @@ -9245,136 +9261,140 @@ msgstr "Bekijk QSL-kaarten" msgid "View eQSL Cards" msgstr "Bekijk eQSL-kaarten" -#: application/views/interface_assets/header.php:119 +#: application/views/interface_assets/header.php:113 +msgid "View last confirmations" +msgstr "Bekijk laatste bevestigingen" + +#: application/views/interface_assets/header.php:121 msgid "Live QSO" msgstr "Live QSO" -#: application/views/interface_assets/header.php:121 +#: application/views/interface_assets/header.php:123 msgid "Post QSO" msgstr "Na QSO" -#: application/views/interface_assets/header.php:123 +#: application/views/interface_assets/header.php:125 msgid "Simple Fast Log Entry" msgstr "Simple Fast Log Entry" -#: application/views/interface_assets/header.php:126 +#: application/views/interface_assets/header.php:128 msgid "Live Contest Logging" msgstr "Live Contest Logging" -#: application/views/interface_assets/header.php:128 +#: application/views/interface_assets/header.php:130 msgid "Post Contest Logging" msgstr "Loggen na de contest" -#: application/views/interface_assets/header.php:138 +#: application/views/interface_assets/header.php:140 msgid "Analytics" msgstr "Analyse" -#: application/views/interface_assets/header.php:148 +#: application/views/interface_assets/header.php:150 msgid "Activated Gridsquares" msgstr "Geactiveerde gridsquares" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "Callsign Statistics" msgstr "Roepnaamstatistieken" -#: application/views/interface_assets/header.php:174 +#: application/views/interface_assets/header.php:176 msgid "International" msgstr "Internationaal" -#: application/views/interface_assets/header.php:176 +#: application/views/interface_assets/header.php:178 msgid "CQ WAZ" msgstr "CQ WAZ" -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:182 msgid "ITU" msgstr "ITU" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:188 msgid "Worked All Europe (WAE)" msgstr "Worked All Europe (WAE)" -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:212 msgid "Canada" msgstr "Canada" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:218 msgid "Germany" msgstr "Duitsland" -#: application/views/interface_assets/header.php:220 +#: application/views/interface_assets/header.php:222 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:224 +#: application/views/interface_assets/header.php:226 msgid "Great Britain" msgstr "Groot-Brittannië" -#: application/views/interface_assets/header.php:226 +#: application/views/interface_assets/header.php:228 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:230 +#: application/views/interface_assets/header.php:232 msgid "Japan" msgstr "Japan" -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:238 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:240 +#: application/views/interface_assets/header.php:242 msgid "Luxemburg" msgstr "Luxemburg" -#: application/views/interface_assets/header.php:242 +#: application/views/interface_assets/header.php:244 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:246 +#: application/views/interface_assets/header.php:248 msgid "Switzerland" msgstr "Zwitserland" -#: application/views/interface_assets/header.php:252 +#: application/views/interface_assets/header.php:254 msgid "The Netherlands" msgstr "Nederland" -#: application/views/interface_assets/header.php:254 +#: application/views/interface_assets/header.php:256 msgid "WAP Worked All Provinces" msgstr "WAP Worked All Provinces" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:260 msgid "USA" msgstr "VS" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:266 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:281 +#: application/views/interface_assets/header.php:283 msgid "Bandmap" msgstr "Bandkaart" -#: application/views/interface_assets/header.php:283 +#: application/views/interface_assets/header.php:285 msgid "SAT Timers" msgstr "SAT-timers" -#: application/views/interface_assets/header.php:285 +#: application/views/interface_assets/header.php:287 msgid "Satellite Flightpath" msgstr "Satellietbaan" -#: application/views/interface_assets/header.php:287 +#: application/views/interface_assets/header.php:289 msgid "Satellite Pass" msgstr "Satellietovergang" -#: application/views/interface_assets/header.php:293 +#: application/views/interface_assets/header.php:295 #: application/views/stationsetup/stationsetup.php:116 msgid "Admin" msgstr "Beheerder" -#: application/views/interface_assets/header.php:298 +#: application/views/interface_assets/header.php:300 msgid "Global Options" msgstr "Globale opties" -#: application/views/interface_assets/header.php:304 +#: application/views/interface_assets/header.php:306 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:40 #: application/views/statistics/index.php:50 @@ -9382,129 +9402,129 @@ msgstr "Globale opties" msgid "Satellites" msgstr "Satellieten" -#: application/views/interface_assets/header.php:310 +#: application/views/interface_assets/header.php:312 msgid "Update Country Files" msgstr "Update landbestanden" -#: application/views/interface_assets/header.php:314 +#: application/views/interface_assets/header.php:316 msgid "Debug Information" msgstr "Foutopsporingsinformatie" -#: application/views/interface_assets/header.php:361 +#: application/views/interface_assets/header.php:363 msgid "Add/Search Callsign" msgstr "Toevoegen/Zoeken Roepnaam" -#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:365 msgid "Log" msgstr "Logboek" -#: application/views/interface_assets/header.php:370 +#: application/views/interface_assets/header.php:372 #: application/views/logbookadvanced/index.php:568 #: application/views/oqrs/index.php:27 application/views/user/edit.php:470 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Zoek roepnaam" -#: application/views/interface_assets/header.php:397 +#: application/views/interface_assets/header.php:399 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" msgstr "Op: %s" -#: application/views/interface_assets/header.php:408 +#: application/views/interface_assets/header.php:410 #: application/views/user/edit.php:53 msgid "Account" msgstr "Account" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:423 msgid "Switch to Clubstation:" msgstr "Schakel over naar clubstation:" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:427 #, php-format msgid "Switch to %s" msgstr "Schakel over naar %s" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:431 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" msgstr "Beheer %s" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:440 msgid "No Clubstations available" msgstr "Geen clubstations beschikbaar" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:448 msgid "Other Export Options" msgstr "Andere exportopties" -#: application/views/interface_assets/header.php:454 +#: application/views/interface_assets/header.php:456 msgid "Cabrillo Export" msgstr "Cabrillo-export" -#: application/views/interface_assets/header.php:456 +#: application/views/interface_assets/header.php:458 msgid "EDI Export" msgstr "EDI-export" -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:482 msgid "QSL Queue" msgstr "QSL Wachtrij" -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "Labels" msgstr "Labels" -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "Third-Party Services" msgstr "Diensten van derden" -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:488 msgid "eQSL Import / Export" msgstr "eQSL importeren / exporteren" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "HRDLog Logbook" msgstr "HRDLog Logboek" -#: application/views/interface_assets/header.php:490 +#: application/views/interface_assets/header.php:492 msgid "Clublog Import / Export" msgstr "Clublog importeren / exporteren" -#: application/views/interface_assets/header.php:501 +#: application/views/interface_assets/header.php:503 #: application/views/logbookadvanced/index.php:675 msgid "Help" msgstr "Help" -#: application/views/interface_assets/header.php:502 +#: application/views/interface_assets/header.php:504 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:506 +#: application/views/interface_assets/header.php:508 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Stop met imiteren en schakel terug naar %s" -#: application/views/interface_assets/header.php:507 +#: application/views/interface_assets/header.php:509 #, php-format msgid "Switch back to %s" msgstr "Schakel terug naar %s" -#: application/views/interface_assets/header.php:511 +#: application/views/interface_assets/header.php:513 msgid "Logout" msgstr "Uitloggen" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Select a Location" msgstr "Selecteer een locatie" -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:563 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Mis je hier stationslocaties? Ga naar stationsetup en voeg ze toe aan je " "favorieten" -#: application/views/interface_assets/header.php:598 +#: application/views/interface_assets/header.php:600 msgid "Extras" msgstr "Extra's" @@ -10504,7 +10524,7 @@ msgid "Default on" msgstr "Standaard aan" #: application/views/lookup/index.php:11 -#: application/views/qso/award_tabs.php:45 +#: application/views/qso/award_tabs.php:53 msgid "US State" msgstr "Amerikaanse staat" @@ -11569,6 +11589,35 @@ msgstr "Markeer QSOs als geëxporteerd naar QRZ Logboek" msgid "The QSOs are marked as exported to QRZ Logbook." msgstr "De QSO's zijn gemarkeerd als geëxporteerd naar QRZ Logbook." +#: application/views/qslcard/confirmationresult.php:16 +msgid "QSO date" +msgstr "QSO-datum" + +#: application/views/qslcard/confirmationresult.php:19 +msgid "Confirmation date" +msgstr "Bevestigingsdatum" + +#: application/views/qslcard/confirmationresult.php:20 +#: application/views/user/index.php:30 +msgid "Type" +msgstr "Type" + +#: application/views/qslcard/confirmationresult.php:52 +msgid "No confirmations found." +msgstr "Geen bevestigingen gevonden." + +#: application/views/qslcard/confirmations.php:6 +msgid "" +"A maximum of 1000 rows are shown in the table. This is for performance " +"reasons." +msgstr "" +"Er worden maximaal 1000 rijen in de tabel weergegeven. Dit is om prestatie-" +"redenen." + +#: application/views/qslcard/confirmations.php:11 +msgid "Confirmation type" +msgstr "Bevestigingstype" + #: application/views/qslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store QSL Card assets" @@ -11576,11 +11625,11 @@ msgstr "Je gebruikt %s aan schijfruimte om QSL-kaart assets op te slaan" #: application/views/qslcard/index.php:17 msgid "List View" -msgstr "" +msgstr "Lijstweergave" #: application/views/qslcard/index.php:18 msgid "Gallery View" -msgstr "" +msgstr "Galerijweergave" #: application/views/qslcard/index.php:78 #: application/views/qslcard/index.php:126 @@ -11736,48 +11785,64 @@ msgid "Showing summary for IOTA" msgstr "Samenvatting tonen voor IOTA" #: application/views/qso/award_tabs.php:9 +msgid "Showing summary for DOK" +msgstr "Samenvatting tonen voor DOK" + +#: application/views/qso/award_tabs.php:10 +msgid "Showing summary for satellite QSOs with" +msgstr "Samenvatting van satelliet-QSOs met" + +#: application/views/qso/award_tabs.php:11 msgid "Showing summary for continent" msgstr "Samenvatting tonen voor continent" -#: application/views/qso/award_tabs.php:10 +#: application/views/qso/award_tabs.php:12 msgid "Showing summary for gridsquare" msgstr "Samenvatting weergeven voor locator vakken" -#: application/views/qso/award_tabs.php:11 +#: application/views/qso/award_tabs.php:13 msgid "State input needs to be filled to show a summary!" msgstr "De invoer moet worden ingevuld om een samenvatting te tonen!" -#: application/views/qso/award_tabs.php:12 +#: application/views/qso/award_tabs.php:14 msgid "SOTA input needs to be filled to show a summary!" msgstr "SOTA-invoer moet worden ingevuld om een samenvatting te tonen!" -#: application/views/qso/award_tabs.php:13 +#: application/views/qso/award_tabs.php:15 msgid "POTA input needs to be filled to show a summary!" msgstr "POTA-invoer moet worden ingevuld om een samenvatting te tonen!" -#: application/views/qso/award_tabs.php:14 +#: application/views/qso/award_tabs.php:16 msgid "IOTA input needs to be filled to show a summary!" msgstr "IOTA-invoer moet worden ingevuld om een samenvatting te tonen!" -#: application/views/qso/award_tabs.php:15 +#: application/views/qso/award_tabs.php:17 +msgid "DOK input needs to be filled to show a summary!" +msgstr "DOK-invoer moet worden ingevuld om een samenvatting te tonen!" + +#: application/views/qso/award_tabs.php:18 msgid "WWFF input needs to be filled to show a summary!" msgstr "WWFF-invoer moet worden ingevuld om een samenvatting te tonen!" -#: application/views/qso/award_tabs.php:16 +#: application/views/qso/award_tabs.php:19 +msgid "Propagation mode needs to be 'SAT' to show a summary!" +msgstr "De propagatiemodus moet 'SAT' zijn om een samenvatting te tonen!" + +#: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" msgstr "Lokatorvak-invoer moet worden ingevuld om een samenvatting te tonen!" -#: application/views/qso/award_tabs.php:17 +#: application/views/qso/award_tabs.php:21 msgid "Summary only shows for the first POTA entered." msgstr "Samenvatting wordt alleen weergegeven voor de eerste ingevoerde POTA." -#: application/views/qso/award_tabs.php:18 +#: application/views/qso/award_tabs.php:22 msgid "Summary only shows for the first gridsquare entered." msgstr "" "Samenvatting wordt alleen weergegeven voor het eerste lokatorvak dat is " "ingevoerd." -#: application/views/qso/award_tabs.php:19 +#: application/views/qso/award_tabs.php:23 msgid "Summary only shows for US states." msgstr "Samenvatting wordt alleen weergegeven voor VS staten." @@ -12027,7 +12092,7 @@ msgstr "POST" #: application/views/qso/index.php:40 #: application/views/statistics/antennaanalytics.php:45 -#: application/views/statistics/antennaanalytics.php:88 +#: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satelliet" @@ -13651,11 +13716,11 @@ msgstr "Maak een stationlocatie" #: application/views/stationsetup/stationsetup.php:104 msgid "Show all locations" -msgstr "" +msgstr "Toon alle locaties" #: application/views/stationsetup/stationsetup.php:104 msgid "Show only locations from the active logbook" -msgstr "" +msgstr "Toon alleen locaties uit het actieve logboek" #: application/views/stationsetup/stationsetup.php:108 msgid "" @@ -13683,7 +13748,7 @@ msgstr "Wijs ze alsjeblieft opnieuw toe aan " #: application/views/stationsetup/stationsetup.php:129 msgid "Last QSO" -msgstr "" +msgstr "Laatste QSO" #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" @@ -14671,10 +14736,6 @@ msgstr "" msgid "Create user" msgstr "Gebruiker aanmaken" -#: application/views/user/index.php:30 -msgid "Type" -msgstr "Type" - #: application/views/user/index.php:31 application/views/user/index.php:158 msgid "Last seen" msgstr "Laatst gezien" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 8c885b43c..990baed5f 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-07-02 15:54+0000\n" +"POT-Creation-Date: 2025-07-06 15:33+0000\n" "PO-Revision-Date: 2025-01-30 21:18+0000\n" "Last-Translator: Maciej SP2FE \n" "Language-Team: Polish \n" +"POT-Creation-Date: 2025-07-06 15:33+0000\n" +"PO-Revision-Date: 2025-07-04 13:15+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -76,8 +76,8 @@ msgstr "" #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:136 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 #: application/controllers/Qrz.php:285 application/controllers/Qsl.php:12 -#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 -#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:24 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:72 +#: application/controllers/Qsl.php:80 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 #: application/controllers/Qso.php:287 application/controllers/Qso.php:308 @@ -128,7 +128,7 @@ msgid "You're not allowed to do that!" msgstr "Não é permitido fazer isso!" #: application/controllers/Accumulated.php:19 -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "Accumulated Statistics" msgstr "Estatísticas acumuladas" @@ -191,7 +191,7 @@ msgstr "Total de campos trabalhados" #: application/controllers/Activators.php:20 #: application/views/activators/index.php:5 -#: application/views/interface_assets/header.php:150 +#: application/views/interface_assets/header.php:152 msgid "Gridsquare Activators" msgstr "Activadores de Gridsquare" @@ -209,7 +209,7 @@ msgid "date incorrect" msgstr "data incorrecta" #: application/controllers/Adif.php:134 -#: application/views/interface_assets/header.php:444 +#: application/views/interface_assets/header.php:446 msgid "ADIF Import / Export" msgstr "Importação / Exportação ADIF" @@ -283,7 +283,7 @@ msgid "API Key %s has been deleted" msgstr "A chave API %s foi eliminada" #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:172 +#: application/views/interface_assets/header.php:174 #: application/views/qso/edit_ajax.php:36 msgid "Awards" msgstr "Prémios" @@ -315,12 +315,13 @@ msgstr "Prémios - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:48 -#: application/views/contesting/index.php:58 -#: application/views/interface_assets/header.php:218 +#: application/views/contesting/index.php:59 +#: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/index.php:348 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:14 +#: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:276 #: application/views/qso/index.php:567 application/views/user/edit.php:671 #: application/views/view_log/qso.php:460 @@ -331,7 +332,7 @@ msgstr "DOK" #: application/views/bandmap/list.php:122 application/views/bands/index.php:49 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:178 +#: application/views/interface_assets/header.php:180 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:9 #: application/views/logbookadvanced/index.php:224 @@ -340,7 +341,7 @@ msgstr "DOK" #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 -#: application/views/qso/award_tabs.php:25 +#: application/views/qso/award_tabs.php:29 #: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:375 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 @@ -356,12 +357,12 @@ msgid "Awards - WAJA" msgstr "Prémios - WAJA" #: application/controllers/Awards.php:332 application/views/bands/index.php:52 -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:236 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:380 application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:184 +#: application/views/interface_assets/header.php:186 msgid "VUCC" msgstr "VUCC" @@ -372,7 +373,7 @@ msgstr "Visualização do log - VUCC" #: application/controllers/Awards.php:458 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:86 -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 #: application/controllers/Timeline.php:126 #: application/controllers/Timeline.php:129 #: application/controllers/Timeline.php:132 @@ -388,8 +389,7 @@ msgid " and band " msgstr " e banda " #: application/controllers/Awards.php:462 -#: application/controllers/Callstats.php:104 -msgid " and sat " +msgid " and satellite " msgstr " e satélite " #: application/controllers/Awards.php:465 @@ -416,7 +416,7 @@ msgstr " e " #: application/controllers/Logbook.php:1290 #: application/views/awards/index.php:8 application/views/bands/index.php:56 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:204 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/index.php:352 #: application/views/logbookadvanced/useroptions.php:126 @@ -426,7 +426,7 @@ msgstr " e " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/award_tabs.php:53 +#: application/views/qso/award_tabs.php:61 #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:376 #: application/views/search/search_result_ajax.php:9 @@ -443,12 +443,12 @@ msgstr "SOTA" #: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:62 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:190 +#: application/views/interface_assets/header.php:192 #: application/views/logbookadvanced/edit.php:22 #: application/views/logbookadvanced/index.php:372 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:12 -#: application/views/qso/award_tabs.php:57 +#: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:386 #: application/views/search/search_result_ajax.php:10 @@ -464,12 +464,12 @@ msgstr "WWFF" #: application/controllers/Logbook.php:1292 #: application/views/bands/index.php:53 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:208 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:356 #: application/views/logbookadvanced/index.php:764 #: application/views/logbookadvanced/useroptions.php:122 -#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:49 +#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:382 #: application/views/search/search_result_ajax.php:11 @@ -492,7 +492,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:720 application/views/bands/index.php:54 -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:214 msgid "RAC" msgstr "RAC" @@ -506,7 +506,7 @@ msgstr "IOTA (Island On The Air)" #: application/controllers/Awards.php:876 #: application/controllers/Awards.php:890 -#: application/views/interface_assets/header.php:260 +#: application/views/interface_assets/header.php:262 msgid "US Counties" msgstr "Condados dos EUA" @@ -538,7 +538,7 @@ msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1149 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:260 #: application/views/qso/index.php:553 application/views/user/edit.php:667 @@ -562,7 +562,7 @@ msgstr "Zonas ITU" #: application/controllers/Awards.php:2042 #: application/views/awards/wac/index.php:8 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:190 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" @@ -571,12 +571,12 @@ msgid "WAE" msgstr "WAE" #: application/controllers/Awards.php:2132 -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:198 msgid "73 on 73" msgstr "73 em 73" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:308 +#: application/views/interface_assets/header.php:310 msgid "Backup" msgstr "Backup" @@ -590,7 +590,7 @@ msgstr "Notas - Backup" #: application/controllers/Band.php:25 application/views/bands/index.php:29 #: application/views/bands/index.php:33 -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:417 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:67 msgid "Bands" @@ -644,8 +644,12 @@ msgstr "Dados CBR Importados" msgid "Callsign statistics" msgstr "Estatísticas de indicativos de chamada" +#: application/controllers/Callstats.php:104 +msgid " and sat " +msgstr " e satélite " + #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:458 +#: application/views/interface_assets/header.php:460 msgid "CFD Export" msgstr "Exportar CFD" @@ -752,7 +756,7 @@ msgid "Clublog QSL Import" msgstr "Importação de QSLs do Clublog" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:277 +#: application/views/interface_assets/header.php:279 msgid "Contest Calendar" msgstr "Calendário de concursos" @@ -762,12 +766,12 @@ msgstr "" "O calendário de concursos não está acessível. Porfavor tente mais tarde" #: application/controllers/Contesting.php:52 -#: application/views/contesting/index.php:7 +#: application/views/contesting/index.php:8 msgid "Contest Logging" msgstr "Registo de concurso" #: application/controllers/Contesting.php:123 -#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:304 msgid "Contests" msgstr "Concursos" @@ -778,12 +782,12 @@ msgstr "Actualizar Concurso" #: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:83 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 msgid "Continents" msgstr "Continentes" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:312 +#: application/views/interface_assets/header.php:314 msgid "Cron Manager" msgstr "Gestor Cron" @@ -850,7 +854,7 @@ msgid "Not running" msgstr "Não está a funcionar" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:452 +#: application/views/interface_assets/header.php:454 msgid "SOTA CSV Export" msgstr "Exportar CSV SOTA" @@ -861,7 +865,7 @@ msgstr "Dashboard" #: application/controllers/Dayswithqso.php:17 #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:156 +#: application/views/interface_assets/header.php:158 msgid "Days with QSOs" msgstr "Dias com contactos" @@ -909,14 +913,14 @@ msgstr "A migração de ficheiros falhou. Verifique o registo de erros." #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Satellite Distance Records" msgstr "Recordes de distância de satélite" #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 msgid "Distances Worked" msgstr "Distâncias trabalhadas" @@ -934,12 +938,12 @@ msgid "and propagation" msgstr "e propagação" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:450 +#: application/views/interface_assets/header.php:452 msgid "DX Atlas Gridsquare Export" msgstr "Exportar Gridsquare DX Atlas" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:275 +#: application/views/interface_assets/header.php:277 msgid "DX Calendar" msgstr "Calendário DX" @@ -996,7 +1000,7 @@ msgid "eQSL Card Image Download" msgstr "Descarregar Imagem do cartão eQSL" #: application/controllers/Gridmap.php:10 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Gridsquare Map" msgstr "Mapa Gridsquare" @@ -1021,7 +1025,7 @@ msgid "No QSOs found to upload." msgstr "Não foram encontrados QSOs para carregar." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:448 +#: application/views/interface_assets/header.php:450 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Exportação KML" @@ -1305,8 +1309,8 @@ msgstr "eQSL" #: application/views/awards/was/index.php:87 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:114 +#: application/views/contesting/index.php:260 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:587 @@ -1328,6 +1332,7 @@ msgstr "eQSL" #: application/views/oqrs/request_grouped.php:11 #: application/views/oqrs/showrequests.php:84 #: application/views/public_search/result.php:15 +#: application/views/qslcard/confirmationresult.php:17 #: application/views/qslcard/index.php:40 #: application/views/qslcard/searchresult.php:12 #: application/views/qslcard/searchresult.php:28 @@ -1365,8 +1370,8 @@ msgstr "Modo" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:174 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:701 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1393,8 +1398,8 @@ msgstr "RST (E)" #: application/views/awards/73on73/index.php:36 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:198 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:199 +#: application/views/contesting/index.php:262 #: application/views/logbookadvanced/index.php:704 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1442,7 +1447,7 @@ msgstr "País" #: application/controllers/Logbook.php:1289 #: application/views/awards/iota/index.php:195 #: application/views/bands/index.php:51 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:204 +#: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:360 #: application/views/logbookadvanced/index.php:761 @@ -1454,7 +1459,7 @@ msgstr "País" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/award_tabs.php:41 +#: application/views/qso/award_tabs.php:49 #: application/views/qso/components/previous_contacts.php:81 #: application/views/qso/edit_ajax.php:367 #: application/views/search/search_result_ajax.php:8 @@ -1472,7 +1477,7 @@ msgstr "IOTA" #: application/views/awards/counties/index.php:20 #: application/views/awards/rac/index.php:143 #: application/views/awards/was/index.php:151 -#: application/views/contesting/index.php:61 +#: application/views/contesting/index.php:62 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/edit.php:78 @@ -1500,8 +1505,8 @@ msgstr "Estado" #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 -#: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:267 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1517,7 +1522,7 @@ msgstr "Estado" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/award_tabs.php:37 +#: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:291 #: application/views/satellite/pass.php:46 @@ -1582,7 +1587,7 @@ msgstr "Distância" #: application/views/awards/pota/index.php:35 #: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 -#: application/views/awards/sota/index.php:26 +#: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 #: application/views/awards/wac/index.php:63 @@ -1594,8 +1599,8 @@ msgstr "Distância" #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:95 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:46 application/views/callstats/index.php:7 -#: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:127 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:588 application/views/dxatlas/index.php:31 @@ -1612,6 +1617,7 @@ msgstr "Distância" #: application/views/oqrs/request_grouped.php:10 #: application/views/oqrs/showrequests.php:83 #: application/views/public_search/result.php:16 +#: application/views/qslcard/confirmationresult.php:18 #: application/views/qslcard/index.php:43 #: application/views/qslcard/searchresult.php:21 #: application/views/qslcard/searchresult.php:37 @@ -1648,7 +1654,7 @@ msgstr "Banda" #: application/controllers/Logbook.php:1297 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:120 -#: application/views/contesting/index.php:143 +#: application/views/contesting/index.php:144 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:710 #: application/views/logbookadvanced/useroptions.php:50 @@ -1730,7 +1736,7 @@ msgstr "Consulta rápida" #: application/controllers/Lotw.php:53 application/controllers/Lotw.php:85 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 #: 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:773 application/views/visitor/index.php:328 @@ -1809,8 +1815,8 @@ msgid "LoTW .TQ8 Not Sent" msgstr ".TQ8 LoTW não enviado" #: application/controllers/Mode.php:25 application/controllers/Usermode.php:23 -#: application/views/interface_assets/header.php:300 -#: application/views/interface_assets/header.php:416 +#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:418 #: application/views/mode/index.php:27 application/views/usermode/index.php:25 msgid "Modes" msgstr "Modos" @@ -1820,7 +1826,7 @@ msgid "Edit Mode" msgstr "Editar Modo" #: application/controllers/Notes.php:18 -#: application/views/interface_assets/header.php:134 +#: application/views/interface_assets/header.php:136 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 @@ -2003,7 +2009,7 @@ msgid "Invalid Station ID" msgstr "ID de estação inválido" #: application/controllers/Oqrs.php:134 -#: application/views/interface_assets/header.php:475 +#: application/views/interface_assets/header.php:477 msgid "OQRS Requests" msgstr "Pedidos OQRS" @@ -2052,7 +2058,7 @@ msgstr "" "oeste de Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:490 msgid "QRZ Logbook" msgstr "Logbook QRZ" @@ -2071,7 +2077,11 @@ msgstr "Informação ADIF QRZ" msgid "QSL Cards" msgstr "Cartões QSL" -#: application/controllers/Qsl.php:35 +#: application/controllers/Qsl.php:41 +msgid "Confirmations" +msgstr "" + +#: application/controllers/Qsl.php:63 msgid "Upload QSL Cards" msgstr "Enviar Cartões QSL" @@ -2100,13 +2110,13 @@ msgid "No callsign provided." msgstr "Nenhum indicativo fornecido." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:498 +#: application/views/interface_assets/header.php:500 msgid "Hardware Interfaces" msgstr "Interfaces hardware" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 -#: application/views/contesting/index.php:152 +#: application/views/contesting/index.php:153 #: application/views/qso/index.php:324 msgid "Radio" msgstr "Rádio" @@ -2134,7 +2144,7 @@ msgid "UNKNOWN" msgstr "DESCONHECIDO" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:156 +#: application/views/contesting/index.php:157 #: application/views/qso/index.php:328 msgid "last updated" msgstr "última atualização" @@ -2265,8 +2275,8 @@ msgstr "Tempos dos satélite" #: application/controllers/Search.php:17 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:40 -#: application/views/interface_assets/header.php:364 -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:366 +#: application/views/interface_assets/header.php:373 #: application/views/logbookadvanced/index.php:641 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 @@ -2366,8 +2376,8 @@ msgid "Please check value for grid locator (%s)" msgstr "Por favor, verifique o valor do QTH locator (%s)" #: application/controllers/Stationsetup.php:60 -#: application/views/interface_assets/header.php:413 -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:563 msgid "Station Setup" msgstr "Configuração da estação" @@ -2434,7 +2444,7 @@ msgid "Set as Active Logbook" msgstr "Definir como logbook ativo" #: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:559 +#: application/views/interface_assets/header.php:561 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -2477,7 +2487,7 @@ msgid "Active Station" msgstr "Estação ativa" #: application/controllers/Stationsetup.php:396 -#: application/views/interface_assets/header.php:117 +#: application/views/interface_assets/header.php:119 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:27 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:166 @@ -2529,33 +2539,33 @@ msgid "Edit Export Map options" msgstr "Editar opções do mapa de exportação" #: application/controllers/Statistics.php:26 -#: application/views/interface_assets/header.php:140 +#: application/views/interface_assets/header.php:142 msgid "Statistics" msgstr "Estatísticas" #: application/controllers/Statistics.php:238 -#: application/views/interface_assets/header.php:144 +#: application/views/interface_assets/header.php:146 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "Estatísticas de QSL" #: application/controllers/Statistics.php:253 -#: application/views/interface_assets/header.php:142 +#: application/views/interface_assets/header.php:144 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" msgstr "Análise da Antena" -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 msgid "Satellite QSOs" msgstr "Contactos via satélite" -#: application/controllers/Statistics.php:321 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Statistics.php:322 +#: application/views/interface_assets/header.php:170 msgid "EME Initials" msgstr "Iniciais EME" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:306 +#: application/views/interface_assets/header.php:308 msgid "Themes" msgstr "Temas" @@ -2568,13 +2578,13 @@ msgid "Edit Theme" msgstr "Editar Tema" #: application/controllers/Timeline.php:15 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Fita do tempo" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Plotador de tempo" @@ -2680,7 +2690,7 @@ msgid "Update of Hams of Note" msgstr "Atualização dos radioamadores nas notas" #: application/controllers/User.php:50 -#: application/views/interface_assets/header.php:296 +#: application/views/interface_assets/header.php:298 msgid "User Accounts" msgstr "Contas de utilizadores" @@ -2763,7 +2773,7 @@ msgid "Login failed. Try again." msgstr "O login falhou. Tente novamente." #: application/controllers/User.php:1073 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:386 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" @@ -2966,7 +2976,7 @@ msgstr "Exportar mapa" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:489 +#: application/views/interface_assets/header.php:491 msgid "QO-100 Dx Club Upload" msgstr "Transferência QO-100 Dx Club" @@ -3150,35 +3160,35 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" "HRDlog: Não foram encontrados perfis de estação com credenciais do HRDlog." -#: application/models/Logbook_model.php:1245 +#: application/models/Logbook_model.php:1250 msgid "Station ID not allowed" msgstr "Identificação da estação não permitida" -#: application/models/Logbook_model.php:1250 +#: application/models/Logbook_model.php:1255 msgid "No Call given" msgstr "Nenhum indicativo fornecido" -#: application/models/Logbook_model.php:1320 -#: application/models/Logbook_model.php:1494 +#: application/models/Logbook_model.php:1325 +#: application/models/Logbook_model.php:1499 msgid "DXCC has to be Numeric" msgstr "DXCC tem de ser numérico" -#: application/models/Logbook_model.php:3944 +#: application/models/Logbook_model.php:3949 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicativo de estação errado %s ao importar QSO com %s para %s: IGNORADO" -#: application/models/Logbook_model.php:3945 +#: application/models/Logbook_model.php:3950 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Verifica %s para dicas sobre erros em ficheiros ADIF." -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "QSO on" msgstr "Contacto em" -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3186,63 +3196,63 @@ msgstr "" "Tentou importar um contacto sem nenhum CALL dado. Este contacto não foi " "importado. É inválido" -#: application/models/Logbook_model.php:4256 +#: application/models/Logbook_model.php:4261 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "o qslrdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4267 +#: application/models/Logbook_model.php:4272 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "o qslsdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4328 +#: application/models/Logbook_model.php:4333 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "o clublog_qso_upload_date está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4348 +#: application/models/Logbook_model.php:4353 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "o lotw_qslrdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4369 +#: application/models/Logbook_model.php:4374 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "o lotw_qslsdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4661 +#: application/models/Logbook_model.php:4666 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicado para" -#: application/models/Logbook_model.php:4722 +#: application/models/Logbook_model.php:4727 msgid "QSO could not be matched" msgstr "Não há correspondência de contactos" -#: application/models/Logbook_model.php:4728 +#: application/models/Logbook_model.php:4733 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmado por LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4733 +#: application/models/Logbook_model.php:4738 msgid "confirmed by award manager" msgstr "confirmado pelo gestor do diploma" -#: application/models/Logbook_model.php:4736 +#: application/models/Logbook_model.php:4741 msgid "confirmed by cross-check of DCL data" msgstr "confirmado pelo controlo cruzado dos dados da DCL" -#: application/models/Logbook_model.php:4739 +#: application/models/Logbook_model.php:4744 msgid "confirmation pending" msgstr "confirmação pendente" -#: application/models/Logbook_model.php:4742 +#: application/models/Logbook_model.php:4747 msgid "unconfirmed" msgstr "não confirmado" -#: application/models/Logbook_model.php:4745 +#: application/models/Logbook_model.php:4750 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "desconhecido" -#: application/models/Logbook_model.php:5583 +#: application/models/Logbook_model.php:5588 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3457,9 +3467,7 @@ msgstr "Diferença" #: application/views/statistics/antennaanalytics.php:22 #: application/views/statistics/antennaanalytics.php:34 #: application/views/statistics/antennaanalytics.php:48 -#: application/views/statistics/antennaanalytics.php:63 -#: application/views/statistics/antennaanalytics.php:91 -#: application/views/statistics/antennaanalytics.php:104 +#: application/views/statistics/antennaanalytics.php:88 #: application/views/statistics/initials.php:20 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 @@ -3807,9 +3815,10 @@ msgstr "Ducting troposférico" #: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:94 +#: application/views/qslcard/confirmations.php:21 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/statistics/antennaanalytics.php:77 -#: application/views/statistics/antennaanalytics.php:116 +#: application/views/statistics/antennaanalytics.php:74 +#: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 #: application/views/timeline/index.php:219 @@ -3832,9 +3841,10 @@ msgstr "Mostrar" #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 -#: application/views/interface_assets/header.php:194 +#: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/edit.php:19 #: application/views/logbookadvanced/index.php:275 +#: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 #: application/views/satellite/passtable.php:6 @@ -3859,7 +3869,7 @@ msgstr "Satélite" #: application/views/satellite/index.php:54 #: application/views/satellite/satinfo.php:12 #: application/views/statistics/antennaanalytics.php:60 -#: application/views/statistics/antennaanalytics.php:101 +#: application/views/statistics/antennaanalytics.php:98 msgid "Orbit" msgstr "Órbita" @@ -3939,7 +3949,7 @@ msgstr "Contagem mínima" #: application/views/awards/pota/index.php:67 #: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 -#: application/views/awards/sota/index.php:51 +#: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 #: application/views/awards/wac/index.php:199 @@ -3962,13 +3972,13 @@ msgstr "Nada encontrado!" #: application/views/awards/73on73/index.php:34 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 -#: application/views/awards/sota/index.php:25 +#: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:148 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:166 #: application/views/csv/index.php:23 application/views/dashboard/index.php:226 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3978,6 +3988,7 @@ msgstr "Nada encontrado!" #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/confirmationresult.php:15 #: application/views/qslcard/index.php:39 #: application/views/qslcard/searchform.php:3 #: application/views/qslprint/index.php:24 @@ -4064,11 +4075,12 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL" #: application/views/adif/dcl_success.php:29 #: application/views/awards/73on73/index.php:32 #: application/views/awards/pota/index.php:32 +#: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:99 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:221 #: application/views/debug/index.php:584 #: application/views/distancerecords/index.php:16 @@ -4108,11 +4120,12 @@ msgstr "Data" #: application/views/adif/dcl_success.php:30 #: application/views/awards/73on73/index.php:33 #: application/views/awards/pota/index.php:33 +#: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:104 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:224 #: application/views/debug/index.php:585 #: application/views/distancerecords/index.php:17 @@ -4140,7 +4153,7 @@ msgstr "Tempo" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:121 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:258 #: application/views/debug/index.php:586 application/views/debug/index.php:621 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -4625,7 +4638,7 @@ msgid "Save" msgstr "Guardar" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:497 +#: application/views/interface_assets/header.php:499 msgid "API Keys" msgstr "Chaves API" @@ -5434,7 +5447,7 @@ msgid "Prefix" msgstr "Prefixo" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:266 +#: application/views/interface_assets/header.php:268 msgid "Fred Fish Memorial Award" msgstr "Diploma Fred Fish Memorial" @@ -5574,7 +5587,7 @@ msgid "Canton" msgstr "Cantão" #: application/views/awards/index.php:9 application/views/bands/index.php:47 -#: application/views/qso/award_tabs.php:29 +#: application/views/qso/award_tabs.php:33 msgid "CQ" msgstr "CQ" @@ -5638,8 +5651,8 @@ msgstr "Mostrar mapa IOTA" #: application/views/awards/iota/index.php:197 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:223 +#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:224 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:716 @@ -5874,12 +5887,11 @@ msgid "Number of Refs" msgstr "Número de referências" #: application/views/awards/sig/qso_list.php:9 -#: application/views/awards/sota/index.php:23 +#: application/views/awards/sota/index.php:30 msgid "Reference" msgstr "Referência" #: application/views/awards/sig/qso_list.php:10 -#: application/views/awards/sota/index.php:24 #: application/views/logbookadvanced/index.php:689 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 @@ -5891,12 +5903,12 @@ msgid "Date/Time" msgstr "Data/Hora" #: application/views/awards/sig/qso_list.php:14 -#: application/views/awards/sota/index.php:27 +#: application/views/awards/sota/index.php:35 msgid "RST Sent" msgstr "RST enviado" #: application/views/awards/sig/qso_list.php:15 -#: application/views/awards/sota/index.php:28 +#: application/views/awards/sota/index.php:36 msgid "RST Received" msgstr "RST recebido" @@ -6015,7 +6027,7 @@ msgstr "Diplomas - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:386 #: application/views/logbookadvanced/index.php:797 #: application/views/logbookadvanced/useroptions.php:166 -#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:33 +#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:395 #: application/views/view_log/qso.php:342 msgid "Continent" @@ -6294,9 +6306,9 @@ msgid "BandList" msgstr "Lista de Bandas" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:69 -#: application/views/contesting/index.php:19 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:154 +#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:58 +#: application/views/contesting/index.php:155 #: application/views/qso/index.php:326 msgid "None" msgstr "Nenhum" @@ -6407,12 +6419,12 @@ msgid "USA County" msgstr "Condado dos EUA" #: application/views/bands/index.php:60 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:234 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:61 -#: application/views/interface_assets/header.php:262 +#: application/views/interface_assets/header.php:264 msgid "WAS" msgstr "WAS" @@ -6443,7 +6455,7 @@ msgstr "Criar uma banda" #: application/views/bands/index.php:156 #: application/views/club/permissions.php:142 #: application/views/contesting/add.php:74 -#: application/views/contesting/index.php:88 +#: application/views/contesting/index.php:89 #: application/views/interface_assets/footer.php:48 #: application/views/simplefle/index.php:21 #: application/views/user/modals/more_actions_modal.php:51 @@ -7144,7 +7156,7 @@ msgstr "" "Não foram encontradas activações futuras. Verifique novamente mais tarde." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:228 +#: application/views/contesting/index.php:229 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:402 @@ -7251,7 +7263,7 @@ msgstr "Nome ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -7318,7 +7330,7 @@ msgid "Create" msgstr "Criar" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:29 +#: application/views/contesting/index.php:30 #: application/views/qso/edit_ajax.php:659 #: application/views/view_log/qso.php:375 msgid "Contest Name" @@ -7337,78 +7349,82 @@ msgid "You need to start a new session before you can change the contest name!" msgstr "" "Tem de iniciar uma nova sessão antes de poder mudar o nome do concurso!" -#: application/views/contesting/index.php:6 +#: application/views/contesting/index.php:3 +msgid "Are you really sure you want to start a new contest session?" +msgstr "Tem a certeza de que quer iniciar uma nova sessão de concurso?" + +#: application/views/contesting/index.php:7 msgid "Start new Contest Session" msgstr "Começar uma sessão de concurso" -#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:16 msgid "Exchange Type" msgstr "Tipo de Troca" -#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:21 msgid "Exchange" msgstr "Troca" -#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:23 msgid "Serial" msgstr "Serial" -#: application/views/contesting/index.php:23 +#: application/views/contesting/index.php:24 msgid "Serial + Exchange" msgstr "Número de série + Troca" -#: application/views/contesting/index.php:24 +#: application/views/contesting/index.php:25 msgid "Serial + Gridsquare" msgstr "Número de série + Gridsquare" -#: application/views/contesting/index.php:25 +#: application/views/contesting/index.php:26 msgid "Serial + Gridsquare + Exchange" msgstr "Número de série + Locator + Troca" -#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:41 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:649 application/views/qso/index.php:365 msgid "Operator Callsign" msgstr "Indicativo do operador" -#: application/views/contesting/index.php:45 -#: application/views/contesting/index.php:50 +#: application/views/contesting/index.php:46 +#: application/views/contesting/index.php:51 msgid "More Settings" msgstr "Mais definições" -#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:55 msgid "Copy received exchange to" msgstr "Copiar o intercâmbio recebido para" -#: application/views/contesting/index.php:56 +#: application/views/contesting/index.php:57 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" "O Exchange só é copiado se corresponder às regras do campo selecionado!" -#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:61 msgid "Age" msgstr "Idade" -#: application/views/contesting/index.php:62 +#: application/views/contesting/index.php:63 msgid "RX Power (W)" msgstr "Potência RX (W)" -#: application/views/contesting/index.php:63 +#: application/views/contesting/index.php:64 msgid "Locator" msgstr "Locator" -#: application/views/contesting/index.php:64 +#: application/views/contesting/index.php:65 #: application/views/logbookadvanced/index.php:719 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" -#: application/views/contesting/index.php:69 +#: application/views/contesting/index.php:70 msgid "Sequence of Exchanges" msgstr "Sequência de Trocas" -#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 msgid "" "Choose in which order you want to type in the different reports. However, " "only the elements contained in the selected exchange type are displayed." @@ -7416,84 +7432,84 @@ msgstr "" "Escolha em que ordem quer digitar os diferentes relatos. No entanto, apenas " "os elementos contidos no tipo de troca selecionado são exibidos." -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Exchange" msgstr "Troca" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Grid" msgstr "Grelha" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Serial" msgstr "Serial" -#: application/views/contesting/index.php:181 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:674 msgid "Serial (S)" msgstr "Serial (E)" -#: application/views/contesting/index.php:186 +#: application/views/contesting/index.php:187 msgid "Gridsquare (S)" msgstr "Gridsquare (E)" -#: application/views/contesting/index.php:191 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:192 +#: application/views/contesting/index.php:263 msgid "Exch (S)" msgstr "Exch (E)" -#: application/views/contesting/index.php:205 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:266 #: application/views/qso/edit_ajax.php:669 msgid "Serial (R)" msgstr "Serial (R)" -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 msgid "Gridsquare (R)" msgstr "Gridsquare (R)" -#: application/views/contesting/index.php:215 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:216 +#: application/views/contesting/index.php:264 msgid "Exch (R)" msgstr "Exch (R)" -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 msgid "Reset QSO" msgstr "Reiniciar contacto" -#: application/views/contesting/index.php:234 +#: application/views/contesting/index.php:235 #: application/views/qso/index.php:681 msgid "Save QSO" msgstr "Guardar contacto" -#: application/views/contesting/index.php:243 +#: application/views/contesting/index.php:244 msgid "Callsign Suggestions" msgstr "Sugestões de Indicativos" -#: application/views/contesting/index.php:250 +#: application/views/contesting/index.php:251 msgid "Contest Logbook" msgstr "Logbook de Concursos" -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:268 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "Gridsquare VUCC" @@ -8731,7 +8747,7 @@ msgstr "Enviar contactos" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:273 +#: application/views/interface_assets/header.php:275 msgid "Tools" msgstr "Ferramentas" @@ -9070,7 +9086,7 @@ msgid "Satellite Information" msgstr "Informação de satélites" #: application/views/interface_assets/footer.php:139 -#: application/views/interface_assets/header.php:500 +#: application/views/interface_assets/header.php:502 #: application/views/options/sidebar.php:13 msgid "Version Info" msgstr "Informação da Versão" @@ -9271,136 +9287,140 @@ msgstr "Ver cartões QSL" msgid "View eQSL Cards" msgstr "Ver cartões eQSL" -#: application/views/interface_assets/header.php:119 +#: application/views/interface_assets/header.php:113 +msgid "View last confirmations" +msgstr "" + +#: application/views/interface_assets/header.php:121 msgid "Live QSO" msgstr "Contactos em direto" -#: application/views/interface_assets/header.php:121 +#: application/views/interface_assets/header.php:123 msgid "Post QSO" msgstr "Enviar contacto" -#: application/views/interface_assets/header.php:123 +#: application/views/interface_assets/header.php:125 msgid "Simple Fast Log Entry" msgstr "Entrada de log simples e rápida" -#: application/views/interface_assets/header.php:126 +#: application/views/interface_assets/header.php:128 msgid "Live Contest Logging" msgstr "Log de concurso em direto" -#: application/views/interface_assets/header.php:128 +#: application/views/interface_assets/header.php:130 msgid "Post Contest Logging" msgstr "Enviar log do concurso" -#: application/views/interface_assets/header.php:138 +#: application/views/interface_assets/header.php:140 msgid "Analytics" msgstr "Estatísticas" -#: application/views/interface_assets/header.php:148 +#: application/views/interface_assets/header.php:150 msgid "Activated Gridsquares" msgstr "Quadrículas Ativadas" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "Callsign Statistics" msgstr "Estatísticas de indicativos de chamada" -#: application/views/interface_assets/header.php:174 +#: application/views/interface_assets/header.php:176 msgid "International" msgstr "Internacional" -#: application/views/interface_assets/header.php:176 +#: application/views/interface_assets/header.php:178 msgid "CQ WAZ" msgstr "CQ WAZ" -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:182 msgid "ITU" msgstr "UIT" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:188 msgid "Worked All Europe (WAE)" msgstr "Worked All Europe (WAE)" -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:212 msgid "Canada" msgstr "Canadá" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:218 msgid "Germany" msgstr "Alemanha" -#: application/views/interface_assets/header.php:220 +#: application/views/interface_assets/header.php:222 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:224 +#: application/views/interface_assets/header.php:226 msgid "Great Britain" msgstr "Grã-Bretanha" -#: application/views/interface_assets/header.php:226 +#: application/views/interface_assets/header.php:228 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:230 +#: application/views/interface_assets/header.php:232 msgid "Japan" msgstr "Japão" -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:238 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:240 +#: application/views/interface_assets/header.php:242 msgid "Luxemburg" msgstr "Luxemburgo" -#: application/views/interface_assets/header.php:242 +#: application/views/interface_assets/header.php:244 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:246 +#: application/views/interface_assets/header.php:248 msgid "Switzerland" msgstr "Suíça" -#: application/views/interface_assets/header.php:252 +#: application/views/interface_assets/header.php:254 msgid "The Netherlands" msgstr "Os Países Baixos" -#: application/views/interface_assets/header.php:254 +#: application/views/interface_assets/header.php:256 msgid "WAP Worked All Provinces" msgstr "WAP Contactar Todas as Províncias" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:260 msgid "USA" msgstr "EUA" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:266 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:281 +#: application/views/interface_assets/header.php:283 msgid "Bandmap" msgstr "Mapa de Bandas" -#: application/views/interface_assets/header.php:283 +#: application/views/interface_assets/header.php:285 msgid "SAT Timers" msgstr "Tempos satélite" -#: application/views/interface_assets/header.php:285 +#: application/views/interface_assets/header.php:287 msgid "Satellite Flightpath" msgstr "Trajectória de Satélite" -#: application/views/interface_assets/header.php:287 +#: application/views/interface_assets/header.php:289 msgid "Satellite Pass" msgstr "Passagem de Satélite" -#: application/views/interface_assets/header.php:293 +#: application/views/interface_assets/header.php:295 #: application/views/stationsetup/stationsetup.php:116 msgid "Admin" msgstr "Administrador" -#: application/views/interface_assets/header.php:298 +#: application/views/interface_assets/header.php:300 msgid "Global Options" msgstr "Opções Globais" -#: application/views/interface_assets/header.php:304 +#: application/views/interface_assets/header.php:306 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:40 #: application/views/statistics/index.php:50 @@ -9408,129 +9428,129 @@ msgstr "Opções Globais" msgid "Satellites" msgstr "Satélites" -#: application/views/interface_assets/header.php:310 +#: application/views/interface_assets/header.php:312 msgid "Update Country Files" msgstr "Atualizar ficheiros de países" -#: application/views/interface_assets/header.php:314 +#: application/views/interface_assets/header.php:316 msgid "Debug Information" msgstr "Informações de debug" -#: application/views/interface_assets/header.php:361 +#: application/views/interface_assets/header.php:363 msgid "Add/Search Callsign" msgstr "Adicionar/Pesquisar Indicativo" -#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:365 msgid "Log" msgstr "Log" -#: application/views/interface_assets/header.php:370 +#: application/views/interface_assets/header.php:372 #: application/views/logbookadvanced/index.php:568 #: application/views/oqrs/index.php:27 application/views/user/edit.php:470 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Pesquisar Indicativo" -#: application/views/interface_assets/header.php:397 +#: application/views/interface_assets/header.php:399 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" msgstr "Op: %s" -#: application/views/interface_assets/header.php:408 +#: application/views/interface_assets/header.php:410 #: application/views/user/edit.php:53 msgid "Account" msgstr "Conta" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:423 msgid "Switch to Clubstation:" msgstr "Mudar para estação do clube:" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:427 #, php-format msgid "Switch to %s" msgstr "Mudar para %s" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:431 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" msgstr "Gerir %s" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:440 msgid "No Clubstations available" msgstr "Nenhuma estação do clube disponível" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:448 msgid "Other Export Options" msgstr "Outras opções de exportação" -#: application/views/interface_assets/header.php:454 +#: application/views/interface_assets/header.php:456 msgid "Cabrillo Export" msgstr "Exportação Cabrillo" -#: application/views/interface_assets/header.php:456 +#: application/views/interface_assets/header.php:458 msgid "EDI Export" msgstr "Exportação EDI" -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:482 msgid "QSL Queue" msgstr "Fila de QSLs" -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "Labels" msgstr "Etiquetas" -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "Third-Party Services" msgstr "Serviços de terceiros" -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:488 msgid "eQSL Import / Export" msgstr "Importação / Exportação de eQSL" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "HRDLog Logbook" msgstr "Logbook HRDLog" -#: application/views/interface_assets/header.php:490 +#: application/views/interface_assets/header.php:492 msgid "Clublog Import / Export" msgstr "Importação / Exportação do Clublog" -#: application/views/interface_assets/header.php:501 +#: application/views/interface_assets/header.php:503 #: application/views/logbookadvanced/index.php:675 msgid "Help" msgstr "Ajuda" -#: application/views/interface_assets/header.php:502 +#: application/views/interface_assets/header.php:504 msgid "Forum" msgstr "Fórum" -#: application/views/interface_assets/header.php:506 +#: application/views/interface_assets/header.php:508 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Parar a representação e voltar a mudar para %s" -#: application/views/interface_assets/header.php:507 +#: application/views/interface_assets/header.php:509 #, php-format msgid "Switch back to %s" msgstr "Mudar de volta para %s" -#: application/views/interface_assets/header.php:511 +#: application/views/interface_assets/header.php:513 msgid "Logout" msgstr "Terminar sessão" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Select a Location" msgstr "Selecionar uma localização" -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:563 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Faltam localizações de estações aqui? Vai a stationsetup e adiciona aos " "favoritos" -#: application/views/interface_assets/header.php:598 +#: application/views/interface_assets/header.php:600 msgid "Extras" msgstr "Extras" @@ -10535,7 +10555,7 @@ msgid "Default on" msgstr "Predefinição ligada" #: application/views/lookup/index.php:11 -#: application/views/qso/award_tabs.php:45 +#: application/views/qso/award_tabs.php:53 msgid "US State" msgstr "Estado dos EUA" @@ -11603,6 +11623,33 @@ msgstr "Marcar contactos como exportados para o Logbook QRZ.com" msgid "The QSOs are marked as exported to QRZ Logbook." msgstr "Os contactos são marcados como exportados para o Logbook QRZ.com ." +#: application/views/qslcard/confirmationresult.php:16 +msgid "QSO date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:19 +msgid "Confirmation date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:20 +#: application/views/user/index.php:30 +msgid "Type" +msgstr "Tipo" + +#: application/views/qslcard/confirmationresult.php:52 +msgid "No confirmations found." +msgstr "" + +#: application/views/qslcard/confirmations.php:6 +msgid "" +"A maximum of 1000 rows are shown in the table. This is for performance " +"reasons." +msgstr "" + +#: application/views/qslcard/confirmations.php:11 +msgid "Confirmation type" +msgstr "" + #: application/views/qslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store QSL Card assets" @@ -11611,11 +11658,11 @@ msgstr "" #: application/views/qslcard/index.php:17 msgid "List View" -msgstr "" +msgstr "Vista de Lista" #: application/views/qslcard/index.php:18 msgid "Gallery View" -msgstr "" +msgstr "Vista da Galeria" #: application/views/qslcard/index.php:78 #: application/views/qslcard/index.php:126 @@ -11771,47 +11818,63 @@ msgid "Showing summary for IOTA" msgstr "Resumo de exibição para IOTA" #: application/views/qso/award_tabs.php:9 +msgid "Showing summary for DOK" +msgstr "Mostrar resumo para DOK" + +#: application/views/qso/award_tabs.php:10 +msgid "Showing summary for satellite QSOs with" +msgstr "A mostrar resumo para QSOs via satélite com" + +#: application/views/qso/award_tabs.php:11 msgid "Showing summary for continent" msgstr "Resumo de exibição para continentes" -#: application/views/qso/award_tabs.php:10 +#: application/views/qso/award_tabs.php:12 msgid "Showing summary for gridsquare" msgstr "Resumo de exibição para QTH locators" -#: application/views/qso/award_tabs.php:11 +#: application/views/qso/award_tabs.php:13 msgid "State input needs to be filled to show a summary!" msgstr "O campo de estado precisa ser preenchido para mostrar um resumo!" -#: application/views/qso/award_tabs.php:12 +#: application/views/qso/award_tabs.php:14 msgid "SOTA input needs to be filled to show a summary!" msgstr "A entrada SOTA precisa ser preenchida para mostrar um resumo!" -#: application/views/qso/award_tabs.php:13 +#: application/views/qso/award_tabs.php:15 msgid "POTA input needs to be filled to show a summary!" msgstr "É necessário preencher a entrada POTA para mostrar um resumo!" -#: application/views/qso/award_tabs.php:14 +#: application/views/qso/award_tabs.php:16 msgid "IOTA input needs to be filled to show a summary!" msgstr "A entrada IOTA precisa ser preenchida para mostrar um resumo!" -#: application/views/qso/award_tabs.php:15 +#: application/views/qso/award_tabs.php:17 +msgid "DOK input needs to be filled to show a summary!" +msgstr "A entrada DOK precisa ser preenchida para mostrar um resumo!" + +#: application/views/qso/award_tabs.php:18 msgid "WWFF input needs to be filled to show a summary!" msgstr "A entrada WWFF precisa ser preenchida para mostrar um resumo!" -#: application/views/qso/award_tabs.php:16 +#: application/views/qso/award_tabs.php:19 +msgid "Propagation mode needs to be 'SAT' to show a summary!" +msgstr "O modo de propagação precisa ser 'SAT' para mostrar um resumo!" + +#: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" msgstr "" "A entrada do QTH Locator precisa ser preenchida para mostrar um resumo!" -#: application/views/qso/award_tabs.php:17 +#: application/views/qso/award_tabs.php:21 msgid "Summary only shows for the first POTA entered." msgstr "Apenas o resumo do primeiro POTA inserido é exibido." -#: application/views/qso/award_tabs.php:18 +#: application/views/qso/award_tabs.php:22 msgid "Summary only shows for the first gridsquare entered." msgstr "Apenas o resumo do primeiro QTH Locator inserido é exibido." -#: application/views/qso/award_tabs.php:19 +#: application/views/qso/award_tabs.php:23 msgid "Summary only shows for US states." msgstr "O resumo só aparece para os estados dos EUA." @@ -12062,7 +12125,7 @@ msgstr "ENVIAR" #: application/views/qso/index.php:40 #: application/views/statistics/antennaanalytics.php:45 -#: application/views/statistics/antennaanalytics.php:88 +#: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satélite" @@ -13694,11 +13757,11 @@ msgstr "Criar uma localização de estação" #: application/views/stationsetup/stationsetup.php:104 msgid "Show all locations" -msgstr "" +msgstr "Mostrar todas as localizações" #: application/views/stationsetup/stationsetup.php:104 msgid "Show only locations from the active logbook" -msgstr "" +msgstr "Mostre apenas locais do logbook activo" #: application/views/stationsetup/stationsetup.php:108 msgid "" @@ -13726,7 +13789,7 @@ msgstr "Por favor, reatribua-os em " #: application/views/stationsetup/stationsetup.php:129 msgid "Last QSO" -msgstr "" +msgstr "Último QSO" #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" @@ -14710,10 +14773,6 @@ msgstr "" msgid "Create user" msgstr "Criar utilizador" -#: application/views/user/index.php:30 -msgid "Type" -msgstr "Tipo" - #: application/views/user/index.php:31 application/views/user/index.php:158 msgid "Last seen" msgstr "Visto pela última vez" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index 8b153bd1b..0cf7162f7 100644 Binary files a/application/locale/ru_RU/LC_MESSAGES/messages.mo and b/application/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 11c2509df..ced3f8459 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -7,12 +7,13 @@ # "Francisco (F4VSE)" , 2024. # Pascal HB9HCG , 2025. # Alexey Khromov , 2025. +# Aleksey Ubozhenko R3DHX , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-07-02 15:54+0000\n" -"PO-Revision-Date: 2025-06-25 15:34+0000\n" -"Last-Translator: Michael Skolsky \n" +"POT-Creation-Date: 2025-07-06 15:33+0000\n" +"PO-Revision-Date: 2025-07-04 06:44+0000\n" +"Last-Translator: Aleksey Ubozhenko R3DHX \n" "Language-Team: Russian \n" "Language: ru_RU\n" @@ -21,7 +22,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.11\n" +"X-Generator: Weblate 5.12.2\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -77,8 +78,8 @@ msgstr "" #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:136 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 #: application/controllers/Qrz.php:285 application/controllers/Qsl.php:12 -#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 -#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:24 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:72 +#: application/controllers/Qsl.php:80 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 #: application/controllers/Qso.php:287 application/controllers/Qso.php:308 @@ -129,7 +130,7 @@ msgid "You're not allowed to do that!" msgstr "Вам нельзя это делать!" #: application/controllers/Accumulated.php:19 -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "Accumulated Statistics" msgstr "Накопленная статистика" @@ -192,7 +193,7 @@ msgstr "Всего полей сработано" #: application/controllers/Activators.php:20 #: application/views/activators/index.php:5 -#: application/views/interface_assets/header.php:150 +#: application/views/interface_assets/header.php:152 msgid "Gridsquare Activators" msgstr "Активаторы квадратов" @@ -210,7 +211,7 @@ msgid "date incorrect" msgstr "дата неверна" #: application/controllers/Adif.php:134 -#: application/views/interface_assets/header.php:444 +#: application/views/interface_assets/header.php:446 msgid "ADIF Import / Export" msgstr "Импорт / Экспорт ADIF" @@ -284,7 +285,7 @@ msgid "API Key %s has been deleted" msgstr "Ключ API %s удалён" #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:172 +#: application/views/interface_assets/header.php:174 #: application/views/qso/edit_ajax.php:36 msgid "Awards" msgstr "Дипломы" @@ -316,12 +317,13 @@ msgstr "Дипломы - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:48 -#: application/views/contesting/index.php:58 -#: application/views/interface_assets/header.php:218 +#: application/views/contesting/index.php:59 +#: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/index.php:348 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:14 +#: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:276 #: application/views/qso/index.php:567 application/views/user/edit.php:671 #: application/views/view_log/qso.php:460 @@ -332,7 +334,7 @@ msgstr "DOK" #: application/views/bandmap/list.php:122 application/views/bands/index.php:49 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:178 +#: application/views/interface_assets/header.php:180 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:9 #: application/views/logbookadvanced/index.php:224 @@ -341,7 +343,7 @@ msgstr "DOK" #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 -#: application/views/qso/award_tabs.php:25 +#: application/views/qso/award_tabs.php:29 #: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:375 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 @@ -357,12 +359,12 @@ msgid "Awards - WAJA" msgstr "Дипломы — WAJA" #: application/controllers/Awards.php:332 application/views/bands/index.php:52 -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:236 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:380 application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:184 +#: application/views/interface_assets/header.php:186 msgid "VUCC" msgstr "VUCC" @@ -373,7 +375,7 @@ msgstr "Журнал — VUCC" #: application/controllers/Awards.php:458 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:86 -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 #: application/controllers/Timeline.php:126 #: application/controllers/Timeline.php:129 #: application/controllers/Timeline.php:132 @@ -389,9 +391,8 @@ msgid " and band " msgstr " и диапазон " #: application/controllers/Awards.php:462 -#: application/controllers/Callstats.php:104 -msgid " and sat " -msgstr " и спутник " +msgid " and satellite " +msgstr "" #: application/controllers/Awards.php:465 #: application/controllers/Callstats.php:107 @@ -417,7 +418,7 @@ msgstr " и " #: application/controllers/Logbook.php:1290 #: application/views/awards/index.php:8 application/views/bands/index.php:56 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:204 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/index.php:352 #: application/views/logbookadvanced/useroptions.php:126 @@ -427,7 +428,7 @@ msgstr " и " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/award_tabs.php:53 +#: application/views/qso/award_tabs.php:61 #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:376 #: application/views/search/search_result_ajax.php:9 @@ -444,12 +445,12 @@ msgstr "SOTA" #: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:62 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:190 +#: application/views/interface_assets/header.php:192 #: application/views/logbookadvanced/edit.php:22 #: application/views/logbookadvanced/index.php:372 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:12 -#: application/views/qso/award_tabs.php:57 +#: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:386 #: application/views/search/search_result_ajax.php:10 @@ -465,12 +466,12 @@ msgstr "WWFF" #: application/controllers/Logbook.php:1292 #: application/views/bands/index.php:53 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:208 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:356 #: application/views/logbookadvanced/index.php:764 #: application/views/logbookadvanced/useroptions.php:122 -#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:49 +#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:382 #: application/views/search/search_result_ajax.php:11 @@ -493,7 +494,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:720 application/views/bands/index.php:54 -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:214 msgid "RAC" msgstr "RAC" @@ -507,7 +508,7 @@ msgstr "IOTA (Island On The Air)" #: application/controllers/Awards.php:876 #: application/controllers/Awards.php:890 -#: application/views/interface_assets/header.php:260 +#: application/views/interface_assets/header.php:262 msgid "US Counties" msgstr "US Counties" @@ -539,7 +540,7 @@ msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1149 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:260 #: application/views/qso/index.php:553 application/views/user/edit.php:667 @@ -563,7 +564,7 @@ msgstr "Зоны ITU" #: application/controllers/Awards.php:2042 #: application/views/awards/wac/index.php:8 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:190 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" @@ -572,12 +573,12 @@ msgid "WAE" msgstr "WAE" #: application/controllers/Awards.php:2132 -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:198 msgid "73 on 73" msgstr "73 on 73" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:308 +#: application/views/interface_assets/header.php:310 msgid "Backup" msgstr "Резервное копирование" @@ -591,7 +592,7 @@ msgstr "Резервное копирование заметок" #: application/controllers/Band.php:25 application/views/bands/index.php:29 #: application/views/bands/index.php:33 -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:417 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:67 msgid "Bands" @@ -643,8 +644,12 @@ msgstr "Данные CBR импортированы" msgid "Callsign statistics" msgstr "Статистика по позывным" +#: application/controllers/Callstats.php:104 +msgid " and sat " +msgstr " и спутник " + #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:458 +#: application/views/interface_assets/header.php:460 msgid "CFD Export" msgstr "Экспорт CDF" @@ -752,7 +757,7 @@ msgid "Clublog QSL Import" msgstr "Импорт QSL из Clublog" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:277 +#: application/views/interface_assets/header.php:279 msgid "Contest Calendar" msgstr "Календарь контестов" @@ -761,12 +766,12 @@ msgid "Contestcalendar not reachable. Try again later" msgstr "Календарь контестов недоступен. Попробуйте позже" #: application/controllers/Contesting.php:52 -#: application/views/contesting/index.php:7 +#: application/views/contesting/index.php:8 msgid "Contest Logging" msgstr "Журнал контеста" #: application/controllers/Contesting.php:123 -#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:304 msgid "Contests" msgstr "Контесты" @@ -777,12 +782,12 @@ msgstr "Обновить контест" #: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:83 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 msgid "Continents" msgstr "Континенты" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:312 +#: application/views/interface_assets/header.php:314 msgid "Cron Manager" msgstr "Диспетчер задач" @@ -849,7 +854,7 @@ msgid "Not running" msgstr "Не работает" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:452 +#: application/views/interface_assets/header.php:454 msgid "SOTA CSV Export" msgstr "Экспорт SOTA в CSV" @@ -860,7 +865,7 @@ msgstr "Панель управления" #: application/controllers/Dayswithqso.php:17 #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:156 +#: application/views/interface_assets/header.php:158 msgid "Days with QSOs" msgstr "Дней с QSO" @@ -909,14 +914,14 @@ msgstr "" #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Satellite Distance Records" msgstr "Рекорды расстояний QSO через спутники" #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 msgid "Distances Worked" msgstr "Сработанные дистанции" @@ -934,12 +939,12 @@ msgid "and propagation" msgstr "и тип прохождения" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:450 +#: application/views/interface_assets/header.php:452 msgid "DX Atlas Gridsquare Export" msgstr "Экспорт квадратов DX Atlas" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:275 +#: application/views/interface_assets/header.php:277 msgid "DX Calendar" msgstr "Календарь DX экспедиций" @@ -996,7 +1001,7 @@ msgid "eQSL Card Image Download" msgstr "скачать изображения eQSL" #: application/controllers/Gridmap.php:10 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Gridsquare Map" msgstr "Карта квадратов" @@ -1022,7 +1027,7 @@ msgid "No QSOs found to upload." msgstr "Не найдены QSO для загрузки." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:448 +#: application/views/interface_assets/header.php:450 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Экспорт KML" @@ -1305,8 +1310,8 @@ msgstr "eQSL" #: application/views/awards/was/index.php:87 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:114 +#: application/views/contesting/index.php:260 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:587 @@ -1328,6 +1333,7 @@ msgstr "eQSL" #: application/views/oqrs/request_grouped.php:11 #: application/views/oqrs/showrequests.php:84 #: application/views/public_search/result.php:15 +#: application/views/qslcard/confirmationresult.php:17 #: application/views/qslcard/index.php:40 #: application/views/qslcard/searchresult.php:12 #: application/views/qslcard/searchresult.php:28 @@ -1365,8 +1371,8 @@ msgstr "Вид модуляции" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:174 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:701 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1393,8 +1399,8 @@ msgstr "RST (TX)" #: application/views/awards/73on73/index.php:36 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:198 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:199 +#: application/views/contesting/index.php:262 #: application/views/logbookadvanced/index.php:704 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1442,7 +1448,7 @@ msgstr "Страна" #: application/controllers/Logbook.php:1289 #: application/views/awards/iota/index.php:195 #: application/views/bands/index.php:51 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:204 +#: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:360 #: application/views/logbookadvanced/index.php:761 @@ -1454,7 +1460,7 @@ msgstr "Страна" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/award_tabs.php:41 +#: application/views/qso/award_tabs.php:49 #: application/views/qso/components/previous_contacts.php:81 #: application/views/qso/edit_ajax.php:367 #: application/views/search/search_result_ajax.php:8 @@ -1472,7 +1478,7 @@ msgstr "IOTA" #: application/views/awards/counties/index.php:20 #: application/views/awards/rac/index.php:143 #: application/views/awards/was/index.php:151 -#: application/views/contesting/index.php:61 +#: application/views/contesting/index.php:62 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/edit.php:78 @@ -1500,8 +1506,8 @@ msgstr "Область/штат" #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 -#: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:267 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1517,7 +1523,7 @@ msgstr "Область/штат" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/award_tabs.php:37 +#: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:291 #: application/views/satellite/pass.php:46 @@ -1582,7 +1588,7 @@ msgstr "Дистанция" #: application/views/awards/pota/index.php:35 #: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 -#: application/views/awards/sota/index.php:26 +#: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 #: application/views/awards/wac/index.php:63 @@ -1594,8 +1600,8 @@ msgstr "Дистанция" #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:95 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:46 application/views/callstats/index.php:7 -#: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:127 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:588 application/views/dxatlas/index.php:31 @@ -1612,6 +1618,7 @@ msgstr "Дистанция" #: application/views/oqrs/request_grouped.php:10 #: application/views/oqrs/showrequests.php:83 #: application/views/public_search/result.php:16 +#: application/views/qslcard/confirmationresult.php:18 #: application/views/qslcard/index.php:43 #: application/views/qslcard/searchresult.php:21 #: application/views/qslcard/searchresult.php:37 @@ -1648,7 +1655,7 @@ msgstr "Диапазон" #: application/controllers/Logbook.php:1297 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:120 -#: application/views/contesting/index.php:143 +#: application/views/contesting/index.php:144 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:710 #: application/views/logbookadvanced/useroptions.php:50 @@ -1730,7 +1737,7 @@ msgstr "Быстрый поиск" #: application/controllers/Lotw.php:53 application/controllers/Lotw.php:85 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 #: 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:773 application/views/visitor/index.php:328 @@ -1808,8 +1815,8 @@ msgid "LoTW .TQ8 Not Sent" msgstr "LoTW. TQ8 не загружен" #: application/controllers/Mode.php:25 application/controllers/Usermode.php:23 -#: application/views/interface_assets/header.php:300 -#: application/views/interface_assets/header.php:416 +#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:418 #: application/views/mode/index.php:27 application/views/usermode/index.php:25 msgid "Modes" msgstr "Виды модуляции" @@ -1819,7 +1826,7 @@ msgid "Edit Mode" msgstr "Редактировать" #: application/controllers/Notes.php:18 -#: application/views/interface_assets/header.php:134 +#: application/views/interface_assets/header.php:136 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 @@ -2000,7 +2007,7 @@ msgid "Invalid Station ID" msgstr "Недействительный идентификатор станции" #: application/controllers/Oqrs.php:134 -#: application/views/interface_assets/header.php:475 +#: application/views/interface_assets/header.php:477 msgid "OQRS Requests" msgstr "Запросы OQRS" @@ -2052,7 +2059,7 @@ msgstr "" "западу от Гринвича." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:490 msgid "QRZ Logbook" msgstr "Журнал QRZ" @@ -2071,7 +2078,11 @@ msgstr "QRZ. Информация ADIF" msgid "QSL Cards" msgstr "QSL карточки" -#: application/controllers/Qsl.php:35 +#: application/controllers/Qsl.php:41 +msgid "Confirmations" +msgstr "" + +#: application/controllers/Qsl.php:63 msgid "Upload QSL Cards" msgstr "Загрузка QSL карточек" @@ -2100,13 +2111,13 @@ msgid "No callsign provided." msgstr "Позывной не указан." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:498 +#: application/views/interface_assets/header.php:500 msgid "Hardware Interfaces" msgstr "Интерфейсы радиостанций" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 -#: application/views/contesting/index.php:152 +#: application/views/contesting/index.php:153 #: application/views/qso/index.php:324 msgid "Radio" msgstr "Радио" @@ -2134,7 +2145,7 @@ msgid "UNKNOWN" msgstr "НЕИЗВЕСТНО" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:156 +#: application/views/contesting/index.php:157 #: application/views/qso/index.php:328 msgid "last updated" msgstr "последнее обновление" @@ -2265,8 +2276,8 @@ msgstr "Спутниковые таймеры" #: application/controllers/Search.php:17 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:40 -#: application/views/interface_assets/header.php:364 -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:366 +#: application/views/interface_assets/header.php:373 #: application/views/logbookadvanced/index.php:641 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 @@ -2366,8 +2377,8 @@ msgid "Please check value for grid locator (%s)" msgstr "Пожалуйста, проверьте значение QTH локатора (%s)" #: application/controllers/Stationsetup.php:60 -#: application/views/interface_assets/header.php:413 -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:563 msgid "Station Setup" msgstr "Настройка станции" @@ -2434,7 +2445,7 @@ msgid "Set as Active Logbook" msgstr "Установить как активный" #: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:559 +#: application/views/interface_assets/header.php:561 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -2475,7 +2486,7 @@ msgid "Active Station" msgstr "Активный профиль QTH" #: application/controllers/Stationsetup.php:396 -#: application/views/interface_assets/header.php:117 +#: application/views/interface_assets/header.php:119 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:27 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:166 @@ -2525,33 +2536,33 @@ msgid "Edit Export Map options" msgstr "Редактировать настройка экспорта карты" #: application/controllers/Statistics.php:26 -#: application/views/interface_assets/header.php:140 +#: application/views/interface_assets/header.php:142 msgid "Statistics" msgstr "Статистика" #: application/controllers/Statistics.php:238 -#: application/views/interface_assets/header.php:144 +#: application/views/interface_assets/header.php:146 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "Статистика QSL" #: application/controllers/Statistics.php:253 -#: application/views/interface_assets/header.php:142 +#: application/views/interface_assets/header.php:144 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" msgstr "Аналитика антенн" -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 msgid "Satellite QSOs" msgstr "QSO через спутник" -#: application/controllers/Statistics.php:321 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Statistics.php:322 +#: application/views/interface_assets/header.php:170 msgid "EME Initials" msgstr "Первые EME контакты" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:306 +#: application/views/interface_assets/header.php:308 msgid "Themes" msgstr "Темы оформления" @@ -2564,13 +2575,13 @@ msgid "Edit Theme" msgstr "Редактировать тему" #: application/controllers/Timeline.php:15 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Лента событий" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Графики" @@ -2676,7 +2687,7 @@ msgid "Update of Hams of Note" msgstr "Обновить \"Заметки о корреспондентах\"" #: application/controllers/User.php:50 -#: application/views/interface_assets/header.php:296 +#: application/views/interface_assets/header.php:298 msgid "User Accounts" msgstr "Аккаунты пользователей" @@ -2760,7 +2771,7 @@ msgid "Login failed. Try again." msgstr "Вход не выполнен. Попробуйте снова." #: application/controllers/User.php:1073 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:386 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" @@ -2961,7 +2972,7 @@ msgstr "Экспорт карты" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:489 +#: application/views/interface_assets/header.php:491 msgid "QO-100 Dx Club Upload" msgstr "Загрузка в QO-100 Dx Club" @@ -3140,34 +3151,34 @@ msgstr "HRDlog: на найдены QSO для загруки для позыв msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: не найдены профили QTH с данными входя на HRDlog." -#: application/models/Logbook_model.php:1245 +#: application/models/Logbook_model.php:1250 msgid "Station ID not allowed" msgstr "Недопустимый ID станции" -#: application/models/Logbook_model.php:1250 +#: application/models/Logbook_model.php:1255 msgid "No Call given" msgstr "Не указан позывной" -#: application/models/Logbook_model.php:1320 -#: application/models/Logbook_model.php:1494 +#: application/models/Logbook_model.php:1325 +#: application/models/Logbook_model.php:1499 msgid "DXCC has to be Numeric" msgstr "DXCC должен быть цифровым" -#: application/models/Logbook_model.php:3944 +#: application/models/Logbook_model.php:3949 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Неправильный позывной %s при импорте QSO с %s для %s: ПРОПУЩЕНО" -#: application/models/Logbook_model.php:3945 +#: application/models/Logbook_model.php:3950 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Проверьте %s на наличие подсказок об ошибках в файлах ADIF." -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "QSO on" msgstr "начало QSO" -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3175,63 +3186,63 @@ msgstr "" "Вы пытались импортировать QSO без указанного позывного. Это QSO не было " "импортировано. Оно недействительно" -#: application/models/Logbook_model.php:4256 +#: application/models/Logbook_model.php:4261 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "дата получения QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4267 +#: application/models/Logbook_model.php:4272 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "дата отправки QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4328 +#: application/models/Logbook_model.php:4333 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "дата загрузки QSO в Clublog недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4348 +#: application/models/Logbook_model.php:4353 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "дата получения LoTW QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4369 +#: application/models/Logbook_model.php:4374 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "дата отправки LoTW QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4661 +#: application/models/Logbook_model.php:4666 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Дубликат для" -#: application/models/Logbook_model.php:4722 +#: application/models/Logbook_model.php:4727 msgid "QSO could not be matched" msgstr "QSO не может быть сопоставлено" -#: application/models/Logbook_model.php:4728 +#: application/models/Logbook_model.php:4733 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "подтверждено LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4733 +#: application/models/Logbook_model.php:4738 msgid "confirmed by award manager" msgstr "подтверждено менеджером диплома" -#: application/models/Logbook_model.php:4736 +#: application/models/Logbook_model.php:4741 msgid "confirmed by cross-check of DCL data" msgstr "подтверждено кросс-проверкой с данными DCL" -#: application/models/Logbook_model.php:4739 +#: application/models/Logbook_model.php:4744 msgid "confirmation pending" msgstr "подтверждение ожидается" -#: application/models/Logbook_model.php:4742 +#: application/models/Logbook_model.php:4747 msgid "unconfirmed" msgstr "не подтверждено" -#: application/models/Logbook_model.php:4745 +#: application/models/Logbook_model.php:4750 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "неизвестно" -#: application/models/Logbook_model.php:5583 +#: application/models/Logbook_model.php:5588 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3447,9 +3458,7 @@ msgstr "Разница" #: application/views/statistics/antennaanalytics.php:22 #: application/views/statistics/antennaanalytics.php:34 #: application/views/statistics/antennaanalytics.php:48 -#: application/views/statistics/antennaanalytics.php:63 -#: application/views/statistics/antennaanalytics.php:91 -#: application/views/statistics/antennaanalytics.php:104 +#: application/views/statistics/antennaanalytics.php:88 #: application/views/statistics/initials.php:20 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 @@ -3797,9 +3806,10 @@ msgstr "Тропосферное прохождение" #: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:94 +#: application/views/qslcard/confirmations.php:21 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/statistics/antennaanalytics.php:77 -#: application/views/statistics/antennaanalytics.php:116 +#: application/views/statistics/antennaanalytics.php:74 +#: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 #: application/views/timeline/index.php:219 @@ -3822,9 +3832,10 @@ msgstr "Показать" #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 -#: application/views/interface_assets/header.php:194 +#: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/edit.php:19 #: application/views/logbookadvanced/index.php:275 +#: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 #: application/views/satellite/passtable.php:6 @@ -3849,7 +3860,7 @@ msgstr "Спутник" #: application/views/satellite/index.php:54 #: application/views/satellite/satinfo.php:12 #: application/views/statistics/antennaanalytics.php:60 -#: application/views/statistics/antennaanalytics.php:101 +#: application/views/statistics/antennaanalytics.php:98 msgid "Orbit" msgstr "Орбита" @@ -3929,7 +3940,7 @@ msgstr "Минимальное количество" #: application/views/awards/pota/index.php:67 #: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 -#: application/views/awards/sota/index.php:51 +#: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 #: application/views/awards/wac/index.php:199 @@ -3952,13 +3963,13 @@ msgstr "Не найдено!" #: application/views/awards/73on73/index.php:34 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 -#: application/views/awards/sota/index.php:25 +#: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:148 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:166 #: application/views/csv/index.php:23 application/views/dashboard/index.php:226 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3968,6 +3979,7 @@ msgstr "Не найдено!" #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/confirmationresult.php:15 #: application/views/qslcard/index.php:39 #: application/views/qslcard/searchform.php:3 #: application/views/qslprint/index.php:24 @@ -4054,11 +4066,12 @@ msgstr "Данные DOK в вашем логе отличаются от DCL" #: application/views/adif/dcl_success.php:29 #: application/views/awards/73on73/index.php:32 #: application/views/awards/pota/index.php:32 +#: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:99 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:221 #: application/views/debug/index.php:584 #: application/views/distancerecords/index.php:16 @@ -4098,11 +4111,12 @@ msgstr "Дата" #: application/views/adif/dcl_success.php:30 #: application/views/awards/73on73/index.php:33 #: application/views/awards/pota/index.php:33 +#: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:104 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:224 #: application/views/debug/index.php:585 #: application/views/distancerecords/index.php:17 @@ -4130,7 +4144,7 @@ msgstr "Время" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:121 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:258 #: application/views/debug/index.php:586 application/views/debug/index.php:621 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -4216,6 +4230,8 @@ msgid "" "Type in the operators callsign of the imported QSOs. Leave empty to use the " "operator callsign in the ADIF file." msgstr "" +"Введите позывной оператора для импортируемых QSO. Оставьте пустым, чтобы " +"использовать позывной оператора из файла ADIF." #: application/views/adif/import.php:85 msgid "Add QSOs to Contest" @@ -4612,7 +4628,7 @@ msgid "Save" msgstr "Сохранить" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:497 +#: application/views/interface_assets/header.php:499 msgid "API Keys" msgstr "ключи API" @@ -5182,7 +5198,7 @@ msgstr "Всего сработано" #: application/views/awards/wap/index.php:190 #: application/views/awards/was/index.php:190 msgid "Total confirmed" -msgstr "Всего пожтверждено" +msgstr "Всего подтверждено" #: application/views/awards/dok/index.php:7 msgid "DOK Award" @@ -5418,7 +5434,7 @@ msgid "Prefix" msgstr "Префикс" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:266 +#: application/views/interface_assets/header.php:268 msgid "Fred Fish Memorial Award" msgstr "Fred Fish Memorial Award" @@ -5559,7 +5575,7 @@ msgid "Canton" msgstr "Кантон" #: application/views/awards/index.php:9 application/views/bands/index.php:47 -#: application/views/qso/award_tabs.php:29 +#: application/views/qso/award_tabs.php:33 msgid "CQ" msgstr "CQ" @@ -5624,8 +5640,8 @@ msgstr "Показать карту IOTA" #: application/views/awards/iota/index.php:197 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:223 +#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:224 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:716 @@ -5858,12 +5874,11 @@ msgid "Number of Refs" msgstr "Количество референций" #: application/views/awards/sig/qso_list.php:9 -#: application/views/awards/sota/index.php:23 +#: application/views/awards/sota/index.php:30 msgid "Reference" msgstr "Референция" #: application/views/awards/sig/qso_list.php:10 -#: application/views/awards/sota/index.php:24 #: application/views/logbookadvanced/index.php:689 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 @@ -5875,12 +5890,12 @@ msgid "Date/Time" msgstr "Дата/Время" #: application/views/awards/sig/qso_list.php:14 -#: application/views/awards/sota/index.php:27 +#: application/views/awards/sota/index.php:35 msgid "RST Sent" msgstr "RST (TX)" #: application/views/awards/sig/qso_list.php:15 -#: application/views/awards/sota/index.php:28 +#: application/views/awards/sota/index.php:36 msgid "RST Received" msgstr "RST (RX)" @@ -5998,7 +6013,7 @@ msgstr "Дипломы - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:386 #: application/views/logbookadvanced/index.php:797 #: application/views/logbookadvanced/useroptions.php:166 -#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:33 +#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:395 #: application/views/view_log/qso.php:342 msgid "Continent" @@ -6273,9 +6288,9 @@ msgid "BandList" msgstr "Список активности на диапазоне" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:69 -#: application/views/contesting/index.php:19 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:154 +#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:58 +#: application/views/contesting/index.php:155 #: application/views/qso/index.php:326 msgid "None" msgstr "Нет" @@ -6386,12 +6401,12 @@ msgid "USA County" msgstr "Округ США" #: application/views/bands/index.php:60 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:234 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:61 -#: application/views/interface_assets/header.php:262 +#: application/views/interface_assets/header.php:264 msgid "WAS" msgstr "WAS" @@ -6422,7 +6437,7 @@ msgstr "Лобавить диапазон" #: application/views/bands/index.php:156 #: application/views/club/permissions.php:142 #: application/views/contesting/add.php:74 -#: application/views/contesting/index.php:88 +#: application/views/contesting/index.php:89 #: application/views/interface_assets/footer.php:48 #: application/views/simplefle/index.php:21 #: application/views/user/modals/more_actions_modal.php:51 @@ -7131,7 +7146,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Не найдены предстоящие активации. Проверьте позже." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:228 +#: application/views/contesting/index.php:229 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:402 @@ -7237,7 +7252,7 @@ msgstr "название для ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -7307,7 +7322,7 @@ msgid "Create" msgstr "Создать" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:29 +#: application/views/contesting/index.php:30 #: application/views/qso/edit_ajax.php:659 #: application/views/view_log/qso.php:375 msgid "Contest Name" @@ -7327,79 +7342,83 @@ msgstr "" "Вам нужно начать новую сессию, прежде чем вы сможете изменить название " "контеста!" -#: application/views/contesting/index.php:6 +#: application/views/contesting/index.php:3 +msgid "Are you really sure you want to start a new contest session?" +msgstr "Вы действительно уверены, что хотите начать новую сессию для конкурса?" + +#: application/views/contesting/index.php:7 msgid "Start new Contest Session" msgstr "Сбросить контест-сессию" -#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:16 msgid "Exchange Type" msgstr "Тип обмена" -#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:21 msgid "Exchange" msgstr "Контрольный номер" -#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:23 msgid "Serial" msgstr "Порядковый номер" -#: application/views/contesting/index.php:23 +#: application/views/contesting/index.php:24 msgid "Serial + Exchange" msgstr "Порядковый номер + контрольный номер" -#: application/views/contesting/index.php:24 +#: application/views/contesting/index.php:25 msgid "Serial + Gridsquare" msgstr "Порядковый номер и квадрат" -#: application/views/contesting/index.php:25 +#: application/views/contesting/index.php:26 msgid "Serial + Gridsquare + Exchange" msgstr "Порядковый номер + Квадрат + Контрольный номер" -#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:41 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:649 application/views/qso/index.php:365 msgid "Operator Callsign" msgstr "Позывной оператора" -#: application/views/contesting/index.php:45 -#: application/views/contesting/index.php:50 +#: application/views/contesting/index.php:46 +#: application/views/contesting/index.php:51 msgid "More Settings" msgstr "Больше настроек" -#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:55 msgid "Copy received exchange to" msgstr "Копировать принятый контрольный номер в" -#: application/views/contesting/index.php:56 +#: application/views/contesting/index.php:57 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" "Контрольный номер копируется только в том случае, если он соответствует " "правилам для выбранного поля!" -#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:61 msgid "Age" msgstr "Возраст" -#: application/views/contesting/index.php:62 +#: application/views/contesting/index.php:63 msgid "RX Power (W)" msgstr "Мощность (Вт)" -#: application/views/contesting/index.php:63 +#: application/views/contesting/index.php:64 msgid "Locator" msgstr "Локатор" -#: application/views/contesting/index.php:64 +#: application/views/contesting/index.php:65 #: application/views/logbookadvanced/index.php:719 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" -#: application/views/contesting/index.php:69 +#: application/views/contesting/index.php:70 msgid "Sequence of Exchanges" msgstr "Последовательность контрольных номеров" -#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 msgid "" "Choose in which order you want to type in the different reports. However, " "only the elements contained in the selected exchange type are displayed." @@ -7408,84 +7427,84 @@ msgstr "" "отображаются только элементы, содержащиеся в выбранном типе контрольного " "номера." -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Exchange" msgstr "Контроль" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Grid" msgstr "Квадрат" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Serial" msgstr "Номер" -#: application/views/contesting/index.php:181 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:674 msgid "Serial (S)" msgstr "Порядковый номер (TX)" -#: application/views/contesting/index.php:186 +#: application/views/contesting/index.php:187 msgid "Gridsquare (S)" msgstr "Квадрат (TX)" -#: application/views/contesting/index.php:191 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:192 +#: application/views/contesting/index.php:263 msgid "Exch (S)" msgstr "Контрольный номер (TX)" -#: application/views/contesting/index.php:205 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:266 #: application/views/qso/edit_ajax.php:669 msgid "Serial (R)" msgstr "Порядковый номер (RX)" -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 msgid "Gridsquare (R)" msgstr "Квадрат (RX)" -#: application/views/contesting/index.php:215 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:216 +#: application/views/contesting/index.php:264 msgid "Exch (R)" msgstr "Контрольный номер (RX)" -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 msgid "Reset QSO" msgstr "Сбросить QSO" -#: application/views/contesting/index.php:234 +#: application/views/contesting/index.php:235 #: application/views/qso/index.php:681 msgid "Save QSO" msgstr "Сохранить QSO" -#: application/views/contesting/index.php:243 +#: application/views/contesting/index.php:244 msgid "Callsign Suggestions" msgstr "Предложение позывных" -#: application/views/contesting/index.php:250 +#: application/views/contesting/index.php:251 msgid "Contest Logbook" msgstr "Журнал контеста" -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:268 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "Квадрат VUCC" @@ -8724,7 +8743,7 @@ msgstr "Загрузить QSO" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:273 +#: application/views/interface_assets/header.php:275 msgid "Tools" msgstr "Инструменты" @@ -9060,7 +9079,7 @@ msgid "Satellite Information" msgstr "Информация о спутнике" #: application/views/interface_assets/footer.php:139 -#: application/views/interface_assets/header.php:500 +#: application/views/interface_assets/header.php:502 #: application/views/options/sidebar.php:13 msgid "Version Info" msgstr "Информация о версии" @@ -9260,136 +9279,140 @@ msgstr "Просмотр QSL" msgid "View eQSL Cards" msgstr "Просмотр eQSL" -#: application/views/interface_assets/header.php:119 +#: application/views/interface_assets/header.php:113 +msgid "View last confirmations" +msgstr "" + +#: application/views/interface_assets/header.php:121 msgid "Live QSO" msgstr "Добавить QSO" -#: application/views/interface_assets/header.php:121 +#: application/views/interface_assets/header.php:123 msgid "Post QSO" msgstr "Добавить прошедшее QSO" -#: application/views/interface_assets/header.php:123 +#: application/views/interface_assets/header.php:125 msgid "Simple Fast Log Entry" msgstr "Простой быстрый ввод журнала" -#: application/views/interface_assets/header.php:126 +#: application/views/interface_assets/header.php:128 msgid "Live Contest Logging" msgstr "Журнал контеста" -#: application/views/interface_assets/header.php:128 +#: application/views/interface_assets/header.php:130 msgid "Post Contest Logging" msgstr "Журнал прошедшего контеста" -#: application/views/interface_assets/header.php:138 +#: application/views/interface_assets/header.php:140 msgid "Analytics" msgstr "Аналитика" -#: application/views/interface_assets/header.php:148 +#: application/views/interface_assets/header.php:150 msgid "Activated Gridsquares" msgstr "Активированные квадраты" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "Callsign Statistics" msgstr "Статистика по позывным" -#: application/views/interface_assets/header.php:174 +#: application/views/interface_assets/header.php:176 msgid "International" msgstr "Международные" -#: application/views/interface_assets/header.php:176 +#: application/views/interface_assets/header.php:178 msgid "CQ WAZ" msgstr "CQ WAZ" -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:182 msgid "ITU" msgstr "ITU" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:188 msgid "Worked All Europe (WAE)" msgstr "Worked All Europe (WAE)" -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:212 msgid "Canada" msgstr "Канада" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:218 msgid "Germany" msgstr "Германия" -#: application/views/interface_assets/header.php:220 +#: application/views/interface_assets/header.php:222 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:224 +#: application/views/interface_assets/header.php:226 msgid "Great Britain" msgstr "Великобритания" -#: application/views/interface_assets/header.php:226 +#: application/views/interface_assets/header.php:228 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:230 +#: application/views/interface_assets/header.php:232 msgid "Japan" msgstr "Япония" -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:238 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:240 +#: application/views/interface_assets/header.php:242 msgid "Luxemburg" msgstr "Люксембург" -#: application/views/interface_assets/header.php:242 +#: application/views/interface_assets/header.php:244 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:246 +#: application/views/interface_assets/header.php:248 msgid "Switzerland" msgstr "Швейцария" -#: application/views/interface_assets/header.php:252 +#: application/views/interface_assets/header.php:254 msgid "The Netherlands" msgstr "Нидерланды" -#: application/views/interface_assets/header.php:254 +#: application/views/interface_assets/header.php:256 msgid "WAP Worked All Provinces" msgstr "WAP Worked All Provinces" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:260 msgid "USA" msgstr "США" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:266 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:281 +#: application/views/interface_assets/header.php:283 msgid "Bandmap" msgstr "Активность на диапазонах" -#: application/views/interface_assets/header.php:283 +#: application/views/interface_assets/header.php:285 msgid "SAT Timers" msgstr "Спутниковые таймеры" -#: application/views/interface_assets/header.php:285 +#: application/views/interface_assets/header.php:287 msgid "Satellite Flightpath" msgstr "Траектория полета спутника" -#: application/views/interface_assets/header.php:287 +#: application/views/interface_assets/header.php:289 msgid "Satellite Pass" msgstr "Прохождение спутника" -#: application/views/interface_assets/header.php:293 +#: application/views/interface_assets/header.php:295 #: application/views/stationsetup/stationsetup.php:116 msgid "Admin" msgstr "Администрирование" -#: application/views/interface_assets/header.php:298 +#: application/views/interface_assets/header.php:300 msgid "Global Options" msgstr "Общие настройки" -#: application/views/interface_assets/header.php:304 +#: application/views/interface_assets/header.php:306 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:40 #: application/views/statistics/index.php:50 @@ -9397,129 +9420,129 @@ msgstr "Общие настройки" msgid "Satellites" msgstr "Спутники" -#: application/views/interface_assets/header.php:310 +#: application/views/interface_assets/header.php:312 msgid "Update Country Files" msgstr "Обновить файлы стран" -#: application/views/interface_assets/header.php:314 +#: application/views/interface_assets/header.php:316 msgid "Debug Information" msgstr "Отладочная информация" -#: application/views/interface_assets/header.php:361 +#: application/views/interface_assets/header.php:363 msgid "Add/Search Callsign" msgstr "Добавить/найти позывной" -#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:365 msgid "Log" msgstr "Журнал" -#: application/views/interface_assets/header.php:370 +#: application/views/interface_assets/header.php:372 #: application/views/logbookadvanced/index.php:568 #: application/views/oqrs/index.php:27 application/views/user/edit.php:470 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Поиск позывного" -#: application/views/interface_assets/header.php:397 +#: application/views/interface_assets/header.php:399 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" msgstr "Оп.: %s" -#: application/views/interface_assets/header.php:408 +#: application/views/interface_assets/header.php:410 #: application/views/user/edit.php:53 msgid "Account" msgstr "Информация об аккаунте" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:423 msgid "Switch to Clubstation:" msgstr "Переключиться на коллективную станцию:" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:427 #, php-format msgid "Switch to %s" msgstr "Переключиться на %s" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:431 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" msgstr "Управление %s" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:440 msgid "No Clubstations available" msgstr "Нет доступных коллективных станций" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:448 msgid "Other Export Options" msgstr "Другие варианты экспорта" -#: application/views/interface_assets/header.php:454 +#: application/views/interface_assets/header.php:456 msgid "Cabrillo Export" msgstr "Экспорт Cabrillo" -#: application/views/interface_assets/header.php:456 +#: application/views/interface_assets/header.php:458 msgid "EDI Export" msgstr "Экспорт EDI" -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:482 msgid "QSL Queue" msgstr "Очередь QSL" -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "Labels" msgstr "Наклейки" -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "Third-Party Services" msgstr "Сторонние сервисы" -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:488 msgid "eQSL Import / Export" msgstr "импорт / экспорт eQSL" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "HRDLog Logbook" msgstr "Журнал HRDLog" -#: application/views/interface_assets/header.php:490 +#: application/views/interface_assets/header.php:492 msgid "Clublog Import / Export" msgstr "Импорт / Экспорт из Clublog" -#: application/views/interface_assets/header.php:501 +#: application/views/interface_assets/header.php:503 #: application/views/logbookadvanced/index.php:675 msgid "Help" msgstr "Помощь" -#: application/views/interface_assets/header.php:502 +#: application/views/interface_assets/header.php:504 msgid "Forum" msgstr "Форум" -#: application/views/interface_assets/header.php:506 +#: application/views/interface_assets/header.php:508 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Прекратить выдавать себя за другого и переключиться обратно на %s" -#: application/views/interface_assets/header.php:507 +#: application/views/interface_assets/header.php:509 #, php-format msgid "Switch back to %s" msgstr "Переключиться обратно на %s" -#: application/views/interface_assets/header.php:511 +#: application/views/interface_assets/header.php:513 msgid "Logout" msgstr "Выход" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Select a Location" msgstr "Выберите профиль QTH" -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:563 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Не видите нужных профилей QTH? Перейдите в \"Настройки станции\" и добавьте " "их в избранное" -#: application/views/interface_assets/header.php:598 +#: application/views/interface_assets/header.php:600 msgid "Extras" msgstr "Дополнения" @@ -10521,7 +10544,7 @@ msgid "Default on" msgstr "По умолчанию включено" #: application/views/lookup/index.php:11 -#: application/views/qso/award_tabs.php:45 +#: application/views/qso/award_tabs.php:53 msgid "US State" msgstr "Штат США" @@ -11584,6 +11607,33 @@ msgstr "Отметить QSO экспортированными в QRZ Logbook" msgid "The QSOs are marked as exported to QRZ Logbook." msgstr "QSO отмечены как экспортированные в QSZ Logbook." +#: application/views/qslcard/confirmationresult.php:16 +msgid "QSO date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:19 +msgid "Confirmation date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:20 +#: application/views/user/index.php:30 +msgid "Type" +msgstr "Роль" + +#: application/views/qslcard/confirmationresult.php:52 +msgid "No confirmations found." +msgstr "" + +#: application/views/qslcard/confirmations.php:6 +msgid "" +"A maximum of 1000 rows are shown in the table. This is for performance " +"reasons." +msgstr "" + +#: application/views/qslcard/confirmations.php:11 +msgid "Confirmation type" +msgstr "" + #: application/views/qslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store QSL Card assets" @@ -11752,46 +11802,62 @@ msgid "Showing summary for IOTA" msgstr "Показ сводки по IOTA" #: application/views/qso/award_tabs.php:9 +msgid "Showing summary for DOK" +msgstr "Показать резюме для DOK" + +#: application/views/qso/award_tabs.php:10 +msgid "Showing summary for satellite QSOs with" +msgstr "Показать резюме для QSO через спутник с" + +#: application/views/qso/award_tabs.php:11 msgid "Showing summary for continent" msgstr "Показ сводки по континентам" -#: application/views/qso/award_tabs.php:10 +#: application/views/qso/award_tabs.php:12 msgid "Showing summary for gridsquare" msgstr "Показ сводки для квадратам" -#: application/views/qso/award_tabs.php:11 +#: application/views/qso/award_tabs.php:13 msgid "State input needs to be filled to show a summary!" msgstr "Для показа сводки нужно заполнить штат!" -#: application/views/qso/award_tabs.php:12 +#: application/views/qso/award_tabs.php:14 msgid "SOTA input needs to be filled to show a summary!" msgstr "Для показа сводки нужно заполнить SOTA!" -#: application/views/qso/award_tabs.php:13 +#: application/views/qso/award_tabs.php:15 msgid "POTA input needs to be filled to show a summary!" msgstr "Для показа сводки нужно заполнить POTA!" -#: application/views/qso/award_tabs.php:14 +#: application/views/qso/award_tabs.php:16 msgid "IOTA input needs to be filled to show a summary!" msgstr "Для показа сводки нужно заполнить IOTA!" -#: application/views/qso/award_tabs.php:15 +#: application/views/qso/award_tabs.php:17 +msgid "DOK input needs to be filled to show a summary!" +msgstr "" + +#: application/views/qso/award_tabs.php:18 msgid "WWFF input needs to be filled to show a summary!" msgstr "Для показа сводки нужно заполнить WWFF!" -#: application/views/qso/award_tabs.php:16 +#: application/views/qso/award_tabs.php:19 +msgid "Propagation mode needs to be 'SAT' to show a summary!" +msgstr "Режим прохождения должен быть 'SAT' чтобы показать сводку!" + +#: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" msgstr "Для показа сводки нужно заполнить квадрат!" -#: application/views/qso/award_tabs.php:17 +#: application/views/qso/award_tabs.php:21 msgid "Summary only shows for the first POTA entered." msgstr "Сводка отображается только для первого введенного POTA." -#: application/views/qso/award_tabs.php:18 +#: application/views/qso/award_tabs.php:22 msgid "Summary only shows for the first gridsquare entered." msgstr "Сводка отображается только для первого введенного квадрата." -#: application/views/qso/award_tabs.php:19 +#: application/views/qso/award_tabs.php:23 msgid "Summary only shows for US states." msgstr "Сводка отображается только для штатов США." @@ -12041,7 +12107,7 @@ msgstr "Прошедшее" #: application/views/qso/index.php:40 #: application/views/statistics/antennaanalytics.php:45 -#: application/views/statistics/antennaanalytics.php:88 +#: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Спутн." @@ -13656,11 +13722,11 @@ msgstr "Создать профиль QTH" #: application/views/stationsetup/stationsetup.php:104 msgid "Show all locations" -msgstr "" +msgstr "Показать все местоположения" #: application/views/stationsetup/stationsetup.php:104 msgid "Show only locations from the active logbook" -msgstr "" +msgstr "Показать местоположения только для активного журнала" #: application/views/stationsetup/stationsetup.php:108 msgid "" @@ -13688,7 +13754,7 @@ msgstr "Пожалуйста, переназначьте их в " #: application/views/stationsetup/stationsetup.php:129 msgid "Last QSO" -msgstr "" +msgstr "Последний QSO" #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" @@ -13733,7 +13799,7 @@ msgstr "Возвышение" #: application/views/statistics/index.php:14 #: application/views/statistics/index.php:61 msgid "Years" -msgstr "по годам" +msgstr "По годам" #: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" @@ -14666,10 +14732,6 @@ msgstr "" msgid "Create user" msgstr "Добавить пользователя" -#: application/views/user/index.php:30 -msgid "Type" -msgstr "Роль" - #: application/views/user/index.php:31 application/views/user/index.php:158 msgid "Last seen" msgstr "Последний логин" diff --git a/application/locale/sl/LC_MESSAGES/messages.po b/application/locale/sl/LC_MESSAGES/messages.po index ee04811f5..9760734ef 100644 --- a/application/locale/sl/LC_MESSAGES/messages.po +++ b/application/locale/sl/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-07-02 15:54+0000\n" +"POT-Creation-Date: 2025-07-06 15:33+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -71,8 +71,8 @@ msgstr "" #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:136 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 #: application/controllers/Qrz.php:285 application/controllers/Qsl.php:12 -#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 -#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:24 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:72 +#: application/controllers/Qsl.php:80 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 #: application/controllers/Qso.php:287 application/controllers/Qso.php:308 @@ -123,7 +123,7 @@ msgid "You're not allowed to do that!" msgstr "" #: application/controllers/Accumulated.php:19 -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "Accumulated Statistics" msgstr "" @@ -186,7 +186,7 @@ msgstr "" #: application/controllers/Activators.php:20 #: application/views/activators/index.php:5 -#: application/views/interface_assets/header.php:150 +#: application/views/interface_assets/header.php:152 msgid "Gridsquare Activators" msgstr "" @@ -204,7 +204,7 @@ msgid "date incorrect" msgstr "" #: application/controllers/Adif.php:134 -#: application/views/interface_assets/header.php:444 +#: application/views/interface_assets/header.php:446 msgid "ADIF Import / Export" msgstr "" @@ -278,7 +278,7 @@ msgid "API Key %s has been deleted" msgstr "" #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:172 +#: application/views/interface_assets/header.php:174 #: application/views/qso/edit_ajax.php:36 msgid "Awards" msgstr "" @@ -310,12 +310,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:48 -#: application/views/contesting/index.php:58 -#: application/views/interface_assets/header.php:218 +#: application/views/contesting/index.php:59 +#: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/index.php:348 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:14 +#: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:276 #: application/views/qso/index.php:567 application/views/user/edit.php:671 #: application/views/view_log/qso.php:460 @@ -326,7 +327,7 @@ msgstr "" #: application/views/bandmap/list.php:122 application/views/bands/index.php:49 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:178 +#: application/views/interface_assets/header.php:180 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:9 #: application/views/logbookadvanced/index.php:224 @@ -335,7 +336,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 -#: application/views/qso/award_tabs.php:25 +#: application/views/qso/award_tabs.php:29 #: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:375 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 @@ -351,12 +352,12 @@ msgid "Awards - WAJA" msgstr "" #: application/controllers/Awards.php:332 application/views/bands/index.php:52 -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:236 msgid "JCC" msgstr "" #: application/controllers/Awards.php:380 application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:184 +#: application/views/interface_assets/header.php:186 msgid "VUCC" msgstr "" @@ -367,7 +368,7 @@ msgstr "" #: application/controllers/Awards.php:458 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:86 -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 #: application/controllers/Timeline.php:126 #: application/controllers/Timeline.php:129 #: application/controllers/Timeline.php:132 @@ -383,8 +384,7 @@ msgid " and band " msgstr "" #: application/controllers/Awards.php:462 -#: application/controllers/Callstats.php:104 -msgid " and sat " +msgid " and satellite " msgstr "" #: application/controllers/Awards.php:465 @@ -411,7 +411,7 @@ msgstr "" #: application/controllers/Logbook.php:1290 #: application/views/awards/index.php:8 application/views/bands/index.php:56 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:204 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/index.php:352 #: application/views/logbookadvanced/useroptions.php:126 @@ -421,7 +421,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/award_tabs.php:53 +#: application/views/qso/award_tabs.php:61 #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:376 #: application/views/search/search_result_ajax.php:9 @@ -438,12 +438,12 @@ msgstr "" #: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:62 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:190 +#: application/views/interface_assets/header.php:192 #: application/views/logbookadvanced/edit.php:22 #: application/views/logbookadvanced/index.php:372 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:12 -#: application/views/qso/award_tabs.php:57 +#: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:386 #: application/views/search/search_result_ajax.php:10 @@ -459,12 +459,12 @@ msgstr "" #: application/controllers/Logbook.php:1292 #: application/views/bands/index.php:53 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:208 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:356 #: application/views/logbookadvanced/index.php:764 #: application/views/logbookadvanced/useroptions.php:122 -#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:49 +#: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:382 #: application/views/search/search_result_ajax.php:11 @@ -487,7 +487,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:720 application/views/bands/index.php:54 -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:214 msgid "RAC" msgstr "" @@ -501,7 +501,7 @@ msgstr "" #: application/controllers/Awards.php:876 #: application/controllers/Awards.php:890 -#: application/views/interface_assets/header.php:260 +#: application/views/interface_assets/header.php:262 msgid "US Counties" msgstr "" @@ -533,7 +533,7 @@ msgid "Fred Fish Memorial Award (FFMA)" msgstr "" #: application/controllers/Awards.php:1149 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:260 #: application/views/qso/index.php:553 application/views/user/edit.php:667 @@ -557,7 +557,7 @@ msgstr "" #: application/controllers/Awards.php:2042 #: application/views/awards/wac/index.php:8 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:190 msgid "Worked All Continents (WAC)" msgstr "" @@ -566,12 +566,12 @@ msgid "WAE" msgstr "" #: application/controllers/Awards.php:2132 -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:198 msgid "73 on 73" msgstr "" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:308 +#: application/views/interface_assets/header.php:310 msgid "Backup" msgstr "" @@ -585,7 +585,7 @@ msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:29 #: application/views/bands/index.php:33 -#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:417 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:67 msgid "Bands" @@ -635,8 +635,12 @@ msgstr "" msgid "Callsign statistics" msgstr "" +#: application/controllers/Callstats.php:104 +msgid " and sat " +msgstr "" + #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:458 +#: application/views/interface_assets/header.php:460 msgid "CFD Export" msgstr "" @@ -741,7 +745,7 @@ msgid "Clublog QSL Import" msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:277 +#: application/views/interface_assets/header.php:279 msgid "Contest Calendar" msgstr "" @@ -750,12 +754,12 @@ msgid "Contestcalendar not reachable. Try again later" msgstr "" #: application/controllers/Contesting.php:52 -#: application/views/contesting/index.php:7 +#: application/views/contesting/index.php:8 msgid "Contest Logging" msgstr "" #: application/controllers/Contesting.php:123 -#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:304 msgid "Contests" msgstr "" @@ -766,12 +770,12 @@ msgstr "" #: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:83 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:312 +#: application/views/interface_assets/header.php:314 msgid "Cron Manager" msgstr "" @@ -834,7 +838,7 @@ msgid "Not running" msgstr "" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:452 +#: application/views/interface_assets/header.php:454 msgid "SOTA CSV Export" msgstr "" @@ -845,7 +849,7 @@ msgstr "" #: application/controllers/Dayswithqso.php:17 #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:156 +#: application/views/interface_assets/header.php:158 msgid "Days with QSOs" msgstr "" @@ -890,14 +894,14 @@ msgstr "" #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Satellite Distance Records" msgstr "" #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 msgid "Distances Worked" msgstr "" @@ -915,12 +919,12 @@ msgid "and propagation" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:450 +#: application/views/interface_assets/header.php:452 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:275 +#: application/views/interface_assets/header.php:277 msgid "DX Calendar" msgstr "" @@ -977,7 +981,7 @@ msgid "eQSL Card Image Download" msgstr "" #: application/controllers/Gridmap.php:10 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Gridsquare Map" msgstr "" @@ -1002,7 +1006,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:448 +#: application/views/interface_assets/header.php:450 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -1279,8 +1283,8 @@ msgstr "" #: application/views/awards/was/index.php:87 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:114 +#: application/views/contesting/index.php:260 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:587 @@ -1302,6 +1306,7 @@ msgstr "" #: application/views/oqrs/request_grouped.php:11 #: application/views/oqrs/showrequests.php:84 #: application/views/public_search/result.php:15 +#: application/views/qslcard/confirmationresult.php:17 #: application/views/qslcard/index.php:40 #: application/views/qslcard/searchresult.php:12 #: application/views/qslcard/searchresult.php:28 @@ -1339,8 +1344,8 @@ msgstr "" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:174 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:701 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1367,8 +1372,8 @@ msgstr "" #: application/views/awards/73on73/index.php:36 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:198 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:199 +#: application/views/contesting/index.php:262 #: application/views/logbookadvanced/index.php:704 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1416,7 +1421,7 @@ msgstr "" #: application/controllers/Logbook.php:1289 #: application/views/awards/iota/index.php:195 #: application/views/bands/index.php:51 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:204 +#: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:360 #: application/views/logbookadvanced/index.php:761 @@ -1428,7 +1433,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/award_tabs.php:41 +#: application/views/qso/award_tabs.php:49 #: application/views/qso/components/previous_contacts.php:81 #: application/views/qso/edit_ajax.php:367 #: application/views/search/search_result_ajax.php:8 @@ -1446,7 +1451,7 @@ msgstr "" #: application/views/awards/counties/index.php:20 #: application/views/awards/rac/index.php:143 #: application/views/awards/was/index.php:151 -#: application/views/contesting/index.php:61 +#: application/views/contesting/index.php:62 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/edit.php:78 @@ -1474,8 +1479,8 @@ msgstr "" #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 -#: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:267 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1491,7 +1496,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/award_tabs.php:37 +#: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:291 #: application/views/satellite/pass.php:46 @@ -1556,7 +1561,7 @@ msgstr "" #: application/views/awards/pota/index.php:35 #: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 -#: application/views/awards/sota/index.php:26 +#: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 #: application/views/awards/wac/index.php:63 @@ -1568,8 +1573,8 @@ msgstr "" #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:95 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:46 application/views/callstats/index.php:7 -#: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:127 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:588 application/views/dxatlas/index.php:31 @@ -1586,6 +1591,7 @@ msgstr "" #: application/views/oqrs/request_grouped.php:10 #: application/views/oqrs/showrequests.php:83 #: application/views/public_search/result.php:16 +#: application/views/qslcard/confirmationresult.php:18 #: application/views/qslcard/index.php:43 #: application/views/qslcard/searchresult.php:21 #: application/views/qslcard/searchresult.php:37 @@ -1622,7 +1628,7 @@ msgstr "" #: application/controllers/Logbook.php:1297 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:120 -#: application/views/contesting/index.php:143 +#: application/views/contesting/index.php:144 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:710 #: application/views/logbookadvanced/useroptions.php:50 @@ -1704,7 +1710,7 @@ msgstr "" #: application/controllers/Lotw.php:53 application/controllers/Lotw.php:85 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 #: 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:773 application/views/visitor/index.php:328 @@ -1780,8 +1786,8 @@ msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 application/controllers/Usermode.php:23 -#: application/views/interface_assets/header.php:300 -#: application/views/interface_assets/header.php:416 +#: application/views/interface_assets/header.php:302 +#: application/views/interface_assets/header.php:418 #: application/views/mode/index.php:27 application/views/usermode/index.php:25 msgid "Modes" msgstr "" @@ -1791,7 +1797,7 @@ msgid "Edit Mode" msgstr "" #: application/controllers/Notes.php:18 -#: application/views/interface_assets/header.php:134 +#: application/views/interface_assets/header.php:136 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 @@ -1970,7 +1976,7 @@ msgid "Invalid Station ID" msgstr "" #: application/controllers/Oqrs.php:134 -#: application/views/interface_assets/header.php:475 +#: application/views/interface_assets/header.php:477 msgid "OQRS Requests" msgstr "" @@ -2017,7 +2023,7 @@ msgid "" msgstr "" #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:490 msgid "QRZ Logbook" msgstr "" @@ -2036,7 +2042,11 @@ msgstr "" msgid "QSL Cards" msgstr "" -#: application/controllers/Qsl.php:35 +#: application/controllers/Qsl.php:41 +msgid "Confirmations" +msgstr "" + +#: application/controllers/Qsl.php:63 msgid "Upload QSL Cards" msgstr "" @@ -2065,13 +2075,13 @@ msgid "No callsign provided." msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:498 +#: application/views/interface_assets/header.php:500 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 -#: application/views/contesting/index.php:152 +#: application/views/contesting/index.php:153 #: application/views/qso/index.php:324 msgid "Radio" msgstr "" @@ -2099,7 +2109,7 @@ msgid "UNKNOWN" msgstr "" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:156 +#: application/views/contesting/index.php:157 #: application/views/qso/index.php:328 msgid "last updated" msgstr "" @@ -2230,8 +2240,8 @@ msgstr "" #: application/controllers/Search.php:17 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:40 -#: application/views/interface_assets/header.php:364 -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:366 +#: application/views/interface_assets/header.php:373 #: application/views/logbookadvanced/index.php:641 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 @@ -2329,8 +2339,8 @@ msgid "Please check value for grid locator (%s)" msgstr "" #: application/controllers/Stationsetup.php:60 -#: application/views/interface_assets/header.php:413 -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:415 +#: application/views/interface_assets/header.php:563 msgid "Station Setup" msgstr "" @@ -2397,7 +2407,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:559 +#: application/views/interface_assets/header.php:561 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -2436,7 +2446,7 @@ msgid "Active Station" msgstr "" #: application/controllers/Stationsetup.php:396 -#: application/views/interface_assets/header.php:117 +#: application/views/interface_assets/header.php:119 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:27 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:166 @@ -2484,33 +2494,33 @@ msgid "Edit Export Map options" msgstr "" #: application/controllers/Statistics.php:26 -#: application/views/interface_assets/header.php:140 +#: application/views/interface_assets/header.php:142 msgid "Statistics" msgstr "" #: application/controllers/Statistics.php:238 -#: application/views/interface_assets/header.php:144 +#: application/views/interface_assets/header.php:146 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "" #: application/controllers/Statistics.php:253 -#: application/views/interface_assets/header.php:142 +#: application/views/interface_assets/header.php:144 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" msgstr "" -#: application/controllers/Statistics.php:305 +#: application/controllers/Statistics.php:306 msgid "Satellite QSOs" msgstr "" -#: application/controllers/Statistics.php:321 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Statistics.php:322 +#: application/views/interface_assets/header.php:170 msgid "EME Initials" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:306 +#: application/views/interface_assets/header.php:308 msgid "Themes" msgstr "" @@ -2523,13 +2533,13 @@ msgid "Edit Theme" msgstr "" #: application/controllers/Timeline.php:15 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -2635,7 +2645,7 @@ msgid "Update of Hams of Note" msgstr "" #: application/controllers/User.php:50 -#: application/views/interface_assets/header.php:296 +#: application/views/interface_assets/header.php:298 msgid "User Accounts" msgstr "" @@ -2716,7 +2726,7 @@ msgid "Login failed. Try again." msgstr "" #: application/controllers/User.php:1073 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:386 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" @@ -2896,7 +2906,7 @@ msgstr "" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:489 +#: application/views/interface_assets/header.php:491 msgid "QO-100 Dx Club Upload" msgstr "" @@ -3066,96 +3076,96 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:1245 +#: application/models/Logbook_model.php:1250 msgid "Station ID not allowed" msgstr "" -#: application/models/Logbook_model.php:1250 +#: application/models/Logbook_model.php:1255 msgid "No Call given" msgstr "" -#: application/models/Logbook_model.php:1320 -#: application/models/Logbook_model.php:1494 +#: application/models/Logbook_model.php:1325 +#: application/models/Logbook_model.php:1499 msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:3944 +#: application/models/Logbook_model.php:3949 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:3945 +#: application/models/Logbook_model.php:3950 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "" -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:3957 +#: application/models/Logbook_model.php:3962 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" msgstr "" -#: application/models/Logbook_model.php:4256 +#: application/models/Logbook_model.php:4261 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4267 +#: application/models/Logbook_model.php:4272 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4328 +#: application/models/Logbook_model.php:4333 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4348 +#: application/models/Logbook_model.php:4353 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4369 +#: application/models/Logbook_model.php:4374 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4661 +#: application/models/Logbook_model.php:4666 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:4722 +#: application/models/Logbook_model.php:4727 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4728 +#: application/models/Logbook_model.php:4733 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4733 +#: application/models/Logbook_model.php:4738 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4736 +#: application/models/Logbook_model.php:4741 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4739 +#: application/models/Logbook_model.php:4744 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4742 +#: application/models/Logbook_model.php:4747 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4745 +#: application/models/Logbook_model.php:4750 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5583 +#: application/models/Logbook_model.php:5588 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3372,9 +3382,7 @@ msgstr "" #: application/views/statistics/antennaanalytics.php:22 #: application/views/statistics/antennaanalytics.php:34 #: application/views/statistics/antennaanalytics.php:48 -#: application/views/statistics/antennaanalytics.php:63 -#: application/views/statistics/antennaanalytics.php:91 -#: application/views/statistics/antennaanalytics.php:104 +#: application/views/statistics/antennaanalytics.php:88 #: application/views/statistics/initials.php:20 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 @@ -3722,9 +3730,10 @@ msgstr "" #: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:94 +#: application/views/qslcard/confirmations.php:21 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/statistics/antennaanalytics.php:77 -#: application/views/statistics/antennaanalytics.php:116 +#: application/views/statistics/antennaanalytics.php:74 +#: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 #: application/views/timeline/index.php:219 @@ -3747,9 +3756,10 @@ msgstr "" #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 -#: application/views/interface_assets/header.php:194 +#: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/edit.php:19 #: application/views/logbookadvanced/index.php:275 +#: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 #: application/views/satellite/passtable.php:6 @@ -3774,7 +3784,7 @@ msgstr "" #: application/views/satellite/index.php:54 #: application/views/satellite/satinfo.php:12 #: application/views/statistics/antennaanalytics.php:60 -#: application/views/statistics/antennaanalytics.php:101 +#: application/views/statistics/antennaanalytics.php:98 msgid "Orbit" msgstr "" @@ -3854,7 +3864,7 @@ msgstr "" #: application/views/awards/pota/index.php:67 #: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 -#: application/views/awards/sota/index.php:51 +#: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 #: application/views/awards/wac/index.php:199 @@ -3877,13 +3887,13 @@ msgstr "" #: application/views/awards/73on73/index.php:34 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 -#: application/views/awards/sota/index.php:25 +#: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:148 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:166 #: application/views/csv/index.php:23 application/views/dashboard/index.php:226 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3893,6 +3903,7 @@ msgstr "" #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/confirmationresult.php:15 #: application/views/qslcard/index.php:39 #: application/views/qslcard/searchform.php:3 #: application/views/qslprint/index.php:24 @@ -3979,11 +3990,12 @@ msgstr "" #: application/views/adif/dcl_success.php:29 #: application/views/awards/73on73/index.php:32 #: application/views/awards/pota/index.php:32 +#: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:99 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:221 #: application/views/debug/index.php:584 #: application/views/distancerecords/index.php:16 @@ -4023,11 +4035,12 @@ msgstr "" #: application/views/adif/dcl_success.php:30 #: application/views/awards/73on73/index.php:33 #: application/views/awards/pota/index.php:33 +#: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:119 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:104 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:224 #: application/views/debug/index.php:585 #: application/views/distancerecords/index.php:17 @@ -4055,7 +4068,7 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:121 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:258 #: application/views/debug/index.php:586 application/views/debug/index.php:621 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -4488,7 +4501,7 @@ msgid "Save" msgstr "" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:497 +#: application/views/interface_assets/header.php:499 msgid "API Keys" msgstr "" @@ -5246,7 +5259,7 @@ msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:266 +#: application/views/interface_assets/header.php:268 msgid "Fred Fish Memorial Award" msgstr "" @@ -5356,7 +5369,7 @@ msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:47 -#: application/views/qso/award_tabs.php:29 +#: application/views/qso/award_tabs.php:33 msgid "CQ" msgstr "" @@ -5404,8 +5417,8 @@ msgstr "" #: application/views/awards/iota/index.php:197 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:223 +#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:224 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:716 @@ -5609,12 +5622,11 @@ msgid "Number of Refs" msgstr "" #: application/views/awards/sig/qso_list.php:9 -#: application/views/awards/sota/index.php:23 +#: application/views/awards/sota/index.php:30 msgid "Reference" msgstr "" #: application/views/awards/sig/qso_list.php:10 -#: application/views/awards/sota/index.php:24 #: application/views/logbookadvanced/index.php:689 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 @@ -5626,12 +5638,12 @@ msgid "Date/Time" msgstr "" #: application/views/awards/sig/qso_list.php:14 -#: application/views/awards/sota/index.php:27 +#: application/views/awards/sota/index.php:35 msgid "RST Sent" msgstr "" #: application/views/awards/sig/qso_list.php:15 -#: application/views/awards/sota/index.php:28 +#: application/views/awards/sota/index.php:36 msgid "RST Received" msgstr "" @@ -5729,7 +5741,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:386 #: application/views/logbookadvanced/index.php:797 #: application/views/logbookadvanced/useroptions.php:166 -#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:33 +#: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:395 #: application/views/view_log/qso.php:342 msgid "Continent" @@ -5953,9 +5965,9 @@ msgid "BandList" msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:69 -#: application/views/contesting/index.php:19 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:154 +#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:58 +#: application/views/contesting/index.php:155 #: application/views/qso/index.php:326 msgid "None" msgstr "" @@ -6060,12 +6072,12 @@ msgid "USA County" msgstr "" #: application/views/bands/index.php:60 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:234 msgid "WAJA" msgstr "" #: application/views/bands/index.php:61 -#: application/views/interface_assets/header.php:262 +#: application/views/interface_assets/header.php:264 msgid "WAS" msgstr "" @@ -6096,7 +6108,7 @@ msgstr "" #: application/views/bands/index.php:156 #: application/views/club/permissions.php:142 #: application/views/contesting/add.php:74 -#: application/views/contesting/index.php:88 +#: application/views/contesting/index.php:89 #: application/views/interface_assets/footer.php:48 #: application/views/simplefle/index.php:21 #: application/views/user/modals/more_actions_modal.php:51 @@ -6768,7 +6780,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:228 +#: application/views/contesting/index.php:229 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:402 @@ -6870,7 +6882,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -6937,7 +6949,7 @@ msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:29 +#: application/views/contesting/index.php:30 #: application/views/qso/edit_ajax.php:659 #: application/views/view_log/qso.php:375 msgid "Contest Name" @@ -6955,160 +6967,164 @@ msgstr "" msgid "You need to start a new session before you can change the contest name!" msgstr "" -#: application/views/contesting/index.php:6 +#: application/views/contesting/index.php:3 +msgid "Are you really sure you want to start a new contest session?" +msgstr "" + +#: application/views/contesting/index.php:7 msgid "Start new Contest Session" msgstr "" -#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:16 msgid "Exchange Type" msgstr "" -#: application/views/contesting/index.php:20 +#: application/views/contesting/index.php:21 msgid "Exchange" msgstr "" -#: application/views/contesting/index.php:22 +#: application/views/contesting/index.php:23 msgid "Serial" msgstr "" -#: application/views/contesting/index.php:23 +#: application/views/contesting/index.php:24 msgid "Serial + Exchange" msgstr "" -#: application/views/contesting/index.php:24 +#: application/views/contesting/index.php:25 msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:25 +#: application/views/contesting/index.php:26 msgid "Serial + Gridsquare + Exchange" msgstr "" -#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:41 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:649 application/views/qso/index.php:365 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:45 -#: application/views/contesting/index.php:50 +#: application/views/contesting/index.php:46 +#: application/views/contesting/index.php:51 msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:55 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:56 +#: application/views/contesting/index.php:57 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:60 +#: application/views/contesting/index.php:61 msgid "Age" msgstr "" -#: application/views/contesting/index.php:62 +#: application/views/contesting/index.php:63 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:63 +#: application/views/contesting/index.php:64 msgid "Locator" msgstr "" -#: application/views/contesting/index.php:64 +#: application/views/contesting/index.php:65 #: application/views/logbookadvanced/index.php:719 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "" -#: application/views/contesting/index.php:69 +#: application/views/contesting/index.php:70 msgid "Sequence of Exchanges" msgstr "" -#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 msgid "" "Choose in which order you want to type in the different reports. However, " "only the elements contained in the selected exchange type are displayed." msgstr "" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Exchange" msgstr "" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Grid" msgstr "" -#: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 #: application/views/contesting/index.php:79 #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#: application/views/contesting/index.php:83 msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:181 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:674 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:186 +#: application/views/contesting/index.php:187 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:191 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:192 +#: application/views/contesting/index.php:263 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:205 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:266 #: application/views/qso/edit_ajax.php:669 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:211 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:215 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:216 +#: application/views/contesting/index.php:264 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:234 +#: application/views/contesting/index.php:235 #: application/views/qso/index.php:681 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:243 +#: application/views/contesting/index.php:244 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:250 +#: application/views/contesting/index.php:251 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:268 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -8260,7 +8276,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:273 +#: application/views/interface_assets/header.php:275 msgid "Tools" msgstr "" @@ -8562,7 +8578,7 @@ msgid "Satellite Information" msgstr "" #: application/views/interface_assets/footer.php:139 -#: application/views/interface_assets/header.php:500 +#: application/views/interface_assets/header.php:502 #: application/views/options/sidebar.php:13 msgid "Version Info" msgstr "" @@ -8759,136 +8775,140 @@ msgstr "" msgid "View eQSL Cards" msgstr "" -#: application/views/interface_assets/header.php:119 -msgid "Live QSO" +#: application/views/interface_assets/header.php:113 +msgid "View last confirmations" msgstr "" #: application/views/interface_assets/header.php:121 -msgid "Post QSO" +msgid "Live QSO" msgstr "" #: application/views/interface_assets/header.php:123 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:125 msgid "Simple Fast Log Entry" msgstr "" -#: application/views/interface_assets/header.php:126 +#: application/views/interface_assets/header.php:128 msgid "Live Contest Logging" msgstr "" -#: application/views/interface_assets/header.php:128 +#: application/views/interface_assets/header.php:130 msgid "Post Contest Logging" msgstr "" -#: application/views/interface_assets/header.php:138 +#: application/views/interface_assets/header.php:140 msgid "Analytics" msgstr "" -#: application/views/interface_assets/header.php:148 +#: application/views/interface_assets/header.php:150 msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "Callsign Statistics" msgstr "" -#: application/views/interface_assets/header.php:174 +#: application/views/interface_assets/header.php:176 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:176 +#: application/views/interface_assets/header.php:178 msgid "CQ WAZ" msgstr "" -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:182 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:188 msgid "Worked All Europe (WAE)" msgstr "" -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:212 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:218 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:220 +#: application/views/interface_assets/header.php:222 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:224 +#: application/views/interface_assets/header.php:226 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:226 +#: application/views/interface_assets/header.php:228 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:230 +#: application/views/interface_assets/header.php:232 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:238 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:240 +#: application/views/interface_assets/header.php:242 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:242 +#: application/views/interface_assets/header.php:244 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:246 +#: application/views/interface_assets/header.php:248 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:252 +#: application/views/interface_assets/header.php:254 msgid "The Netherlands" msgstr "" -#: application/views/interface_assets/header.php:254 +#: application/views/interface_assets/header.php:256 msgid "WAP Worked All Provinces" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:260 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:264 +#: application/views/interface_assets/header.php:266 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:281 +#: application/views/interface_assets/header.php:283 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:283 +#: application/views/interface_assets/header.php:285 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:285 +#: application/views/interface_assets/header.php:287 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:287 +#: application/views/interface_assets/header.php:289 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:293 +#: application/views/interface_assets/header.php:295 #: application/views/stationsetup/stationsetup.php:116 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:298 +#: application/views/interface_assets/header.php:300 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:304 +#: application/views/interface_assets/header.php:306 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:40 #: application/views/statistics/index.php:50 @@ -8896,127 +8916,127 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:310 +#: application/views/interface_assets/header.php:312 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:314 +#: application/views/interface_assets/header.php:316 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:361 +#: application/views/interface_assets/header.php:363 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:363 +#: application/views/interface_assets/header.php:365 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:370 +#: application/views/interface_assets/header.php:372 #: application/views/logbookadvanced/index.php:568 #: application/views/oqrs/index.php:27 application/views/user/edit.php:470 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:397 +#: application/views/interface_assets/header.php:399 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" msgstr "" -#: application/views/interface_assets/header.php:408 +#: application/views/interface_assets/header.php:410 #: application/views/user/edit.php:53 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:423 msgid "Switch to Clubstation:" msgstr "" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:427 #, php-format msgid "Switch to %s" msgstr "" -#: application/views/interface_assets/header.php:429 +#: application/views/interface_assets/header.php:431 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:440 msgid "No Clubstations available" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:448 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:454 +#: application/views/interface_assets/header.php:456 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:456 +#: application/views/interface_assets/header.php:458 msgid "EDI Export" msgstr "" -#: application/views/interface_assets/header.php:480 +#: application/views/interface_assets/header.php:482 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:488 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:490 +#: application/views/interface_assets/header.php:492 msgid "Clublog Import / Export" msgstr "" -#: application/views/interface_assets/header.php:501 +#: application/views/interface_assets/header.php:503 #: application/views/logbookadvanced/index.php:675 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:502 +#: application/views/interface_assets/header.php:504 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:506 +#: application/views/interface_assets/header.php:508 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "" -#: application/views/interface_assets/header.php:507 +#: application/views/interface_assets/header.php:509 #, php-format msgid "Switch back to %s" msgstr "" -#: application/views/interface_assets/header.php:511 +#: application/views/interface_assets/header.php:513 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:561 +#: application/views/interface_assets/header.php:563 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" -#: application/views/interface_assets/header.php:598 +#: application/views/interface_assets/header.php:600 msgid "Extras" msgstr "" @@ -9998,7 +10018,7 @@ msgid "Default on" msgstr "" #: application/views/lookup/index.php:11 -#: application/views/qso/award_tabs.php:45 +#: application/views/qso/award_tabs.php:53 msgid "US State" msgstr "" @@ -10978,6 +10998,33 @@ msgstr "" msgid "The QSOs are marked as exported to QRZ Logbook." msgstr "" +#: application/views/qslcard/confirmationresult.php:16 +msgid "QSO date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:19 +msgid "Confirmation date" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:20 +#: application/views/user/index.php:30 +msgid "Type" +msgstr "" + +#: application/views/qslcard/confirmationresult.php:52 +msgid "No confirmations found." +msgstr "" + +#: application/views/qslcard/confirmations.php:6 +msgid "" +"A maximum of 1000 rows are shown in the table. This is for performance " +"reasons." +msgstr "" + +#: application/views/qslcard/confirmations.php:11 +msgid "Confirmation type" +msgstr "" + #: application/views/qslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store QSL Card assets" @@ -11137,46 +11184,62 @@ msgid "Showing summary for IOTA" msgstr "" #: application/views/qso/award_tabs.php:9 -msgid "Showing summary for continent" +msgid "Showing summary for DOK" msgstr "" #: application/views/qso/award_tabs.php:10 -msgid "Showing summary for gridsquare" +msgid "Showing summary for satellite QSOs with" msgstr "" #: application/views/qso/award_tabs.php:11 -msgid "State input needs to be filled to show a summary!" +msgid "Showing summary for continent" msgstr "" #: application/views/qso/award_tabs.php:12 -msgid "SOTA input needs to be filled to show a summary!" +msgid "Showing summary for gridsquare" msgstr "" #: application/views/qso/award_tabs.php:13 -msgid "POTA input needs to be filled to show a summary!" +msgid "State input needs to be filled to show a summary!" msgstr "" #: application/views/qso/award_tabs.php:14 -msgid "IOTA input needs to be filled to show a summary!" +msgid "SOTA input needs to be filled to show a summary!" msgstr "" #: application/views/qso/award_tabs.php:15 -msgid "WWFF input needs to be filled to show a summary!" +msgid "POTA input needs to be filled to show a summary!" msgstr "" #: application/views/qso/award_tabs.php:16 -msgid "Gridsquare input needs to be filled to show a summary!" +msgid "IOTA input needs to be filled to show a summary!" msgstr "" #: application/views/qso/award_tabs.php:17 -msgid "Summary only shows for the first POTA entered." +msgid "DOK input needs to be filled to show a summary!" msgstr "" #: application/views/qso/award_tabs.php:18 -msgid "Summary only shows for the first gridsquare entered." +msgid "WWFF input needs to be filled to show a summary!" msgstr "" #: application/views/qso/award_tabs.php:19 +msgid "Propagation mode needs to be 'SAT' to show a summary!" +msgstr "" + +#: application/views/qso/award_tabs.php:20 +msgid "Gridsquare input needs to be filled to show a summary!" +msgstr "" + +#: application/views/qso/award_tabs.php:21 +msgid "Summary only shows for the first POTA entered." +msgstr "" + +#: application/views/qso/award_tabs.php:22 +msgid "Summary only shows for the first gridsquare entered." +msgstr "" + +#: application/views/qso/award_tabs.php:23 msgid "Summary only shows for US states." msgstr "" @@ -11426,7 +11489,7 @@ msgstr "" #: application/views/qso/index.php:40 #: application/views/statistics/antennaanalytics.php:45 -#: application/views/statistics/antennaanalytics.php:88 +#: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" @@ -13857,10 +13920,6 @@ msgstr "" msgid "Create user" msgstr "" -#: application/views/user/index.php:30 -msgid "Type" -msgstr "" - #: application/views/user/index.php:31 application/views/user/index.php:158 msgid "Last seen" msgstr "" diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index 32ccbbf41..d35dfc5c2 100644 --- a/application/locale/sq/LC_MESSAGES/messages.po +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-07-02 15:54+0000\n" +"POT-Creation-Date: 2025-07-06 15:33+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) db->where('COL_CALL', $searchphrase); + $this->db->where('COL_PROP_MODE', 'SAT'); + $this->db->where('COL_SAT_NAME', $sat); + break; case 'CQZone': $this->db->where('COL_CQZ', $searchphrase); break; diff --git a/application/models/Lookup_model.php b/application/models/Lookup_model.php index eb1088d60..194f2ebf8 100644 --- a/application/models/Lookup_model.php +++ b/application/models/Lookup_model.php @@ -2,6 +2,25 @@ class Lookup_model extends CI_Model{ + function getSatResult($queryinfo){ + foreach ($queryinfo['sats'] as $sat) { + $resultArray[$sat] = '-'; + } + $sql = "SELECT DISTINCT(COL_SAT_NAME) FROM ".$this->config->item('table_name')." WHERE COL_PROP_MODE = 'SAT' AND COL_CALL = ?;"; + $binds[] = $queryinfo['callsign']; + $query = $this->db->query($sql,$binds); + foreach ($query->result() as $workedsat) { + $resultArray[$workedsat->COL_SAT_NAME] = 'W'; + } + $sql = "SELECT DISTINCT(COL_SAT_NAME) FROM ".$this->config->item('table_name')." WHERE COL_PROP_MODE = 'SAT' AND COL_CALL = ?"; + $sql .= $this->buildConfirmationString('confirmed'); + $query = $this->db->query($sql,$binds); + foreach ($query->result() as $confirmedsat) { + $resultArray[$confirmedsat->COL_SAT_NAME] = 'C'; + } + return $resultArray; + } + function getSearchResult($queryinfo){ $modes = $this->get_worked_modes($queryinfo['location_list']); @@ -107,41 +126,8 @@ class Lookup_model extends CI_Model{ $binds = []; $sqlquerytypestring = ''; + $sqlqueryconfirmationstring = $this->buildConfirmationString($confirmedtype); - if ($confirmedtype == 'confirmed') { - $user_default_confirmation = $this->session->userdata('user_default_confirmation'); - $extrawhere=''; - if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) { - $extrawhere="COL_QSL_RCVD='Y'"; - } - if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) { - if ($extrawhere!='') { - $extrawhere.=" OR"; - } - $extrawhere.=" COL_LOTW_QSL_RCVD='Y'"; - } - if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) { - if ($extrawhere!='') { - $extrawhere.=" OR"; - } - $extrawhere.=" COL_EQSL_QSL_RCVD='Y'"; - } - - if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Z') !== false) { - if ($extrawhere!='') { - $extrawhere.=" OR"; - } - $extrawhere.=" COL_QRZCOM_QSO_DOWNLOAD_STATUS='Y'"; - } - - if (($confirmedtype == 'confirmed') && ($extrawhere != '')){ - $sqlqueryconfirmationstring = " and (".$extrawhere.")"; - } else { - $sqlqueryconfirmationstring = ' and (1=0)'; - } - } else { - $sqlqueryconfirmationstring = ''; - } // Fetching info for all modes and bands except satellite $sql = "SELECT distinct col_band, lower(col_mode) as col_mode FROM " . $this->config->item('table_name') . " thcv"; @@ -199,6 +185,44 @@ class Lookup_model extends CI_Model{ return $query->result(); } + function buildConfirmationString ($confirmedtype) { + if ($confirmedtype == 'confirmed') { + $user_default_confirmation = $this->session->userdata('user_default_confirmation'); + $extrawhere=''; + if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) { + $extrawhere="COL_QSL_RCVD='Y'"; + } + if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) { + if ($extrawhere!='') { + $extrawhere.=" OR"; + } + $extrawhere.=" COL_LOTW_QSL_RCVD='Y'"; + } + if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) { + if ($extrawhere!='') { + $extrawhere.=" OR"; + } + $extrawhere.=" COL_EQSL_QSL_RCVD='Y'"; + } + + if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Z') !== false) { + if ($extrawhere!='') { + $extrawhere.=" OR"; + } + $extrawhere.=" COL_QRZCOM_QSO_DOWNLOAD_STATUS='Y'"; + } + + if (($confirmedtype == 'confirmed') && ($extrawhere != '')){ + $sqlqueryconfirmationstring = " and (".$extrawhere.")"; + } else { + $sqlqueryconfirmationstring = ' and (1=0)'; + } + } else { + $sqlqueryconfirmationstring = ''; + } + return $sqlqueryconfirmationstring; + } + /* * Get's the worked modes from the log */ diff --git a/application/models/Qsl_model.php b/application/models/Qsl_model.php index 38f4b3264..b6b24e3ef 100644 --- a/application/models/Qsl_model.php +++ b/application/models/Qsl_model.php @@ -141,7 +141,7 @@ class Qsl_model extends CI_Model { return $this->db->insert_id(); } - // return path of qsl file : u=url / p=real path + // return path of qsl file : u=url / p=real path function get_imagePath($pathorurl='u', $user_id=null) { // test if new folder directory option is enabled @@ -178,4 +178,66 @@ class Qsl_model extends CI_Model { return 'assets/qslcard'; } } + + function getConfirmations($confirmationtype) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + if (!$logbooks_locations_array) { + return null; + } + + $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $table = $this->config->item('table_name'); + $sql_parts = array(); + + if (in_array('qsl', $confirmationtype)) { + $sql_parts[] = " + SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_sat_name, col_qslrdate AS rxdate, 'QSL Card' AS type, + EXISTS (SELECT 1 FROM qsl_images WHERE qsoid = $table.COL_PRIMARY_KEY) AS qslcount + FROM $table + WHERE station_id IN ($location_list) AND col_qslrdate IS NOT NULL AND coalesce(col_qslrdate, '') <> '' AND col_qsl_rcvd = 'Y' + "; + } + if (in_array('lotw', $confirmationtype)) { + $sql_parts[] = " + SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_sat_name, col_lotw_qslrdate AS rxdate, 'LoTW' AS type, 0 as qslcount + FROM $table + WHERE station_id IN ($location_list) AND col_lotw_qslrdate IS NOT NULL AND coalesce(col_lotw_qslrdate, '') <> '' AND col_lotw_qsl_rcvd = 'Y' + "; + } + if (in_array('eqsl', $confirmationtype)) { + $sql_parts[] = " + SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_sat_name, col_eqsl_qslrdate AS rxdate, 'eQSL' AS type, 0 as qslcount + FROM $table + WHERE station_id IN ($location_list) AND col_eqsl_qslrdate IS NOT NULL AND coalesce(col_eqsl_qslrdate, '') <> '' AND col_eqsl_qsl_rcvd = 'Y' + "; + } + if (in_array('qrz', $confirmationtype)) { + $sql_parts[] = " + SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_sat_name, col_qrzcom_qso_download_date AS rxdate, 'QRZ.com' AS type, 0 as qslcount + FROM $table + WHERE station_id IN ($location_list) AND col_qrzcom_qso_download_date IS NOT NULL AND coalesce(col_qrzcom_qso_download_date, '') <> '' AND col_qrzcom_qso_download_status = 'Y' + "; + } + if (in_array('clublog', $confirmationtype)) { + $sql_parts[] = " + SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_sat_name, col_clublog_qso_download_date AS rxdate, 'Clublog' AS type, 0 as qslcount + FROM $table + WHERE station_id IN ($location_list) AND col_clublog_qso_download_date IS NOT NULL AND coalesce(col_clublog_qso_download_date, '') <> '' AND col_clublog_qso_download_status = 'Y' + "; + } + + if (count($sql_parts) == 0) { + return array(); + } + + $sql = implode(" UNION ALL ", $sql_parts); + $sql = "SELECT * FROM ( $sql ) AS unioned_results ORDER BY rxdate DESC LIMIT 1000"; + + $query = $this->db->query($sql); + + return $query->result(); + } } + diff --git a/application/models/Stats.php b/application/models/Stats.php index b8f30b385..fe56669ca 100644 --- a/application/models/Stats.php +++ b/application/models/Stats.php @@ -806,8 +806,8 @@ $binding[] = trim($sat); } - if ($orbit !== 'All' && $orbit !== '') { - $conditions[] = "orbit = ?"; + if ($orbit !== '') { + $conditions[] = "orbit in ?"; $binding[] = $orbit; } @@ -864,8 +864,8 @@ $binding[] = $mode; } - if ($orbit !== 'All' && $orbit !== '') { - $conditions[] = "orbit = ?"; + if ($orbit !== '') { + $conditions[] = "orbit in ?"; $binding[] = $orbit; } diff --git a/application/views/awards/sota/index.php b/application/views/awards/sota/index.php index ca6b357e5..70a53eb9e 100644 --- a/application/views/awards/sota/index.php +++ b/application/views/awards/sota/index.php @@ -15,27 +15,36 @@ session->userdata('user_date_format')) { + // If Logged in and session exists + $custom_date_format = $this->session->userdata('user_date_format'); + } else { + // Get Default date format from /config/wavelog.php + $custom_date_format = $this->config->item('qso_date_format'); + } ?> - - +
+ - - - - - - + + + + + + + - + + num_rows() > 0) { foreach ($sota_all->result() as $row) { ?> - - + + @@ -45,7 +54,7 @@ } } ?> - +
COL_SOTA_REF; ?>COL_TIME_ON); echo date('d/m/y', $timestamp); ?> - COL_TIME_ON); echo date('H:i', $timestamp); ?>COL_TIME_ON); echo date($custom_date_format, $timestamp); ?>COL_TIME_ON); echo date('H:i', $timestamp); ?> COL_CALL; ?> COL_BAND; ?> COL_RST_SENT; ?>
' . __("Nothing found!") . ''; diff --git a/application/views/contesting/index.php b/application/views/contesting/index.php index 4b4243be0..3e15846ae 100644 --- a/application/views/contesting/index.php +++ b/application/views/contesting/index.php @@ -1,9 +1,10 @@
- +

LIVE" : " POST"); ?>
@@ -67,8 +68,8 @@
@@ -199,7 +200,7 @@
- +