diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 6da7591f9..976c51f1e 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -775,7 +775,6 @@ class Awards extends CI_Controller { public function rac() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/racmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/racmap_geojson.js")), 'assets/js/sections/racmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/racmap.js")), 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -838,7 +837,6 @@ class Awards extends CI_Controller { public function helvetia() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/helvetiamap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/helvetiamap_geojson.js")), 'assets/js/sections/helvetiamap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/helvetiamap.js")), 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -1369,7 +1367,6 @@ class Awards extends CI_Controller { public function wap() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wapmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wapmap_geojson.js")), 'assets/js/sections/wapmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wapmap.js")), 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -1464,14 +1461,14 @@ class Awards extends CI_Controller { foreach ($wap_array as $was => $value) { foreach ($value as $key) { if($key != "") { - if (strpos($key, '>W<') !== false) { - $states[$was] = 'W'; - break; - } if (strpos($key, '>C<') !== false) { $states[$was] = 'C'; break; } + if (strpos($key, '>W<') !== false) { + $states[$was] = 'W'; + break; + } if (strpos($key, '-') !== false) { $states[$was] = '-'; break; @@ -2395,9 +2392,7 @@ class Awards extends CI_Controller { $this->load->model('logbooks_model'); $this->load->model('stations'); - // Get station profiles for multiselect - $data['station_profile'] = $this->stations->all_of_user(); - $data['active_station_id'] = $this->session->userdata('active_station_logbook'); + $data['active_station_logbook'] = $this->logbooks_model->find_name($this->session->userdata('active_station_logbook')); $this->load->model('award_pl_polska'); $this->load->model('bands'); diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 1ccbe628b..8b963fefa 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -194,12 +194,13 @@ class Logbookadvanced extends CI_Controller { } $callbook = $this->logbook_model->loadCallBook($qso['COL_CALL'], $this->config->item('use_fullname')); + $gridsquareAccuracyCheck = xss_clean($this->input->post('gridsquareAccuracyCheck')); if ($callbook['callsign'] ?? "" !== "") { $this->load->model('stations'); $active_station_id = $this->stations->find_active(); $station_profile = $this->stations->profile($active_station_id)->row_array(); - $this->logbookadvanced_model->updateQsoWithCallbookInfo($qso['COL_PRIMARY_KEY'], $qso, $callbook, $station_profile['station_gridsquare']); + $this->logbookadvanced_model->updateQsoWithCallbookInfo($qso['COL_PRIMARY_KEY'], $qso, $callbook, $gridsquareAccuracyCheck, $station_profile['station_gridsquare']); $qso = $this->logbookadvanced_model->getQsosForAdif(json_encode($qsoID), $this->session->userdata('user_id'))->row_array(); } @@ -879,4 +880,8 @@ class Logbookadvanced extends CI_Controller { header("Content-Type: application/json"); print json_encode($result); } + + public function callbookDialog() { + $this->load->view('logbookadvanced/callbookdialog'); + } } diff --git a/application/controllers/Qslprint.php b/application/controllers/Qslprint.php index 6a2b258ba..4ca9f943f 100644 --- a/application/controllers/Qslprint.php +++ b/application/controllers/Qslprint.php @@ -92,30 +92,39 @@ class QSLPrint extends CI_Controller { $file = fopen('php://output', 'w'); $header = array("STATION_CALLSIGN", - "COL_CALL", - "COL_QSL_VIA", - "COL_TIME_ON", - "COL_MODE", - "COL_SUBMODE", - "COL_FREQ", - "COL_BAND", - "COL_RST_SENT", - "COL_SAT_NAME", - "COL_SAT_MODE", - "COL_QSL_RCVD", - "COL_COMMENT", - "COL_ROUTING", + "CALL", + "QSL_VIA", + "DATE_ON", + "TIME_ON", + "MODE", + "SUBMODE", + "FREQ", + "BAND", + "RST_SENT", + "SAT_NAME", + "SAT_MODE", + "PROP_MODE", + "QSL_RCVD", + "COMMENT", + "ROUTING", "ADIF", - "ENTITY"); + "ENTITY", + "GRIDSQUARE", + "STATION_GRIDSQUARE"); - fputcsv($file, $header); + fputcsv($file, $header, separator: ",", enclosure: "\"", escape: "\\"); foreach ($myData->result() as $qso) { + $datetimeObj = new DateTime($qso->COL_TIME_ON); + $date = $datetimeObj->format('Y-m-d'); + $time = $datetimeObj->format('H:i:s'); + fputcsv($file, array($qso->STATION_CALLSIGN, $qso->COL_CALL, $qso->COL_QSL_VIA!=""?"via ".$qso->COL_QSL_VIA:"", - $qso->COL_TIME_ON, + $date, + $time, $qso->COL_MODE, $qso->COL_SUBMODE, $qso->COL_FREQ, @@ -123,11 +132,14 @@ class QSLPrint extends CI_Controller { $qso->COL_RST_SENT, $qso->COL_SAT_NAME, $qso->COL_SAT_MODE, + $qso->COL_PROP_MODE, $qso->COL_QSL_RCVD =='Y'?'TNX QSL':'PSE QSL', $qso->COL_COMMENT, $qso->COL_ROUTING, $qso->ADIF, - $qso->ENTITY)); + $qso->ENTITY, + $qso->COL_GRIDSQUARE, + $qso->COL_MY_GRIDSQUARE), separator: ",", enclosure: "\"", escape: "\\"); } fclose($file); diff --git a/application/libraries/Geojson.php b/application/libraries/Geojson.php index 08cea2469..618143f42 100644 --- a/application/libraries/Geojson.php +++ b/application/libraries/Geojson.php @@ -23,6 +23,7 @@ class Geojson { */ const SUPPORTED_STATES = [ 1 => ['name' => 'Canada', 'enabled' => true], // 13 provinces/territories + 6 => ['name' => 'Alaska', 'enabled' => true], // 1 state 27 => ['name' => 'Belarus', 'enabled' => true], // 7 subdivisions 29 => ['name' => 'Canary Islands', 'enabled' => true], // 2 provinces 32 => ['name' => 'Ceuta & Melilla', 'enabled' => true], // 2 autonomous cities @@ -31,6 +32,7 @@ class Geojson { 108 => ['name' => 'Brazil', 'enabled' => true], // 27 subdivisions 112 => ['name' => 'Chile', 'enabled' => true], // 16 regions 137 => ['name' => 'Republic of Korea', 'enabled' => true], // 17 subdivisions + 110 => ['name' => 'Hawaii', 'enabled' => true], // 1 state 144 => ['name' => 'Uruguay', 'enabled' => true], // 19 subdivisions 148 => ['name' => 'Venezuela', 'enabled' => true], // 24 states 149 => ['name' => 'Azores', 'enabled' => true], // 1 autonomous region @@ -39,6 +41,8 @@ class Geojson { 170 => ['name' => 'New Zealand', 'enabled' => true], // 16 regions 209 => ['name' => 'Belgium', 'enabled' => true], // 11 subdivisions 212 => ['name' => 'Bulgaria', 'enabled' => true], // 28 subdivisions + 214 => ['name' => 'Corsica', 'enabled' => true], // 2 departments (2A, 2B) + 225 => ['name' => 'Sardinia', 'enabled' => true], // 5 provinces 227 => ['name' => 'France', 'enabled' => true], // 96 departments 230 => ['name' => 'Germany', 'enabled' => true], // 16 federal states 239 => ['name' => 'Hungary', 'enabled' => true], // 20 subdivisions diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 7faa8f834..04b1a04c0 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-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6419,7 +6422,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6682,16 +6685,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6702,7 +6705,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6711,23 +6714,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6766,11 +6769,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6778,7 +6786,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6787,19 +6795,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10475,10 +10483,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10928,98 +10936,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11027,57 +11035,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11648,6 +11656,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/bs/LC_MESSAGES/messages.po b/application/locale/bs/LC_MESSAGES/messages.po index 9cf28974d..55eeeb8d2 100644 --- a/application/locale/bs/LC_MESSAGES/messages.po +++ b/application/locale/bs/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-11-16 17:03+0000\n" "Last-Translator: Samir \n" "Language-Team: Bosnian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6426,7 +6429,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6689,16 +6692,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6709,7 +6712,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6718,23 +6721,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6773,11 +6776,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6785,7 +6793,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6794,19 +6802,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10488,10 +10496,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10941,78 +10949,78 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11022,20 +11030,20 @@ msgstr "" "Provjerite koji je DXCC za ovu određenu lokaciju ispravan. Ako ste sigurni, " "zanemarite ovo upozorenje." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11043,57 +11051,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11664,6 +11672,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/cnr/LC_MESSAGES/messages.po b/application/locale/cnr/LC_MESSAGES/messages.po index 57ba0d187..330758975 100644 --- a/application/locale/cnr/LC_MESSAGES/messages.po +++ b/application/locale/cnr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Montenegrin = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6426,7 +6429,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6689,16 +6692,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6709,7 +6712,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6718,23 +6721,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6773,11 +6776,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6785,7 +6793,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6794,19 +6802,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10486,10 +10494,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10939,98 +10947,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11038,57 +11046,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11659,6 +11667,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index 2e1f0e967..ebab28905 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-09-23 14:46+0000\n" "Last-Translator: Filip Melik \n" "Language-Team: Czech = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6428,7 +6431,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6691,16 +6694,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6711,7 +6714,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6720,23 +6723,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6775,11 +6778,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6787,7 +6795,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6796,19 +6804,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10490,10 +10498,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10943,98 +10951,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11042,57 +11050,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "lokátor" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Celkový počet" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11663,6 +11671,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 972338301..7e810c1ad 100644 Binary files a/application/locale/de_DE/LC_MESSAGES/messages.mo and b/application/locale/de_DE/LC_MESSAGES/messages.mo differ diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index adaf4ac90..1a1d1103b 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-27 13:42+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-12-01 07:02+0000\n" "Last-Translator: Florian Wolters \n" "Language-Team: German \n" @@ -97,7 +97,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -155,8 +155,8 @@ msgid "Activated Gridsquare Map" msgstr "Karte der aktivierten Locator" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -323,20 +323,20 @@ msgstr "Diplome" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "Diplome – %s" @@ -526,58 +526,58 @@ msgstr "CQ WAZ (Worked All Zones)" msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA (Islands On The Air)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "Log Ansicht – Counties" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "Diplome - " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "Gearbeitete Locator" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "Auf LoTW bestätigte Locator" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "Per Papier QSL bestätigte Locator" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" msgstr "Summe gearbeiteter Locator" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -587,44 +587,44 @@ msgstr "Fred Fish Memorial Award (FFMA)" msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "Diplome - SIG - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "ITU-Zonen" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" -msgstr "" +msgstr "\"Polska\" Diplom" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:336 @@ -775,7 +775,7 @@ msgstr "Kein Benutzer hat Clublog konfiguriert." #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1290,15 +1290,15 @@ msgstr "Logbuch" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1323,16 +1323,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1362,15 +1362,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1409,9 +1409,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1593,7 +1593,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1714,9 +1714,9 @@ msgstr "Distanz" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1837,7 +1837,7 @@ msgstr "Operator" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2357,8 +2357,8 @@ msgstr "Standardgerät (klicken zum freigeben)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2378,10 +2378,10 @@ msgstr "Bearbeiten" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2474,9 +2474,9 @@ msgstr "Du hast keine Stations-Standorte. Klicke %s um eine zu erstellen!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "hier" @@ -2552,9 +2552,8 @@ msgstr "Erstelle Stationsstandort" msgid "Edit Station Location: " msgstr "Bearbeite Stationsstandort: " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3444,19 +3443,19 @@ msgstr "Kein Rufzeichen angegeben" msgid "DXCC has to be Numeric" msgstr "DXCC muss numerisch sein" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, 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:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3464,7 +3463,7 @@ msgstr "" "Du hast versucht, ein QSO mit ungültigem Datum zu importieren. Dieses QSO " "wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3472,7 +3471,7 @@ 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:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3481,64 +3480,64 @@ msgstr "" "QSO um %s: Du hast versucht, ein QSO ohne Bandinformationen zu importieren. " "Dieses QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "POTA Referenz bereits im Log" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSO aktualisiert" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3708,9 +3707,9 @@ msgstr "Differenz" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3748,8 +3747,8 @@ msgstr "Differenz" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4127,14 +4126,14 @@ msgstr "troposphärisches Ducting" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4216,15 +4215,15 @@ msgstr "Bestätigung" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4276,7 +4275,7 @@ msgstr "Minimale Anzahl" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4286,9 +4285,9 @@ msgstr "Minimale Anzahl" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4626,8 +4625,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "GEFAHR" @@ -4752,7 +4751,7 @@ msgstr "Markiere die exportierten QSO als 'zu LoTW hochgeladen'" #: application/views/adif/import.php:284 msgid "Export QSOs not uploaded to LoTW" -msgstr "Markiere die exportierten QSO als 'zu LoTW nicht hochgeladen'" +msgstr "Exportiere nur QSOs, die bisher NICHT zu LoTW hochgeladen wurden" #: application/views/adif/import.php:291 msgid "Export QSOs" @@ -5059,7 +5058,7 @@ msgstr "Einfacher Name, um zu beschreiben, wofür du diese API verwendest." #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5175,7 +5174,7 @@ msgid "Permissions" msgstr "Berechtigungen" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5255,12 +5254,12 @@ msgstr "Erstelle einen Nur-Lesen-Schlüssel" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5382,9 +5381,9 @@ msgstr "Bestätigte Counties" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5611,9 +5610,9 @@ msgstr "Gearbeitet" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Zeige gearbeitete" @@ -5628,9 +5627,9 @@ msgstr "Zeige gearbeitete" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Zeige bestätigte" @@ -5644,9 +5643,9 @@ msgstr "Zeige bestätigte" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Zeige nicht gearbeitete" @@ -5661,9 +5660,9 @@ msgstr "Zeige nicht gearbeitete" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "QSO mit QSL-Typ anzeigen" @@ -5672,7 +5671,7 @@ msgstr "QSO mit QSL-Typ anzeigen" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5686,8 +5685,8 @@ msgstr "QSL-Karte" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabelle" @@ -5698,12 +5697,12 @@ msgstr "Tabelle" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5720,9 +5719,9 @@ msgstr "Karte" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Zusammenfassung" @@ -5738,9 +5737,9 @@ msgstr "Zusammenfassung" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Gesamt gearbeitet" @@ -5756,9 +5755,9 @@ msgstr "Gesamt gearbeitet" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "Gesamt bestätigt" @@ -5828,9 +5827,9 @@ msgstr "DOK + SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Gearbeitet / Bestätigt" @@ -5841,9 +5840,9 @@ msgstr "Gearbeitet / Bestätigt" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Jedes Band" @@ -5852,14 +5851,14 @@ msgstr "Jedes Band" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6490,11 +6489,11 @@ msgstr "SAT" #: application/views/awards/pl_polska/index.php:3 msgid "Polish Voivodeships" -msgstr "" +msgstr "Polnische Woiwodschaften" #: application/views/awards/pl_polska/index.php:4 msgid "Hover over a voivodeship" -msgstr "" +msgstr "Bewege die Maus über eine Woiwodschaft" #: application/views/awards/pl_polska/index.php:38 msgid "" @@ -6502,6 +6501,9 @@ msgid "" "contacts with stations operating from all 16 Polish voivodeships " "(provinces). Valid from January 1, 1999." msgstr "" +"Das Polska Diplom wird vom Polnischen Amateurfunkverband (PZK) für " +"Verbindungen mit Stationen aus allen 16 polnischen Woiwodschaften verliehen. " +"Gültig ab dem 1. Januar 1999." #: application/views/awards/pl_polska/index.php:39 msgid "" @@ -6509,177 +6511,194 @@ msgid "" "(RTTY/PSK/FSK), and individual bands (160M-2M). Classes: Basic (1 QSO/voiv), " "Bronze (3), Silver (7), Gold (12). All 16 voivodeships required." msgstr "" +"Auszeichnungskategorien: MIXED (alle Betriebsarten/Bänder), PHONE (SSB/AM/FM/" +"SSTV), CW, DIGI (RTTY/PSK/FSK) und einzelne Bänder (160 m–2 m). Klassen: " +"Anfänger (1 QSO/Woiwodschaft), Bronze (3), Silber (7), Gold (12). Alle 16 " +"Woiwodschaften erforderlich." #: application/views/awards/pl_polska/index.php:40 #, php-format msgid "Official rules and information: %s" -msgstr "" +msgstr "Offizielle Regeln und Informationen: %s" #: application/views/awards/pl_polska/index.php:40 msgid "PZK Polska Award Rules" -msgstr "" +msgstr "PZK Polska Dimplomregeln" #: application/views/awards/pl_polska/index.php:41 msgid "" "Requirements: COL_STATE (voivodeship code), COL_DXCC=269 (Poland), QSO date " ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" +"Erforderlich: COL_STATE (Code der Woiwodschaft), COL_DXCC=269 (Polen), QSO " +"Datum >= 01.01.1990. Keine Cross-Band/Cross-Mode/Relais-Verbindungen." -#: application/views/awards/pl_polska/index.php:73 -msgid "Confirmation methods" +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:62 +msgid "Confirmation methods" +msgstr "Bestätigungsmethoden" + +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" +"Gemäß den offiziellen Regeln werden QSL-Karten oder LoTW Bestätigungen für " +"den Dimplomantrag akzeptiert. Andere digitale Bestätigungen werden hier nur " +"zur Information angezeigt." -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" -msgstr "" +msgstr "Diplomkategorien" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" +"Polsa Diplomkategorien basieren auf der Mindestanzahl bestätigter QSOs mit " +"jeder der 16 Woiwodschaften:" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" -msgstr "" +msgstr "1 QSO pro Woiwodschaft" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" -msgstr "" +msgstr "Anfängerklasse" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" -msgstr "" +msgstr "3 QSOs pro Woiwodschaft" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" -msgstr "" +msgstr "Bronzeklasse (3.)" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" -msgstr "" +msgstr "7 QSOs pro Woiwodschaft" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" -msgstr "" +msgstr "Silberklasse (2.)" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" -msgstr "" +msgstr "12 QSOs pro Woiwodschaft" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" -msgstr "" +msgstr "Goldklasse (1.)" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" -msgstr "" +msgstr "Gratulation!" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" -msgstr "" +msgstr "Du hast die Bedingungen folgender Diplomkategorien erfüllt" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" -msgstr "" +msgstr "QSOs pro Mode-Kategorie" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" -msgstr "" +msgstr "QSOs pro Band" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" -msgstr "" +msgstr "Woiwodschaft" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Code" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" -msgstr "" +msgstr "MIXED" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" -msgstr "" +msgstr "PHONE" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" -msgstr "" +msgstr "DIGI" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" -msgstr "" +msgstr "Gesamte Woiwodschaften" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" -msgstr "" +msgstr "Bravo! Du bist berechtigt," -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" -msgstr "" +msgstr "Diplomkategorie!" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" -msgstr "" +msgstr "Diplomkategorie:" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" -msgstr "" +msgstr "Mode-Kategorien" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" -msgstr "" +msgstr "Band-Kategorien" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" -msgstr "Repariere Staaten" +msgstr "Aktualisiere Staaten" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" -msgstr "" +msgstr "Erweitertes Logbuch" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" +"Dieses Diplom basiert auf dem State-Feld deines Logbuchs. Stelle sicher, " +"dass diese Feld für alle Kontakte mit Polen (SP) befüllt ist." -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" -msgstr "" +msgstr "Tipp:" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" -msgstr "" +msgstr "Benutze" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." -msgstr "" +msgstr "um die Staaten anhand des Locators automatisch zu befüllen." #: application/views/awards/pota/index.php:7 msgid "POTA Awards" @@ -6737,7 +6756,7 @@ msgid "Province" msgstr "Provinz" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Bewege die Maus über eine Provinz" @@ -7051,16 +7070,16 @@ msgstr "Zeige WAJA-Karte" msgid "Prefecture" msgstr "Präfektur" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Provinz" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "VRZA WAP Diplom" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7079,7 +7098,7 @@ msgstr "" "Wettbewerben und Schulungen und vertreten die niederländischen Amateure " "national und international." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7094,13 +7113,13 @@ msgstr "" "Kontakt zu treten, und fördert sowohl die nationale Vernetzung als auch die " "Betriebskompetenz." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "Informationen über die WAP Awards und deren Regeln findest du %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7108,11 +7127,11 @@ msgstr "" "Für diesen Award berücksichtigte Felder: DXCC (muss Niederlande sein) und " "STATE (muss eine gültige Abkürzung der Provinz enthalten!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Zeige WAP-Karte" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Provinz" @@ -7161,11 +7180,16 @@ msgstr "Staat" msgid "Hover over a state" msgstr "Bewege die Maus über einen Staat" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "WAS-Diplom" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7178,7 +7202,7 @@ msgstr "" "überarbeitet und verbessert, das Diplomprogramm zu optimieren und zu " "vereinfachen." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7193,13 +7217,13 @@ msgstr "" "ARRL sein, um sich für einen WAS bewerben zu können. Bewerber aus dem " "Ausland sind von dieser Anforderung befreit." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "Alle Informationen und Regeln für das ARRL WAS Diplom findest du %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7208,7 +7232,7 @@ msgstr "" "oder Hawaii sein) und STATE (muss die gültige Abkürzung eines U.S. " "Bundesstaats enthalten!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Zeige WAS-Karte" @@ -9716,6 +9740,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Verliere Deine Serie nicht - Du hast aktuell %s aufeinanderfolgende Tage mit " +"mindestens einem QSO pro Tag." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -11095,10 +11121,10 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11574,82 +11600,82 @@ msgstr "Versionsinfo" msgid "Failed to load the modal. Please try again." msgstr "Fehler beim Laden des Modals. Bitte versuche es erneut." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Beschreibung:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Suchmuster-Beschreibung" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Dein Suchmuster wurde gespeichert!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Suchmuster bearbeiten" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Gespeicherte Suchmuster:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Suchmuster ausführen" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Gespeicherte Suchmuster" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Du musst ein Suchmuster erstellen, bevor du suchst!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Nach ADIF exportieren" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Im erweiterten Logbuch öffnen" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "Warnung! Bist du sicher, dass du dieses gespeicherte Suchmuster löschen " "willst?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "Das gespeicherte Suchmuster wurde gelöscht!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" "Das gespeicherte Suchmuster konnte nicht gelöscht werden. Bitte versuche es " "erneut!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "Die Beschreibung des Suchmusters wurde aktualisiert!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Etwas ist beim Speichern schiefgelaufen. Bitte versuche es erneut!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11661,20 +11687,20 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Rufzeichen: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Anzahl: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Locator: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11682,57 +11708,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locator" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "Locator" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Summe" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSL-Karte für " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Warnung! Bist du sicher, dass du diese QSL-Karte löschen möchtest?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-Karte" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL-Karte für " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL-Bilddatei" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Vorderseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Rückseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" @@ -11859,7 +11885,7 @@ msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" -msgstr "" +msgstr "Polen" #: application/views/interface_assets/header.php:274 msgid "Switzerland" @@ -12312,6 +12338,18 @@ msgstr "Inklusive TNX Nachricht?" msgid "Start printing at?" msgstr "Druck starten bei?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index a70b1d3ec..560f50355 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-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6422,7 +6425,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6685,16 +6688,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6705,7 +6708,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6714,23 +6717,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6769,11 +6772,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6781,7 +6789,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6790,19 +6798,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10479,10 +10487,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10932,98 +10940,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11031,57 +11039,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11652,6 +11660,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 04d96804a..6e91e170c 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-10-22 00:19+0000\n" "Last-Translator: David Quental \n" "Language-Team: Spanish = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Código" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6726,7 +6729,7 @@ msgid "Province" msgstr "Provincia" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Pasa el cursor sobre una provincia" @@ -7041,16 +7044,16 @@ msgstr "Mostrar mapa de WAJA" msgid "Prefecture" msgstr "Prefectura" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Provincia" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "Premio WAP de VRZA" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7069,7 +7072,7 @@ msgstr "" "la organización de eventos, concursos y formación, y representan a los " "aficionados holandeses a nivel nacional e internacional." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7084,13 +7087,13 @@ msgstr "" "de estaciones en todo el país, promoviendo tanto la conectividad nacional " "como la habilidad operativa." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "Información sobre los premios WAP y sus reglas se puede encontrar %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7098,11 +7101,11 @@ msgstr "" "Campos tomados para este premio: DXCC (Debe ser Países Bajos) y ESTADO " "(¡Debe contener una abreviatura de estado válida!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Mostrar mapa WAP" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Provincia" @@ -7151,11 +7154,16 @@ msgstr "Estado" msgid "Hover over a state" msgstr "Pasa el cursor sobre un estado" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "Premio WAS" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7167,7 +7175,7 @@ msgstr "" "101º año de ARRL, han rediseñado los certificados y el programa con la " "esperanza de agilizar y mejorar el programa de premios." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7182,7 +7190,7 @@ msgstr "" "ARRL para solicitar un WAS. Los solicitantes de fuera de los EE.UU. están " "exentos de este requisito." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." @@ -7190,7 +7198,7 @@ msgstr "" "Toda la información y las reglas para el premio ARRL WAS se pueden encontrar " "en %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7199,7 +7207,7 @@ msgstr "" "Hawái) y ESTADO (¡Debe contener una abreviatura válida de un estado de EE." "UU.!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Mostrar mapa WAS" @@ -11074,10 +11082,10 @@ msgid "QSL Date" msgstr "Fecha QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11542,80 +11550,80 @@ msgstr "Información de Versión" msgid "Failed to load the modal. Please try again." msgstr "No se pudo cargar el modal. Por favor, inténtalo de nuevo." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Descripción:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Descripción de la consulta" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "¡Tu consulta ha sido guardada!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Consultas almacenadas:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Ejecutar consulta" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Consultas almacenadas" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "¡Necesitas hacer una consulta antes de buscar!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exportar a ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Abrir en el Registro Avanzado" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "¡Advertencia! ¿Estás seguro de que deseas eliminar esta consulta almacenada?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "¡La consulta almacenada ha sido eliminada!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" "No se pudo eliminar la consulta almacenada. ¡Por favor, inténtalo de nuevo!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "¡La descripción de la consulta ha sido actualizada!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Algo salió mal con el guardado. ¡Por favor, inténtalo de nuevo!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11625,20 +11633,20 @@ msgstr "" "Comprueba cuál es el DXCC correcto para esta localización en particular. Si " "está seguro, ignore esta advertencia." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Indicativo " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Contar: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Cuadrículas: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11646,57 +11654,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Cuadrículas" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Cuenta total" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "Tarjeta QSL para " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "¡Advertencia! ¿Estás seguro de que deseas eliminar esta tarjeta QSL?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Tarjeta eQSL" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "Tarjeta eQSL para " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Archivo de imagen QSL" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Frente de la tarjeta QSL:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Tarjeta QSL de regreso:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Agregar QSOs adicionales a una tarjeta QSL" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Algo salió mal. ¡Inténtalo de nuevo!" @@ -12279,6 +12287,18 @@ msgstr "¿Incluir mensaje de gracias?" msgid "Start printing at?" msgstr "¿Iniciar impresión desde?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/et/LC_MESSAGES/messages.po b/application/locale/et/LC_MESSAGES/messages.po index 7413fc585..b3aba35cf 100644 --- a/application/locale/et/LC_MESSAGES/messages.po +++ b/application/locale/et/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-02-11 12:33+0000\n" "Last-Translator: tviitkar \n" "Language-Team: Estonian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6421,7 +6424,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6684,16 +6687,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6704,7 +6707,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6713,23 +6716,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6768,11 +6771,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6780,7 +6788,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6789,19 +6797,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10477,10 +10485,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10930,78 +10938,78 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11011,20 +11019,20 @@ msgstr "" "asukoha jaoks korrektne. Kui olete oma valikus kindel, siis võite seda " "teadet ignoreerida." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11032,57 +11040,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11653,6 +11661,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 431d408b8..829ec9d5c 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Finnish = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6419,7 +6422,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6682,16 +6685,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6702,7 +6705,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6711,23 +6714,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6766,11 +6769,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6778,7 +6786,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6787,19 +6795,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10477,10 +10485,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10930,98 +10938,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11029,57 +11037,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11650,6 +11658,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index d7cff24c1..ca3429849 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-11-25 03:53+0000\n" "Last-Translator: F5MQU \n" "Language-Team: French = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Code" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6740,7 +6743,7 @@ msgid "Province" msgstr "Province" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Survoler une province" @@ -7057,16 +7060,16 @@ msgstr "Afficher la carte WAJA" msgid "Prefecture" msgstr "Préfecture" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Province" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "Trophée WAP VRZA" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7085,7 +7088,7 @@ msgstr "" "concours et des formations, et représentent les radioamateurs néerlandais " "aux niveaux national et international." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7100,7 +7103,7 @@ msgstr "" "avec un large éventail de stations à travers le pays, favorisant ainsi la " "connectivité nationale et les compétences opérationnelles." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." @@ -7108,7 +7111,7 @@ msgstr "" "Des informations sur les trophées WAP et leurs règles peuvent être trouvées " "%s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7116,11 +7119,11 @@ msgstr "" "Champs requis pour ce trophée : DXCC (doit être les Pays-Bas) et STATE (doit " "contenir une abréviation d'état valide !)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Afficher la carte WAP" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Province" @@ -7169,11 +7172,16 @@ msgstr "État" msgid "Hover over a state" msgstr "Survoler un état" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "Diplome WAS" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7186,7 +7194,7 @@ msgstr "" "certificats et le programme dans l'espoir de rationaliser et d'améliorer le " "programme de récompenses." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7201,7 +7209,7 @@ msgstr "" "membres de l'ARRL pour postuler au WAS. Les candidats résidant hors des " "États-Unis sont exemptés de cette obligation." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." @@ -7209,7 +7217,7 @@ msgstr "" "Toutes les informations et les règles relatives à l'ARRL WAS Award peuvent " "être consultées à l'adresse suivante : %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7217,7 +7225,7 @@ msgstr "" "Champs requis pour ce trophée : DXCC (doit être les États-Unis, l'Alaska ou " "Hawaï) et ÉTAT (doit contenir l'abréviation d'un état américain valide !)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Afficher la carte WAS" @@ -11123,10 +11131,10 @@ msgid "QSL Date" msgstr "Date de la QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11605,78 +11613,78 @@ msgstr "Informations sur la version" msgid "Failed to load the modal. Please try again." msgstr "Échec du chargement de la fenêtre modale. Veuillez réessayer." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Description :" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Description de la requête" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Votre requête a été enregistrée !" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Modifier les requêtes" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Requêtes stockées :" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Exécuter la requête" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Requêtes stockées" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Vous devez faire une requête avant de rechercher !" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exporter vers ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Ouvrir dans le journal de trafic avancé" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Attention ! Voulez-vous vraiment supprimer cette requête enregistrée ?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "La requête enregistrée a été supprimée !" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "La requête enregistrée n'a pas pu être supprimée. Veuillez réessayer !" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "La description de la requête a été mise à jour !" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Une erreur s'est produite lors de la sauvegarde. Veuillez réessayer !" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11686,20 +11694,20 @@ msgstr "" "plus valide. Vérifiez quel DXCC correspond à cet localisation. Si vous en " "êtes sûr, ignorez cet avertissement." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Indicatif : " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Quantité : " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Locator : " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11707,57 +11715,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locator" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Total" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "Carte QSL pour " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Attention ! Voulez-vous vraiment supprimer cette carte QSL ?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Carte eQSL" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL pour " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Fichier image de la QSL" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Recto de la carte QSL :" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Verso de la carte QSL :" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Ajouter des QSO supplémentaires à une carte QSL" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Une erreur s'est produite. Veuillez réessayer !" @@ -12340,6 +12348,18 @@ msgstr "Inclure message TNX (si rempli) ?" msgid "Start printing at?" msgstr "Commencer à imprimer à ?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index 176b9ad5b..5e145fefb 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-11-23 16:17+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Croatian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6426,7 +6429,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6689,16 +6692,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6709,7 +6712,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6718,23 +6721,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6773,11 +6776,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6785,7 +6793,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6794,19 +6802,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10486,10 +10494,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10939,98 +10947,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11038,57 +11046,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11659,6 +11667,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/hu/LC_MESSAGES/messages.po b/application/locale/hu/LC_MESSAGES/messages.po index ff2cb4aac..a130800b0 100644 --- a/application/locale/hu/LC_MESSAGES/messages.po +++ b/application/locale/hu/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-11-28 09:48+0000\n" "Last-Translator: Mathias Regner \n" "Language-Team: Hungarian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6428,7 +6431,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6691,16 +6694,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6711,7 +6714,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6720,23 +6723,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6775,11 +6778,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6787,7 +6795,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6796,19 +6804,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10484,10 +10492,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10937,78 +10945,78 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11018,20 +11026,20 @@ msgstr "" "érvényes. Ellenőrizd, hogy melyik DXCC a helyes az adott helyhez. Ha biztos " "vagy benne, hagyd figyelmen kívül ezt a figyelmeztetést." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11039,57 +11047,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11660,6 +11668,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/hy/LC_MESSAGES/messages.po b/application/locale/hy/LC_MESSAGES/messages.po index 57e348bca..ee3907b7e 100644 --- a/application/locale/hy/LC_MESSAGES/messages.po +++ b/application/locale/hy/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-08-23 15:21+0000\n" "Last-Translator: Matthias Jung \n" "Language-Team: Armenian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6420,7 +6423,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6683,16 +6686,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6703,7 +6706,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6712,23 +6715,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6767,11 +6770,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6779,7 +6787,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6788,19 +6796,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10476,10 +10484,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10929,98 +10937,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11028,57 +11036,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11649,6 +11657,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index df089adf9..e528d17e7 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-09-15 19:44+0000\n" "Last-Translator: Luca \n" "Language-Team: Italian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Codice" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6698,7 +6701,7 @@ msgid "Province" msgstr "Provincia" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Muovi il cursore su una provincia" @@ -7012,16 +7015,16 @@ msgstr "Mostra mappa WAJA" msgid "Prefecture" msgstr "Prefettura" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Provincia" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "Premio VRZA WAP" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7040,7 +7043,7 @@ msgstr "" "formazione e rappresentano i radioamatori olandesi a livello nazionale e " "internazionale." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7055,14 +7058,14 @@ msgstr "" "tutto il paese, promuovendo sia la connettività nazionale che le competenze " "operative." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" "Le informazioni sui premi WAP e le sue regole sono disponibili presso: %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7070,11 +7073,11 @@ msgstr "" "Campi presi in considerazione per questo premio: DXCC (Deve essere Paesi " "Bassi) e STATE (Deve contenere un'abbreviazione valida dello stato!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Mostra mappa WAP" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Provincia" @@ -7122,11 +7125,16 @@ msgstr "Regione" msgid "Hover over a state" msgstr "Muovi il cursore su uno stato" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "Premio WAS" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7138,7 +7146,7 @@ msgstr "" "Nel 101° anno di ARRL, hanno ridisegnato i certificati e il programma nella " "speranza di semplificare e migliorare il programma dei premi." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7153,7 +7161,7 @@ msgstr "" "richiedere un WAS. I richiedenti al di fuori degli Stati Uniti sono esenti " "da questo requisito." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." @@ -7161,7 +7169,7 @@ msgstr "" "Tutte le informazioni e le regole per l'ARRL WAS Award sono disponibili " "presso: %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7170,7 +7178,7 @@ msgstr "" "S.A., Alaska o Hawaii) e STATE (Deve contenere una valida abbreviazione di " "uno stato U.S.A.!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Mostra mappa WAS" @@ -11028,10 +11036,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11495,79 +11503,79 @@ msgstr "Informazioni sulla versione" msgid "Failed to load the modal. Please try again." msgstr "Impossibile caricare il modulo. Per favore riprova." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Descrizione:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Descrizione della query" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "La tua query è stata salvata!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Modifica query" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Query salvate:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Esegui Query" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Query salvate" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Devi definire una query prima di cercare!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Esporta in ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Apri il registro avanzato" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Attenzione! Sei sicuro di voler eliminare questa query salvata?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "La query memorizzata è stata eliminata!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "La query memorizzata non può essere eliminata. Per favore riprova!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "La descrizione della query è stata aggiornata!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" "Qualcosa è andato storto con il salvataggio. Ti preghiamo di riprovare!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11577,20 +11585,20 @@ msgstr "" "Controlla quale DXCC per questa particolare posizione è quello corretto. Se " "sei sicuro, ignora questo avviso." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Nominativo: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Quantità: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Locatori: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11598,57 +11606,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatori" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "locatore" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Conteggio totale" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "Cartolina per " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Attenzione! Sei sicuro di voler eliminare questa QSL?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartolina eQSL" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "Cartolina eQSL per " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Immagine della QSL" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Fronte QSL:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Retro QSL:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Aggiungi ulteriori QSO a una QSL" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Qualcosa è andato storto. Per favore riprova!" @@ -12231,6 +12239,18 @@ msgstr "Includere il messaggio TNX?" msgid "Start printing at?" msgstr "Iniziare a stampare a?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/ja/LC_MESSAGES/messages.mo b/application/locale/ja/LC_MESSAGES/messages.mo index b1c17b7c0..651dc53c4 100644 Binary files a/application/locale/ja/LC_MESSAGES/messages.mo and b/application/locale/ja/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ja/LC_MESSAGES/messages.po b/application/locale/ja/LC_MESSAGES/messages.po index c4d9538d7..edfce471d 100644 --- a/application/locale/ja/LC_MESSAGES/messages.po +++ b/application/locale/ja/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-27 10:42+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-11-28 13:13+0000\n" "Last-Translator: \"S.NAKAO(JG3HLX)\" \n" "Language-Team: Japanese \n" @@ -79,7 +79,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -137,8 +137,8 @@ msgid "Activated Gridsquare Map" msgstr "アクティブ化されたグリッドロケーターマップ" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -305,20 +305,20 @@ msgstr "アワード" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "アワード歴 - %s" @@ -508,58 +508,58 @@ msgstr "CQ WAZ(全ゾーンと交信済み)" msgid "Worked All States (WAS)" msgstr "全州対応済み(WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "米国の郡" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "ログ表示 - 郡" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "アワード歴 - " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "グリッドスクエアは機能した" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "LoTWでグリッドスクエアを確認" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "グリッドスクエアは紙のQSLで確認済み" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" msgstr "作業したグリッドスクエアの合計" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial アワード (FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -569,40 +569,40 @@ msgstr "Fred Fish Memorial アワード (FFMA)" msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "アワード - SIG - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "ITUゾーン" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -755,7 +755,7 @@ msgstr "Clublog を設定しているユーザーはいません。" #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1270,15 +1270,15 @@ msgstr "ログブック" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1303,16 +1303,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1342,15 +1342,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1389,9 +1389,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1573,7 +1573,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1694,9 +1694,9 @@ msgstr "距離" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1817,7 +1817,7 @@ msgstr "オペレーター" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2332,8 +2332,8 @@ msgstr "デフォルト(クリックして解除)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2353,10 +2353,10 @@ msgstr "編集" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2449,9 +2449,9 @@ msgstr "ステーションの場所がありません。進む %s が作成し #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "ここ" @@ -2526,9 +2526,8 @@ msgstr "ステーションの場所を作成する" msgid "Edit Station Location: " msgstr "ステーションの場所を編集: " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3412,19 +3411,19 @@ msgstr "コールなし" msgid "DXCC has to be Numeric" msgstr "DXCCは数値でなければなりません" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, 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:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "QSOオン" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3432,7 +3431,7 @@ msgstr "" "有効な日付のないQSOをインポートしようとしました。このQSOはインポートされませ" "んでした。無効です" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3440,7 +3439,7 @@ msgstr "" "コールが指定されていないQSOをインポートしようとしました。このQSOはインポート" "されませんでした。無効です" -#: application/models/Logbook_model.php:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3449,64 +3448,64 @@ msgstr "" "%s でのQSO: バンドが指定されていないQSOをインポートしようとしました。このQSO" "はインポートされませんでした。無効です" -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "複製用" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSOが一致しませんでした" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "LoTW/Clublog/eQSL/コンテストで確認済み" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "賞の管理者によって確認された" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "DCLデータのクロスチェックによって確認された" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "確認中" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "未確認" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "不明" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "POTA 参照。既にログに存在します" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSOが更新されました" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3674,9 +3673,9 @@ msgstr "違い" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3714,8 +3713,8 @@ msgstr "違い" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4093,14 +4092,14 @@ msgstr "対流圏ダクト" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4182,15 +4181,15 @@ msgstr "確認" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4242,7 +4241,7 @@ msgstr "最小数" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4252,9 +4251,9 @@ msgstr "最小数" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4590,8 +4589,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "危険" @@ -5013,7 +5012,7 @@ msgstr "この API の用途を説明する簡単な名前。" #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5128,7 +5127,7 @@ msgid "Permissions" msgstr "権限" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5208,12 +5207,12 @@ msgstr "読み取り専用キーを作成する" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5332,9 +5331,9 @@ msgstr "確認された郡" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5559,9 +5558,9 @@ msgstr "作業した" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "作業内容" @@ -5576,9 +5575,9 @@ msgstr "作業内容" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "確認済み" @@ -5592,9 +5591,9 @@ msgstr "確認済み" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "表示が機能していません" @@ -5609,9 +5608,9 @@ msgstr "表示が機能していません" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "QSLタイプでQSOを表示" @@ -5620,7 +5619,7 @@ msgstr "QSLタイプでQSOを表示" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5634,8 +5633,8 @@ msgstr "QSLカード" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "テーブル" @@ -5646,12 +5645,12 @@ msgstr "テーブル" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5668,9 +5667,9 @@ msgstr "地図" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "まとめ" @@ -5686,9 +5685,9 @@ msgstr "まとめ" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "合計作業時間" @@ -5704,9 +5703,9 @@ msgstr "合計作業時間" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "確認された合計" @@ -5776,9 +5775,9 @@ msgstr "DOK + SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "動作確認済み" @@ -5789,9 +5788,9 @@ msgstr "動作確認済み" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "どのバンドも" @@ -5800,14 +5799,14 @@ msgstr "どのバンドも" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6457,159 +6456,163 @@ msgid "" ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "コード" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "状態を修正" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6665,7 +6668,7 @@ msgid "Province" msgstr "州" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "州の上にマウスを移動します" @@ -6973,16 +6976,16 @@ msgstr "WAJAマップを表示" msgid "Prefecture" msgstr "県" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "州" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "VRZA WAPアワード" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6998,7 +7001,7 @@ msgstr "" "イベント、コンテスト、トレーニングを積極的に開催し、オランダのアマチュア無線" "界を国内外で代表しています。" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7011,13 +7014,13 @@ msgstr "" "は、オランダ全土の多様な局との交信を奨励し、全国規模の接続性と運用スキルの向" "上に貢献します。" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "WAPアワードに関する情報とそのルールは、%sでご確認いただけます。" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7025,11 +7028,11 @@ msgstr "" "このアワードに入力するフィールド: DXCC (オランダである必要があります) および " "STATE (有効な州の略語が含まれている必要があります)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "WAPマップを表示" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "州" @@ -7076,11 +7079,16 @@ msgstr "州" msgid "Hover over a state" msgstr "州にマウスを合わせると" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "WAS賞アワード" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7091,7 +7099,7 @@ msgstr "" "家に何千もの賞が授与されてきました。ARRLは設立101周年を迎え、賞のプログラムの" "合理化と改善を目指し、賞状とプログラムを刷新しました。" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7104,14 +7112,14 @@ msgstr "" "衆国およびその領土に居住するアマチュア無線家は、WASに応募するためにARRLの会員" "である必要があります。アメリカ合衆国外からの応募者はこの要件が免除されます。" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" "ARRL WAS アワードに関するすべての情報と規則は %s でご確認いただけます。" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7119,7 +7127,7 @@ msgstr "" "このアワードに入力するフィールド: DXCC (米国、アラスカ、ハワイのいずれか) お" "よび STATE (有効な米国の州の略語を含める必要があります)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "WASマップを表示" @@ -9605,6 +9613,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"連続記録を失わないでください - 過去1週間で少なくとも1回のQSOが行われました " +"%s 日連続。" #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -10971,10 +10981,10 @@ msgid "QSL Date" msgstr "QSL日付" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11441,78 +11451,78 @@ msgstr "バージョン情報" msgid "Failed to load the modal. Please try again." msgstr "モーダルの読み込みに失敗しました。もう一度お試しください。" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "説明:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "クエリの説明" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "クエリが保存されました!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "クエリを編集する" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "保存されたクエリ:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "クエリを実行" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "保存されたクエリ" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "検索する前にクエリを作成する必要があります!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "ADIFへのエクスポート" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "詳細ログブックで開く" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告! この保存されたクエリを削除してもよろしいですか?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "保存されたクエリが削除されました!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "保存されたクエリを削除できませんでした。もう一度お試しください!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "クエリの説明が更新されました!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "保存中にエラーが発生しました。もう一度お試しください!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11522,20 +11532,20 @@ msgstr "" "場所のDXCCが正しいかご確認ください。間違いがなければ、この警告は無視してくだ" "さい。" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "コールサイン: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "カウント: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "グリッド: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11543,57 +11553,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "合計数" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSLカード " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告! このQSLカードを削除してもよろしいですか?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSLカード" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSLカード " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL画像ファイル" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "表面QSLカード:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "裏面QSLカード:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "QSLカードにQSOを追加する" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "問題が発生しました。もう一度お試しください!" @@ -12174,6 +12184,18 @@ msgstr "お礼 メッセージを含めますか?" msgid "Start printing at?" msgstr "印刷開始時刻は?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index f343471a9..2f9ca9b8c 100644 --- a/application/locale/lt/LC_MESSAGES/messages.po +++ b/application/locale/lt/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Lithuanian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6422,7 +6425,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6685,16 +6688,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6705,7 +6708,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6714,23 +6717,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6769,11 +6772,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6781,7 +6789,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6790,19 +6798,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10479,10 +10487,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10932,98 +10940,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11031,57 +11039,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11652,6 +11660,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/lv/LC_MESSAGES/messages.po b/application/locale/lv/LC_MESSAGES/messages.po index ce2099116..f030426f9 100644 --- a/application/locale/lv/LC_MESSAGES/messages.po +++ b/application/locale/lv/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Latvian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6421,7 +6424,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6684,16 +6687,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6704,7 +6707,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6713,23 +6716,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6768,11 +6771,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6780,7 +6788,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6789,19 +6797,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10478,10 +10486,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10931,98 +10939,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11030,57 +11038,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11651,6 +11659,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index 114d13262..5646fd421 100644 Binary files a/application/locale/nl_NL/LC_MESSAGES/messages.mo and b/application/locale/nl_NL/LC_MESSAGES/messages.mo differ diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 86b50879a..74c9c396e 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-28 09:48+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-11-30 21:52+0000\n" "Last-Translator: Alexander \n" "Language-Team: Dutch \n" @@ -81,7 +81,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -139,8 +139,8 @@ msgid "Activated Gridsquare Map" msgstr "Kaart met geactiveerde Locatorvakken" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -307,20 +307,20 @@ msgstr "Awards" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "Awards - %s" @@ -510,58 +510,58 @@ msgstr "CQ WAZ (Worked All Zones)" msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "Logweergave - Counties" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "Awards - " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "Gewerkte locatorvakken" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "Door LoTW bevestigde locatorvakken" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "Door papieren QSL bevestigde locatorvakken" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" msgstr "Totaal locator aantal vakken gewerkt" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -571,44 +571,44 @@ msgstr "Fred Fish Memorial Award (FFMA)" msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "Awards - SIG - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "ITU Zones" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 op 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" -msgstr "" +msgstr "\"Polska\" Award" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:336 @@ -758,7 +758,7 @@ msgstr "Geen gebruiker heeft Clublog geconfigureerd." #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1274,15 +1274,15 @@ msgstr "Logboek" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1307,16 +1307,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1346,15 +1346,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1393,9 +1393,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1577,7 +1577,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1698,9 +1698,9 @@ msgstr "Afstand" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1821,7 +1821,7 @@ msgstr "Operator" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2343,8 +2343,8 @@ msgstr "Standaard (klik om vrij te geven)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2364,10 +2364,10 @@ msgstr "Bewerken" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2460,9 +2460,9 @@ msgstr "Je hebt geen stationslocaties. Ga naar %s om het te maken!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "hier" @@ -2538,9 +2538,8 @@ msgstr "Maak stationslocatie aan" msgid "Edit Station Location: " msgstr "Bewerk stationslocatie: " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3421,19 +3420,19 @@ msgstr "Geen roepnaam gegeven" msgid "DXCC has to be Numeric" msgstr "DXCC moet numeriek zijn" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Verkeerde stationsroepnaam %s bij het importeren van QSO met %s voor %s: " "OVERGESLAGEN" -#: application/models/Logbook_model.php:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "QSO vanaf" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3441,7 +3440,7 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder geldige datum. Deze QSO is " "niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3449,7 +3448,7 @@ 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:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3458,64 +3457,64 @@ msgstr "" "QSO op %s: Je hebt geprobeerd een QSO te importeren zonder een opgegeven " "band. Dit QSO is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "onbevestigd" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "onbekend" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "POTA-referentie al in logboek" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSO bijgewerkt" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3684,9 +3683,9 @@ msgstr "Verschil" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3724,8 +3723,8 @@ msgstr "Verschil" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4103,14 +4102,14 @@ msgstr "Tropospheric ducting" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4192,15 +4191,15 @@ msgstr "Bevestiging" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4252,7 +4251,7 @@ msgstr "Minimum aantal" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4262,9 +4261,9 @@ msgstr "Minimum aantal" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4603,8 +4602,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "GEVAAR" @@ -5032,7 +5031,7 @@ msgstr "Eenvoudige naam om te beschrijven waarvoor je deze API gebruikt." #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5148,7 +5147,7 @@ msgid "Permissions" msgstr "Machtigingen" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5228,12 +5227,12 @@ msgstr "Maak een alleen-lezen sleutel aan" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5353,9 +5352,9 @@ msgstr "Counties bevestigd" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5582,9 +5581,9 @@ msgstr "Gewerkt" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Toon gewerkt" @@ -5599,9 +5598,9 @@ msgstr "Toon gewerkt" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Toon bevestigd" @@ -5615,9 +5614,9 @@ msgstr "Toon bevestigd" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Toon niet gewerkt" @@ -5632,9 +5631,9 @@ msgstr "Toon niet gewerkt" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "Toon QSO met QSL-type" @@ -5643,7 +5642,7 @@ msgstr "Toon QSO met QSL-type" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5657,8 +5656,8 @@ msgstr "QSL-kaart" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabel" @@ -5669,12 +5668,12 @@ msgstr "Tabel" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5691,9 +5690,9 @@ msgstr "Kaart" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Samenvatting" @@ -5709,9 +5708,9 @@ msgstr "Samenvatting" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Totaal gewerkt" @@ -5727,9 +5726,9 @@ msgstr "Totaal gewerkt" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "Totaal bevestigd" @@ -5801,9 +5800,9 @@ msgstr "DOK + SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Gewerkt / Bevestigd" @@ -5814,9 +5813,9 @@ msgstr "Gewerkt / Bevestigd" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Elke band" @@ -5825,14 +5824,14 @@ msgstr "Elke band" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6462,11 +6461,11 @@ msgstr "SAT" #: application/views/awards/pl_polska/index.php:3 msgid "Polish Voivodeships" -msgstr "" +msgstr "Poolse woiwodschappen" #: application/views/awards/pl_polska/index.php:4 msgid "Hover over a voivodeship" -msgstr "" +msgstr "Beweeg over een woiwodschap" #: application/views/awards/pl_polska/index.php:38 msgid "" @@ -6474,6 +6473,9 @@ msgid "" "contacts with stations operating from all 16 Polish voivodeships " "(provinces). Valid from January 1, 1999." msgstr "" +"De Polska Award wordt uitgegeven door de Poolse Amateur Radio Unie (PZK) " +"voor contacten met stations die opereren vanuit alle 16 Poolse " +"woiwodschappen (provincies). Geldig vanaf 1 januari 1999." #: application/views/awards/pl_polska/index.php:39 msgid "" @@ -6481,177 +6483,193 @@ msgid "" "(RTTY/PSK/FSK), and individual bands (160M-2M). Classes: Basic (1 QSO/voiv), " "Bronze (3), Silver (7), Gold (12). All 16 voivodeships required." msgstr "" +"Prijscategorieën: GEMENGD (alle modi/banden), PHONE (SSB/AM/FM/SSTV), CW, " +"DIGI (RTTY/PSK/FSK), en individuele banden (160M-2M). Klassen: Basis (1 QSO/" +"voiv), Brons (3), Zilver (7), Goud (12). Alle 16 woiwodschappen vereist." #: application/views/awards/pl_polska/index.php:40 #, php-format msgid "Official rules and information: %s" -msgstr "" +msgstr "Officiële regels en informatie: %s" #: application/views/awards/pl_polska/index.php:40 msgid "PZK Polska Award Rules" -msgstr "" +msgstr "PZK Polska Award Regels" #: application/views/awards/pl_polska/index.php:41 msgid "" "Requirements: COL_STATE (voivodeship code), COL_DXCC=269 (Poland), QSO date " ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" +"Vereisten: COL_STATE (woiwodschapscode), COL_DXCC=269 (Polen), QSO-datum >= " +"1999-01-01. Geen cross-band/cross-mode/repeater contacten." -#: application/views/awards/pl_polska/index.php:73 -msgid "Confirmation methods" +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:62 +msgid "Confirmation methods" +msgstr "Bevestigingsmethoden" + +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" +"Volgens de officiële awardregels worden papieren QSL-kaarten of LoTW-" +"bevestigingen geaccepteerd voor awardaanvragen. Andere digitale " +"bevestigingen worden hier alleen ter controle getoond." -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" -msgstr "" +msgstr "Award categorieën" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" +"Polska Award-categorieën zijn gebaseerd op het minimum aantal bevestigde " +"QSOs met elk van de 16 woiwodschappen:" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" -msgstr "" +msgstr "1 QSO per woiwodschap" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" -msgstr "" +msgstr "Basis Klasse" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" -msgstr "" +msgstr "3 QSO's per woiwodschap" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" -msgstr "" +msgstr "Bronzen klasse (3e)" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" -msgstr "" +msgstr "7 QSOs per woiwodschap" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" -msgstr "" +msgstr "Zilveren klasse (2e)" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" -msgstr "" +msgstr "12 QSO's per woiwodschap" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" -msgstr "" +msgstr "Gouden Klasse (1e)" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" -msgstr "" +msgstr "Gefeliciteerd!" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" -msgstr "" +msgstr "Je hebt recht op de volgende award-categorieën" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" -msgstr "" +msgstr "QSOs per modus categorie" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" -msgstr "" +msgstr "QSOs per band" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" -msgstr "" +msgstr "Woiwodschap" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Code" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" -msgstr "" +msgstr "GEMENGD" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" -msgstr "" +msgstr "PHONE" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" -msgstr "" +msgstr "DIGI" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" -msgstr "" +msgstr "Totaal aantal woiwodschappen" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" -msgstr "" +msgstr "Bravo! Je bent gerechtigd tot" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" -msgstr "" +msgstr "categorie award!" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" -msgstr "" +msgstr "Award Categorie:" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" -msgstr "" +msgstr "Moduscategorieën" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" -msgstr "" +msgstr "Banden Categorieën" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "Herstel Staat/Provincie" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" -msgstr "" +msgstr "Logboek Geavanceerd" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" +"Deze award maakt gebruik van het veld 'Staat' uit je logboek. Zorg ervoor " +"dat dit veld is ingevuld voor alle SP (Polen) contacten." -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" -msgstr "" +msgstr "Tip:" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" -msgstr "" +msgstr "Gebruik" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." -msgstr "" +msgstr "om automatisch staten vanuit Maidenhead-locators in te vullen." #: application/views/awards/pota/index.php:7 msgid "POTA Awards" @@ -6708,7 +6726,7 @@ msgid "Province" msgstr "Provincie" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Zweef over een provincie" @@ -7022,16 +7040,16 @@ msgstr "Toon WAJA-kaart" msgid "Prefecture" msgstr "Prefectuur" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Provincie" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "VRZA WAP Award" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7049,7 +7067,7 @@ msgstr "" "zijn actief in het organiseren van evenementen, wedstrijden en trainingen, " "en ze vertegenwoordigen Nederlandse amateurs nationaal en internationaal." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7063,13 +7081,13 @@ msgstr "" "aan om contact te maken met een diverse reeks stations in het hele land, wat " "zowel nationale connectiviteit als operationele vaardigheid bevordert." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "Informatie over de WAP Awards en de regels ervan zijn te vinden %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7077,11 +7095,11 @@ msgstr "" "Velden genomen voor deze Award: DXCC (Moet Nederland zijn) en STATE (Moet " "een geldige provincie afkorting bevatten!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Toon WAP-kaart" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Provincie" @@ -7130,11 +7148,16 @@ msgstr "Staat" msgid "Hover over a state" msgstr "Zweef over een staat" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "WAS Award" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7147,7 +7170,7 @@ msgstr "" "certificaten en het programma opnieuw ontworpen in de hoop het " "toekenningsprogramma te stroomlijnen en te verbeteren." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7161,13 +7184,13 @@ msgstr "" "VS en hun bezittingen moeten lid zijn van ARRL om een WAS aan te vragen. " "Aanvragers van buiten de VS zijn vrijgesteld van deze eis." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "Alle informatie en regels voor de ARRL WAS Award zijn te vinden %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7176,7 +7199,7 @@ msgstr "" "zijn) en STATE (Moet een geldige afkorting van een Amerikaanse staat " "bevatten!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Toon WAS-kaart" @@ -9671,6 +9694,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Verlies je reeks niet - Je hebt al minstens één QSO voor de laatste %s " +"opeenvolgende dagen gehad." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -11045,10 +11070,10 @@ msgid "QSL Date" msgstr "QSL Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11517,81 +11542,81 @@ msgstr "Versie-informatie" msgid "Failed to load the modal. Please try again." msgstr "Laden van het popup venster mislukt. Probeer het opnieuw." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Beschrijving:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Beschrijving zoekopdracht" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Je zoekopdracht is opgeslagen!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Bewerk zoekopdrachten" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Opgeslagen zoekopdrachten:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Zoekopdracht uitvoeren" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Opgeslagen zoekopdrachten" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Je moet een zoekopdracht maken voordat je zoekt!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exporteren naar ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Openen in het geavanceerde logboek" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "Waarschuwing! Weet je zeker dat je deze opgeslagen zoekopdracht wilt " "verwijderen?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "De opgeslagen zoekopdracht is verwijderd!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" "De opgeslagen zoekopdracht kon niet worden verwijderd. Probeer het opnieuw!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "De beschrijving van de zoekopdracht is bijgewerkt!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Er is iets misgegaan met het opslaan. Probeer het opnieuw!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11600,20 +11625,20 @@ msgstr "" "Even wachten. De gekozen DXCC is oud en iet meer geldig. Controleer welke " "DXCC wel de correcte is. Bent u zeker, negeer dan deze waarschuwing." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Roepnaam: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Aantal: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Vakken: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11621,57 +11646,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatorvakken" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "locatorvak" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Totaal aantal" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSL-kaart voor " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Waarschuwing! Weet je zeker dat je deze QSL-kaart wilt verwijderen?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kaart" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL-kaart voor " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL-afbeeldingsbestand" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Voorkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Achterkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Voeg extra QSOs toe aan een QSL-kaart" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Er is iets misgegaan. Probeer het opnieuw!" @@ -11798,7 +11823,7 @@ msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" -msgstr "" +msgstr "Polen" #: application/views/interface_assets/header.php:274 msgid "Switzerland" @@ -12251,6 +12276,18 @@ msgstr "Inclusief TNX-bericht?" msgid "Start printing at?" msgstr "Begin met afdrukken om?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index 5b32cf97d..5ea54d63c 100644 Binary files a/application/locale/pl_PL/LC_MESSAGES/messages.mo and b/application/locale/pl_PL/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index fa2f3645a..46e4592da 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-26 23:33+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-11-29 21:48+0000\n" "Last-Translator: Szymon \n" "Language-Team: Polish \n" @@ -87,7 +87,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -145,8 +145,8 @@ msgid "Activated Gridsquare Map" msgstr "Mapa aktywowanych lokatorów" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -313,20 +313,20 @@ msgstr "Nagrody" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "Nagrody - %s" @@ -516,58 +516,58 @@ msgstr "CQ WAZ (Worked All Zones)" msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Hrabstwa USA" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "Przegląd dziennika - hrabstwa" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "Nagrody - " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "Zaliczone lokatory" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "Lokatory potwierdzone na LoTW" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "Lokatory potwierdzone papierową kartą QSL" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" msgstr "Wszystkich zaliczonych lokatorów" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -577,40 +577,40 @@ msgstr "Fred Fish Memorial Award (FFMA)" msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "Nagrody - SIG - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "Strefy ITU" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -764,7 +764,7 @@ msgstr "Żaden użytkownik nie skonfigurował ClubLog." #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1280,15 +1280,15 @@ msgstr "Dziennik łączności" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1313,16 +1313,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1352,15 +1352,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1399,9 +1399,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1583,7 +1583,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1704,9 +1704,9 @@ msgstr "Odległość" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1827,7 +1827,7 @@ msgstr "Operator" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2353,8 +2353,8 @@ msgstr "Domyślnie (kliknij, aby zwolnić)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2374,10 +2374,10 @@ msgstr "Edytuj" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2470,9 +2470,9 @@ msgstr "Nie masz ustawionej lokalizacji stacji. Kliknij %s aby ją stworzyć!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "tutaj" @@ -2548,9 +2548,8 @@ msgstr "Utwórz lokalizację stacji" msgid "Edit Station Location: " msgstr "Edytuj lokalizację stacji: " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3431,19 +3430,19 @@ msgstr "Nie przyznano znaku" msgid "DXCC has to be Numeric" msgstr "DXCC musi być numeryczne" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Nieprawidłowy znak wywoławczy stacji %s podczas importowania QSO z %s dla " "%s: POMINIĘTO" -#: application/models/Logbook_model.php:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "QSO w dniu" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3451,7 +3450,7 @@ msgstr "" "Próbowano zaimportować QSO bez prawidłowej daty. To QSO nie zostało " "zaimportowane, ponieważ jest nieprawidłowe" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3459,7 +3458,7 @@ msgstr "" "Spróbowałeś zaimportować QSO bez podanego znaku wywoławczego. To QSO nie " "zostało zaimportowane, jest nieprawidłowe" -#: application/models/Logbook_model.php:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3468,64 +3467,64 @@ msgstr "" "QSO z %s: próbowano zaimportować QSO bez podanego pasma. QSO nie zostało " "zaimportowane, ponieważ jest ono nieprawidłowe" -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate jest nieprawidłowa (RRRRMMDD)" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate jest nieprawidłowa (RRRRMMDD)" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date jest nieprawidłowy (RRRRMMDD)" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplikat dla" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSO nie mogło zostać dopasowane" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "potwierdzone przez LoTW/ClubLog/eQSL/zawody" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "potwierdzone przez award managera" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "potwierdzone przez weryfikację danych DCL" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "oczekiwanie na potwierdzenie" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "niepotwierdzone" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "nieznany" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "Referencja POTA już znajduje się w dzienniku" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSO zaktualizowane" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3695,9 +3694,9 @@ msgstr "Różnica" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3735,8 +3734,8 @@ msgstr "Różnica" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4114,14 +4113,14 @@ msgstr "Dukty troposferyczne" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4203,15 +4202,15 @@ msgstr "Potwierdzenie" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4263,7 +4262,7 @@ msgstr "Minimalna liczba" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4273,9 +4272,9 @@ msgstr "Minimalna liczba" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4614,8 +4613,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "NIEBEZPIECZEŃSTWO" @@ -5042,7 +5041,7 @@ msgstr "Prosta nazwa opisująca do czego używany jest ten klucz API." #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5155,7 +5154,7 @@ msgid "Permissions" msgstr "Uprawnienia" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5235,12 +5234,12 @@ msgstr "Utwórz klucz tylko do odczytu" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5363,9 +5362,9 @@ msgstr "Potwierdzone hrabstwa" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5594,9 +5593,9 @@ msgstr "Zaliczone" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Pokaż zaliczone" @@ -5611,9 +5610,9 @@ msgstr "Pokaż zaliczone" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Pokaż potwierdzone" @@ -5627,9 +5626,9 @@ msgstr "Pokaż potwierdzone" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Pokaż niezaliczone" @@ -5644,9 +5643,9 @@ msgstr "Pokaż niezaliczone" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "Pokaż QSO z typem QSL" @@ -5655,7 +5654,7 @@ msgstr "Pokaż QSO z typem QSL" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5669,8 +5668,8 @@ msgstr "Karta QSL" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabela" @@ -5681,12 +5680,12 @@ msgstr "Tabela" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5703,9 +5702,9 @@ msgstr "Mapa" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Podsumowanie" @@ -5721,9 +5720,9 @@ msgstr "Podsumowanie" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Suma zaliczonych" @@ -5739,9 +5738,9 @@ msgstr "Suma zaliczonych" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "Suma potwierdzonych" @@ -5812,9 +5811,9 @@ msgstr "DOK + SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Zaliczone / Potwierdzone" @@ -5825,9 +5824,9 @@ msgstr "Zaliczone / Potwierdzone" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Wszystkie pasma" @@ -5836,14 +5835,14 @@ msgstr "Wszystkie pasma" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6506,159 +6505,163 @@ msgid "" ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Kod" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "Napraw Stan" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6717,7 +6720,7 @@ msgid "Province" msgstr "Prowincja" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Najedź myszką nad prowincje" @@ -7034,16 +7037,16 @@ msgstr "Wyświetl mapę WAJA" msgid "Prefecture" msgstr "Prefektura" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Prowincja" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "Nagroda VRZA WAP" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7061,7 +7064,7 @@ msgstr "" "aktywnie organizują wydarzenia, zawody i szkolenia, a także reprezentują " "holenderskich radioamatorów na arenie krajowej i międzynarodowej." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7075,14 +7078,14 @@ msgstr "" "nawiązywania łączności z różnorodnymi stacjami w całym kraju, promując " "zarówno krajową łączność, jak i rozwój umiejętności operatorskich." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" "Informacje o nagrodzie WAP oraz jej zasadach można znaleźć pod adresem: %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7090,11 +7093,11 @@ msgstr "" "Pola uwzględniane dla tej nagrody: DXCC (musi być Holandia) oraz STATE (musi " "zawierać poprawny skrót prowincji!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Pokaż mapę WAP" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Prowincja" @@ -7143,11 +7146,16 @@ msgstr "Stan" msgid "Hover over a state" msgstr "Najedź kursorem myszy na stan" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "Nagroda WAS" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7159,7 +7167,7 @@ msgstr "" "działalności ARRL przeprojektowało certyfikaty oraz cały program, mając " "nadzieję na jego usprawnienie i ulepszenie." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7173,7 +7181,7 @@ msgstr "" "USA i jego terytoriów muszą być członkami ARRL, aby ubiegać się o nagrodę " "WAS. Wnioskodawcy spoza USA są zwolnieni z tego wymogu." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." @@ -7181,7 +7189,7 @@ msgstr "" "Wszystkie informacje i zasady dotyczące nagrody ARRL WAS można znaleźć pod " "adresem %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7189,7 +7197,7 @@ msgstr "" "Pola użyte dla tej nagrody: DXCC (Musi być jednym z: U.S.A., Alaska lub " "Hawaje) oraz STATE (Musi zawierać prawidłowy skrót stanu USA!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Wyświetl mapę WAS" @@ -9080,7 +9088,7 @@ msgstr "przez:" #: application/views/components/dxwaterfall.php:57 #, php-format msgid "Please wait %s second(s) before toggling DX Waterfall again." -msgstr "" +msgstr "Poczekaj %s sekund(y) przed ponownym przełączeniem DX Waterfall." #: application/views/components/dxwaterfall.php:81 #: application/views/components/dxwaterfall.php:87 @@ -9689,6 +9697,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Nie trać swojej dobrej serii — masz już co najmniej jedno QSO przez ostatnie " +"%s kolejnych dni." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -11062,10 +11072,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11537,78 +11547,78 @@ msgstr "Informacje o wersji" msgid "Failed to load the modal. Please try again." msgstr "Nie udało się załadować okna modalnego. Należy spróbować ponownie." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Opis:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Opis kwerendy" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Twoja kwerenda została zapisana!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Edytuj kwerendy" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Zapisane kwerendy:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Uruchom kwerendę" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Zapisane kwerendy" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Należy przygotować kwerendę przed rozpoczęciem wyszukiwania!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Eksport do ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Otwórz w zaawansowanym dzienniku łączności" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Uwaga! Czy na pewno usunąć zapisaną kwerendę?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "Zapisana kwerenda została usunięta!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "Nie można usunąć zapisanej kwerendy. Należy spróbować ponownie!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "Opis kwerendy został zaktualizowany!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Coś poszło nie tak podczas zapisywania. Należy spróbować ponownie!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11618,20 +11628,20 @@ msgstr "" "nieważny. Należy sprawdzić, który DXCC dla tej konkretnej lokalizacji jest " "właściwy. Jeśli istnieje pewność, należy zignorować to ostrzeżenie." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Znak wywoławczy: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Liczba: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Lokatory: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11639,57 +11649,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokatory" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "lokator" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Całkowita liczba" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "Karta QSL dla " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Uwaga! Czy na pewno usunąć tę kartę QSL?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Karta eQSL" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "Karta eQSL dla " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Plik obrazu QSL" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Przód karty QSL:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Tył karty QSL:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Dodaj dodatkowe QSO do karty QSL" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Coś poszło nie tak. Spróbuj jeszcze raz!" @@ -12269,6 +12279,18 @@ msgstr "Dołączyć wiadomość TNX?" msgid "Start printing at?" msgstr "Rozpocząć drukowanie od?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.po b/application/locale/pt_PT/LC_MESSAGES/messages.po index 50046bc52..f92f203d7 100644 --- a/application/locale/pt_PT/LC_MESSAGES/messages.po +++ b/application/locale/pt_PT/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-10-22 00:19+0000\n" "Last-Translator: David Quental \n" "Language-Team: Portuguese (Portugal) = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Código" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6711,7 +6714,7 @@ msgid "Province" msgstr "Província" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Passe o cursor sobre uma província" @@ -7022,16 +7025,16 @@ msgstr "Mostrar mapa WAJA" msgid "Prefecture" msgstr "Prefeitura" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Província" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "Diploma VRZA WAP" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7050,7 +7053,7 @@ msgstr "" "formação, e representam os amadores holandeses a nível nacional e " "internacional." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7065,14 +7068,14 @@ msgstr "" "diversificada de estações em todo o país, promovendo tanto a conectividade " "nacional quanto a habilidade operacional." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" "Informações sobre os diplomas WAP e as suas regras podem ser encontradas %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7080,11 +7083,11 @@ msgstr "" "Campos considerados para este diploma: DXCC (Deve ser Países Baixos) e " "ESTADO (Deve conter uma abreviatura de estado válida!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Mostrar Mapa WAP" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Província" @@ -7133,11 +7136,16 @@ msgstr "Estado" msgid "Hover over a state" msgstr "Passe o cursor sobre um estado" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "Diploma WAS" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7149,7 +7157,7 @@ msgstr "" "101º ano da ARRL, os certificados e o programa foram redesenhados na " "esperança de simplificar e melhorar o programa de prémios." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7163,7 +7171,7 @@ msgstr "" "suas possessões devem ser membros da ARRL para se candidatarem a um WAS. Os " "candidatos de fora dos EUA estão isentos deste requisito." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." @@ -7171,7 +7179,7 @@ msgstr "" "Todas as informações e regras para o diploma ARRL WAS podem ser encontradas " "%s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7180,7 +7188,7 @@ msgstr "" "ou Havai) e ESTADO (Deve conter uma abreviatura válida de um estado dos E.U." "A.!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Mostrar mapa WAS" @@ -11041,10 +11049,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11507,79 +11515,79 @@ msgstr "Informação da Versão" msgid "Failed to load the modal. Please try again." msgstr "Falha ao carregar o modal. Por favor, tente novamente." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Descrição:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Descrição da consulta" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "A sua consulta foi guardada!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Consultas guardadas:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Executar Consulta" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Consultas Guardadas" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Tens de fazer uma consulta antes de pesquisar!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exportar para ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Abrir no Logbook Avançado" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Aviso! Tem a certeza de que quer eliminar esta consulta guardada?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "A consulta armazenada foi eliminada!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" "A consulta armazenada não pôde ser eliminada. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "A descrição da consulta foi atualizada!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Algo correu mal com a gravação. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11589,20 +11597,20 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Indicativo: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Quantidade: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Grelhas: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11610,57 +11618,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Gridsquares" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Número total" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "Cartão QSL para " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Aviso! Tem a certeza de que quer eliminar este cartão QSL?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartão eQSL" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "Cartão eQSL para " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Ficheiro de imagem QSL" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Frente do Cartão QSL:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Parte traseira do Cartão QSL:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Adicionar QSOs adicionais a um Cartão QSL" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Algo correu mal. Por favor, tente novamente!" @@ -12241,6 +12249,18 @@ msgstr "Incluir mensagem TNX?" msgid "Start printing at?" msgstr "Iniciar a impressão em?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 1183a2ee5..dfd060094 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2025-11-22 16:36+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Код" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6706,7 +6709,7 @@ msgid "Province" msgstr "Провинция" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Наведите курсор на провинцию" @@ -7016,16 +7019,16 @@ msgstr "Показать карту WAJA" msgid "Prefecture" msgstr "Префектура" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Провинция" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "VRZA WAP Award" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7044,7 +7047,7 @@ msgstr "" "представляют голландских радиолюбителей на национальном и международном " "уровнях." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7058,13 +7061,13 @@ msgstr "" "взаимодействовать с разнообразными станциями по всей стране, способствуя как " "национальной связности, так и росту операторского мастерства." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "Информация о дипломе WAP и их правилах доступна %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7072,11 +7075,11 @@ msgstr "" "Поля, используемые для этого диплома: DXCC (должно быть 263 (Нидерланды)) и " "STATE (должно содержать действительную аббревиатуру штата!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Показать карту WAP" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Провинция" @@ -7124,11 +7127,16 @@ msgstr "Штат" msgid "Hover over a state" msgstr "Наведите курсор на штат" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "Диплом WAS" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7140,7 +7148,7 @@ msgstr "" "существования ARRL изменила дизайн сертификатов и программы в надежде " "упростить и улучшить дипломную программу." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7154,13 +7162,13 @@ msgstr "" "членами ARRL, чтобы подать заявку на получение WAS. Заявители из-за пределов " "США освобождаются от этого требования." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "Всю информацию и правила ARRL WAS Award можно найти в %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7169,7 +7177,7 @@ msgstr "" "6 (Аляска) или 110 (Гавайи) и STATE (должно содержать действительную " "аббревиатуру штата США!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Показать карту WAS" @@ -11063,10 +11071,10 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11539,78 +11547,78 @@ msgstr "Информация о версии" msgid "Failed to load the modal. Please try again." msgstr "Не удалось загрузить модальное окно. Пожалуйста, попробуйте еще раз." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Описание:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Описание запроса" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Ваш запрос сохранён!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Редактировать запросы" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Сохранённые запросы:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Выполнить запрос" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Сохранённые запросы" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Сначала нужно сформировать запрос, прежде чем искать!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Экспортировать в ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Открыть в расширенном журнале" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Внимание! Вы уверены, что хотите удалить этот сохранённый запрос?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "Сохранённый запрос был удален!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "Не удалось удалить сохранённый запрос. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "Описание запроса было обновлено!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Что-то пошло не так с сохранением. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11620,20 +11628,20 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Позывной: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Всего: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Квадратов: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11641,57 +11649,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Квадраты" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Всего" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSL-карточка для " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Внимание! Вы уверены, что хотите удалить эту QSL-карточку?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-карточка" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL-карточка для " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Изображение QSL-карточки" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Лицевая сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Обратная сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Добавить дополнительные QSO на QSL-карточку" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз!" @@ -12271,6 +12279,18 @@ msgstr "Включить сообщение TNX?" msgid "Start printing at?" msgstr "С какой позиции на листе начать печать?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/sk/LC_MESSAGES/messages.mo b/application/locale/sk/LC_MESSAGES/messages.mo index ca67014a1..f9c974332 100644 Binary files a/application/locale/sk/LC_MESSAGES/messages.mo and b/application/locale/sk/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sk/LC_MESSAGES/messages.po b/application/locale/sk/LC_MESSAGES/messages.po index ea7eb4980..7f24bd3e0 100644 --- a/application/locale/sk/LC_MESSAGES/messages.po +++ b/application/locale/sk/LC_MESSAGES/messages.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-28 09:48+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-11-30 21:52+0000\n" "Last-Translator: Viliam Petrik \n" "Language-Team: Slovak \n" @@ -78,7 +78,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -136,8 +136,8 @@ msgid "Activated Gridsquare Map" msgstr "Mapa aktivovaných lokátorov" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -304,20 +304,20 @@ msgstr "Diplomy" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "Diplomy - %s" @@ -507,58 +507,58 @@ msgstr "CQ WAZ (Worked All Zones)" msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Okresy USA" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "Zobrazenie denníka - okresy" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "Diplomy " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "Lokátory urobené" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "Lokátory potvrdené cez LoTW" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "Lokátory potvrdené papierovými QSL" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" msgstr "Celkový počet urobených lokátorov" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -568,40 +568,40 @@ msgstr "Fred Fish Memorial Award (FFMA)" msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "Diplomy - SIG - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "ITU zóny" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -754,7 +754,7 @@ msgstr "Žiadny používateľ nekonfiguroval Clublog." #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1270,15 +1270,15 @@ msgstr "Logbook" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1303,16 +1303,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1342,15 +1342,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1389,9 +1389,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1573,7 +1573,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1694,9 +1694,9 @@ msgstr "Vzdialenosť" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1817,7 +1817,7 @@ msgstr "Operátor" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2338,8 +2338,8 @@ msgstr "Predvolené (kliknutím zrušíte)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2359,10 +2359,10 @@ msgstr "Upraviť" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2455,9 +2455,9 @@ msgstr "Nemáš žiadne stanice. Choď %s a vytvor ich!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "tu" @@ -2531,9 +2531,8 @@ msgstr "Zadať polohu stanice" msgid "Edit Station Location: " msgstr "Upraviť polohu stanice " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3399,25 +3398,25 @@ msgstr "" #: application/models/Logbook_model.php:1346 msgid "No Call given" -msgstr "" +msgstr "Nezadaný volací znak" #: application/models/Logbook_model.php:1416 #: application/models/Logbook_model.php:1618 msgid "DXCC has to be Numeric" msgstr "DXCC musí byť číselné" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Nesprávna volacia značka stanice %s pri importe QSO s %s pre %s: PRESKOČENÉ" -#: application/models/Logbook_model.php:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "QSO o" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3425,7 +3424,7 @@ msgstr "" "Pokúsil si sa importovať QSO bez platného dátumu. Toto QSO nebolo " "importované. Je neplatné" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3433,7 +3432,7 @@ msgstr "" "Pokúsil si sa importovať QSO bez uvedenej značky. Toto QSO nebolo " "importované. Je neplatné." -#: application/models/Logbook_model.php:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3442,64 +3441,64 @@ msgstr "" "QSO na %s: Pokúsil si sa importovať QSO bez uvedeného pásma. Toto QSO nebolo " "importované. Je neplatné." -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicita pre" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSO nebolo možné spárovať" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "potvrdené cez LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "potvrdené diplomovým manažérom" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "potvrdené krížovou kontrolou údajov DCL" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "potvrdenie čaká" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "nepotvrdené" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "neznáme" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "POTA referencia už v logu" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSO aktualizované" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3530,7 +3529,7 @@ msgstr "Antény" #: application/models/Note.php:61 application/models/Note.php:91 msgid "In Contacts category, the titles of the notes need to be unique." -msgstr "" +msgstr "V kategórii Kontakty musia byť názvy poznámok jedinečné." #: application/models/Update_model.php:352 msgid "Newer release available:" @@ -3669,9 +3668,9 @@ msgstr "Rozdiel" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3709,8 +3708,8 @@ msgstr "Rozdiel" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -3937,7 +3936,7 @@ msgstr "Sporadická E vrstva" #: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" -msgstr "" +msgstr "Field Aligned Irregularities" #: application/views/accumulate/index.php:94 #: application/views/callstats/index.php:79 application/views/csv/index.php:104 @@ -4088,14 +4087,14 @@ msgstr "Tropo ducting" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4177,15 +4176,15 @@ msgstr "Potvrdenie" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4237,7 +4236,7 @@ msgstr "Minimálny počet" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4247,9 +4246,9 @@ msgstr "Minimálny počet" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4585,8 +4584,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "NEBEZPEČENSTVO" @@ -4923,7 +4922,7 @@ msgid "Import details / possible problems" msgstr "Detaily importu / možné problémy" #: application/views/adif/import_success.php:58 -#, fuzzy, php-format +#, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Skontroluj %s kvôli indíciám o chybách v ADIF súboroch." @@ -4956,7 +4955,7 @@ msgstr "Výsledky aktualizácie POTA" #: application/views/adif/pota_success.php:17 msgid "POTA references for existing QSOs has been updated." -msgstr "" +msgstr "POTA referencie pre existujúce spojenia boli aktualizované." #: application/views/adif/pota_success.php:25 msgid "POTA Update Errors" @@ -5006,7 +5005,7 @@ msgstr "Jednoduché pomenovanie významu tohto API." #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5120,7 +5119,7 @@ msgid "Permissions" msgstr "Povolenia" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5144,7 +5143,7 @@ msgid "Test" msgstr "Test." #: application/views/api/index.php:79 -#, fuzzy, php-format +#, php-format msgid "Are you sure you want delete the API Key %s?" msgstr "Ste si istý, že chcete odstrániť API kľúč %s?" @@ -5200,12 +5199,12 @@ msgstr "Vytvoriť kľúč iba na čítanie" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5326,9 +5325,9 @@ msgstr "Potvrdené okresy" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5554,9 +5553,9 @@ msgstr "Urobené" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Ukáž urobené" @@ -5571,9 +5570,9 @@ msgstr "Ukáž urobené" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Zobraziť potvrdené" @@ -5587,9 +5586,9 @@ msgstr "Zobraziť potvrdené" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Zobraziť neurobené" @@ -5604,9 +5603,9 @@ msgstr "Zobraziť neurobené" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "Zobraziť spojenie s typom QSL" @@ -5615,7 +5614,7 @@ msgstr "Zobraziť spojenie s typom QSL" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5629,8 +5628,8 @@ msgstr "QSL karta" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabuľka" @@ -5641,12 +5640,12 @@ msgstr "Tabuľka" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5663,9 +5662,9 @@ msgstr "Mapa" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Zhrnutie" @@ -5681,9 +5680,9 @@ msgstr "Zhrnutie" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Spolu urobené" @@ -5699,9 +5698,9 @@ msgstr "Spolu urobené" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "Spolu potvrdené" @@ -5772,9 +5771,9 @@ msgstr "DOK + SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Urobené / Potvrdené" @@ -5785,9 +5784,9 @@ msgstr "Urobené / Potvrdené" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Každé pásmo" @@ -5796,14 +5795,14 @@ msgstr "Každé pásmo" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6464,159 +6463,163 @@ msgid "" ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" -msgstr "" +msgstr "Kód" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" -msgstr "" +msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" -msgstr "" +msgstr "Opraviť štát" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6676,7 +6679,7 @@ msgid "Province" msgstr "Provincia" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Umiestni kurzor na provinciu" @@ -6875,16 +6878,22 @@ msgid "" "Continents award is issued for working and confirming all six continents. " "These are North America, South America, Oceania, Asia, Europe and Africa." msgstr "" +"Sponzorovaný Medzinárodnou rádioamatérskou úniou (IARU), ocenenie Worked All " +"Continents sa udeľuje za prácu a potvrdenie zo všetkých šiestich " +"kontinentov. Tieto sú Severná Amerika, Južná Amerika, Oceánia, Ázia, Európa " +"a Afrika." #: application/views/awards/wac/index.php:12 msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Pre tento diplom sa používajú oblasti: Kontinent (ADIF značka 'CONT'). Musí " +"obsahovať platnú skratku kontinentu!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" -msgstr "" +msgstr "Awards - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 #: application/views/bandmap/list.php:73 application/views/bandmap/list.php:520 @@ -6897,11 +6906,11 @@ msgstr "" #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:457 #: application/views/view_log/qso.php:348 msgid "Continent" -msgstr "" +msgstr "Kontinent" #: application/views/awards/wae/index.php:7 msgid "WAE Award" -msgstr "" +msgstr "WAE Award" #: application/views/awards/wae/index.php:8 msgid "" @@ -6909,6 +6918,9 @@ msgid "" "contacts with amateur radio stations in European countries and on islands " "listed in the WAE country list on different bands." msgstr "" +"Najstarší a najznámejší zo všetkých diplomov DARC sa udeľuje za spojenia s " +"amatérskymi rádiostanicami v európskych krajinách a na ostrovoch uvedených v " +"zozname krajín WAE na rôznych pásmach." #: application/views/awards/wae/index.php:9 msgid "" @@ -6916,33 +6928,39 @@ msgid "" "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " "I, WAE TOP and the WAE Trophy." msgstr "" +"WAE bude vydávané v nasledujúcich módoch: CW, SSB, Phone, RTTY, FT8, Digital " +"a Mixed Modes. Vydáva sa v piatich triedach: WAE III, WAE II, WAE I, WAE TOP " +"a WAE Trophy." #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Pre tento diplom sa používajú oblasti: Región, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" -msgstr "" +msgstr "WAE názov" #: application/views/awards/waja/index.php:3 msgctxt "Japan Prefecture" msgid "Prefecture" -msgstr "" +msgstr "Prefektúra" #: application/views/awards/waja/index.php:4 msgid "Hover over a prefecture" -msgstr "" +msgstr "Umiestni kurzor na prefektúru" #: application/views/awards/waja/index.php:22 msgid "WAJA - Worked All Japan prefectures Award" -msgstr "" +msgstr "WAJA - Worked All Japan prefectures Award" #: application/views/awards/waja/index.php:23 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" +"WAJA, Worked All Japan prefectures v amatérskom rádiu, povzbudzuje " +"licencovaných rádioamatérov, aby pracovali so všetkými prefektúrmi v " +"Japonsku." #: application/views/awards/waja/index.php:24 msgid "" @@ -6951,32 +6969,38 @@ msgid "" "QSL cards should be arranged in order of WAJA (HAJA) reference number, " "however names of prefectures may be omitted." msgstr "" +"Môže byť nárokovaný za spojenia (odposluch) a prijaté QSL karty od " +"amatérskej stanice nachádzajúcej sa v každej z 47 prefektúr Japonska. Zoznam " +"QSL kariet by mal byť usporiadaný podľa referenčného čísla WAJA (HAJA), " +"avšak mená prefektúr môžu byť vynechané." #: application/views/awards/waja/index.php:26 msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Pre tento diplom sa používajú oblasti: DXCC (Japonsko) a STATE (musí " +"obsahovať platnú prefektúru!)" #: application/views/awards/waja/index.php:122 msgid "Show WAJA Map" -msgstr "" +msgstr "Zobraziť WAJA mapu" #: application/views/awards/waja/index.php:158 #: application/views/timeline/index.php:237 msgid "Prefecture" -msgstr "" +msgstr "Prefektúra" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" -msgstr "" - -#: application/views/awards/wap/index.php:20 -msgid "VRZA WAP Award" -msgstr "" +msgstr "Provincia" #: application/views/awards/wap/index.php:21 +msgid "VRZA WAP Award" +msgstr "VRZA WAP Award" + +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6986,8 +7010,15 @@ msgid "" "Amateurs). Both organizations are active in organizing events, contests, and " "training, and they represent Dutch amateurs nationally and internationally." msgstr "" +"Holandsko má približne 300 km zo severu na juh a asi 200 km z východu na " +"západ. Z 18 miliónov obyvateľov krajiny je približne 11 500 licencovaných " +"rádioamatérov. Najväčšími rádioamatérskymi organizáciami v Holandsku sú " +"VERON (Vereniging voor Experimenteel Radio Onderzoek in Nederland) a VRZA " +"(Vereniging voor Radio Zend Amateurs). Obe organizácie sú aktívne pri " +"organizovaní podujatí, súťaží a tréningov a zastupujú holandských amatérov " +"národne aj medzinárodne." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6995,31 +7026,38 @@ msgid "" "encourages operators to engage with a diverse range of stations across the " "country, promoting both national connectivity and operational skill." msgstr "" +"VRZA (Vereniging voor Radio Zend Amateurs) ponúka diplom Worked All " +"Provinces (WAP) rádioamatérom, ktorí majú potvrdené spojenia so stanicami v " +"každej z dvanástich provincií Holandska. Toto ocenenie povzbudzuje " +"operátorov, aby spolupracovali s rôznorodým spektrom staníc v celej krajine, " +"čím podporuje národné prepojenie a prevádzkovú zručnosť." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." -msgstr "" +msgstr "Informácie o diplomoch WAP a ich pravidlách nájdete %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Pre tento diplom sa používajú oblasti: DXCC (musí byť Holandsko) a STATE " +"(musí obsahovať platnú skratku štátu!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" -msgstr "" +msgstr "Zobraziť WAP mapu" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" -msgstr "" +msgstr "Provincia" #: application/views/awards/wapc/index.php:7 msgid "WAPC - Worked All Provinces of China" -msgstr "" +msgstr "WAPC - Worked All Provinces of China" #: application/views/awards/wapc/index.php:8 msgid "" @@ -7028,12 +7066,18 @@ msgid "" "municipalities, autonomous regions, and special administrative regions of " "China, fostering a deeper understanding of China." msgstr "" +"Diplom WAPC, vydávané klubom Mulan DX, má za cieľ podporiť komunikáciu medzi " +"rádioamatérmi na celom svete a operátormi vo všetkých provinciách, mestách, " +"autonómnych oblastiach a osobitných administratívnych oblastiach Číny, čím " +"podporuje lepšie porozumenie Číne." #: application/views/awards/wapc/index.php:9 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." msgstr "" +"Diplom možno získať dlhodobým zhromažďovaním spojení alebo dosiahnuť " +"jednorazovým úsilím počas každoročného WAPC contest-u." #: application/views/awards/wapc/index.php:11 msgid "" @@ -7041,29 +7085,41 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Pre tento diplom sa používajú oblasti: DXCC (musí byť jedno z Čína/318, " +"HongKong/321, Macao/152, Taiwan/386, Pratas Isl./505 alebo Scarborough " +"Reef/506) a platný štát (ADIF: DXCC a STATE)" #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" -msgstr "" +msgstr "Štát" #: application/views/awards/was/index.php:4 msgid "Hover over a state" -msgstr "" +msgstr "Umiestni kurzor nad štát" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "WAS Award" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " "101st year, they have redesigned the certificates and the program in hopes " "of streamlining and improving the award program." msgstr "" +"Najobľúbenejším diplomom ARRL je Worked All States Award. Po celom svete " +"bolo vydaných tisícky a tisícky ocenení pre rádioamatérov. V 101. roku ARRL " +"prepracovali diplomy a program s cieľom zjednodušiť a zlepšiť program " +"ocenení." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7071,36 +7127,43 @@ msgid "" "possessions must be members of ARRL to apply for a WAS. Applicants from " "outside the U.S. are exempt from this requirement." msgstr "" +"Diplom WAS (Worked All States) je k dispozícii všetkým amatérom na celom " +"svete, ktorí predložia dôkaz s písomným potvrdením spojení so všetkými 50 " +"štátmi Spojených štátov amerických. Amatéri v USA a jeho držbách musia byť " +"členmi ARRL, aby mohli žiadať o WAS. Žiadatelia mimo USA sú od tejto " +"požiadavky oslobodení." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." -msgstr "" +msgstr "Všetky informácie a pravidlá pre ARRL WAS Award nájdete %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Pre tento diplom sa používajú oblasti: DXCC (musí byť jedno z USA, Aljaška " +"alebo Havaj) a STATE (musí obsahovať platnú skratku amerického štátu!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" -msgstr "" +msgstr "Zobraziť mapu WAS" #: application/views/awards/wpx/index.php:76 msgid "Band / Satellite / Orbit" -msgstr "" +msgstr "Pásmo / Satelit / Obežná dráha" #: application/views/awards/wpx/wpx_details.php:21 #: application/views/oqrs/showrequests.php:86 #: application/views/simplefle/index.php:78 msgid "QSO Date" -msgstr "" +msgstr "Dátum QSO" #: application/views/awards/wwff/index.php:7 msgid "WWFF - World Wide Flora and Fauna Award" -msgstr "" +msgstr "WWFF - World Wide Flora and Fauna Award" #: application/views/awards/wwff/index.php:8 msgid "" @@ -7108,6 +7171,9 @@ msgid "" "radio operators to leave their shacks and operate portable in Protected " "Flora & Fauna areas (PFF) worldwide." msgstr "" +"WWFF, World Wide Flora and Fauna v rádioamatérstve, povzbudzuje " +"licencovaných rádioamatérov, aby opustili svoje stanice a vysielali " +"portablovo v chránených oblastiach flóry a fauny (PFF) na celom svete." #: application/views/awards/wwff/index.php:9 msgid "" @@ -7115,10 +7181,13 @@ msgid "" "registered in the WWFF Directory. Hunters and Activators can apply for " "colorful awards, both globally and nationally." msgstr "" +"Vo svete je už zaregistrovaných viac ako 26 000 oblastí s chránenou flórou a " +"faunou (PFF) v zozname WWFF. Lovci a aktivátori môžu žiadať o farebné " +"ocenenia, a to globálne aj národné." #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Pre tento diplom sa používajú oblasti: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:297 application/views/qso/index.php:590 @@ -7127,17 +7196,17 @@ msgstr "" #: application/views/user/edit.php:702 application/views/view_log/qso.php:402 #: application/views/view_log/qso.php:728 msgid "WWFF Reference" -msgstr "" +msgstr "WWFF referencie" #: application/views/backup/adif_view.php:7 msgid "" "The backup of your log completed successfully. The output can be found at" -msgstr "" +msgstr "Záloha vášho denníka bola úspešne dokončená. Výstup nájdete na" #: application/views/backup/adif_view.php:9 #: application/views/backup/notes_view.php:9 msgid "You could automate this process by making it a cronjob." -msgstr "" +msgstr "Tento proces by si mohol automatizovať vytvorením cron úlohy." #: application/views/backup/adif_view.php:13 #: application/views/backup/notes_view.php:13 @@ -7145,202 +7214,214 @@ msgid "" "Something went wrong during the backup process. Check that the backup folder " "exists and is writeable by your web server user / group." msgstr "" +"Počas procesu zálohovania sa vyskytla chyba. Skontroluj, či záložný " +"priečinok existuje a či je zapísateľný používateľom / skupinou tvojho " +"webového servera." #: application/views/backup/main.php:17 msgid "" "Some of the data stored in Wavelog can be exported so that you can keep a " "backup copy elsewhere." msgstr "" +"Niektoré údaje uložené vo Wavelog môžu byť exportované, aby ste si mohli " +"ponechať záložnú kópiu inde." #: application/views/backup/main.php:18 msgid "" "It's recommended to create backups on a regular basis to protect your data." -msgstr "" +msgstr "Odporúča sa pravidelne vytvárať zálohy na ochranu vašich údajov." #: application/views/backup/main.php:19 msgid "Backup ADIF data" -msgstr "" +msgstr "Zálohovať ADIF údaje" #: application/views/backup/main.php:20 msgid "Backup Notes" -msgstr "" +msgstr "Zálohovať poznámky" #: application/views/backup/notes_view.php:7 msgid "" "The backup of your notes completed successfully. The output can be found at" -msgstr "" +msgstr "Záloha vašich poznámok bola úspešne dokončená. Výstup nájdete na" #: application/views/bandmap/list.php:11 msgid "Click to prepare logging." -msgstr "" +msgstr "Klikni na začatie logovania." #: application/views/bandmap/list.php:11 application/views/bandmap/list.php:104 msgid "to tune frequency" -msgstr "" +msgstr "na naladenie frekvencie" #: application/views/bandmap/list.php:14 msgid "Pop-up Blocked" -msgstr "" +msgstr "Vyskakovacie okno zablokované" #: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" +"Vyskakovacie okno bolo zablokované! Prosím, povoľte vyskakovacie okná pre " +"túto stránku natrvalo." #: application/views/bandmap/list.php:16 msgid "CAT Connection Required" -msgstr "" +msgstr "Je potrebné pripojenie CAT" #: application/views/bandmap/list.php:17 msgid "Enable CAT connection to tune the radio" -msgstr "" +msgstr "Povoľte pripojenie CAT na ladenie rádia" #: application/views/bandmap/list.php:18 application/views/bandmap/list.php:375 msgid "Clear Filters" -msgstr "" +msgstr "Vymazať filtre" #: application/views/bandmap/list.php:19 msgid "Band filter preserved (CAT connection is active)" -msgstr "" +msgstr "Pásmový filter zachovaný (pripojenie CAT je aktívne)" #: application/views/bandmap/list.php:21 msgid "Radio set to None - CAT connection disabled" -msgstr "" +msgstr "Rádio nastavené na Žiadne - CAT pripojenie deaktivované" #: application/views/bandmap/list.php:22 msgid "Radio Tuned" -msgstr "" +msgstr "Rádio naladené" #: application/views/bandmap/list.php:23 msgid "Tuned to" -msgstr "" +msgstr "Naladené na" #: application/views/bandmap/list.php:24 msgid "Tuning Failed" -msgstr "" +msgstr "Ladenie zlyhalo" #: application/views/bandmap/list.php:25 msgid "Failed to tune radio to frequency" -msgstr "" +msgstr "Nepodarilo sa naladiť rádio na frekvenciu" #: application/views/bandmap/list.php:26 msgid "QSO Prepared" -msgstr "" +msgstr "QSO pripravené" #: application/views/bandmap/list.php:28 msgid "sent to logging form" -msgstr "" +msgstr "odoslané do formulára denníka" #: application/views/bandmap/list.php:29 application/views/bandmap/list.php:198 msgid "CAT Connection" -msgstr "" +msgstr "CAT pripojenie" #: application/views/bandmap/list.php:30 msgid "Click to enable CAT connection" -msgstr "" +msgstr "Kliknutím povolíte pripojenie CAT" #: application/views/bandmap/list.php:31 msgid "" "CAT following radio | Click for frequency marker | Double-click to disable" msgstr "" +"Sledovanie CAT rádia | Kliknite pre zobrazenie frekvenčného markeru | " +"Dvojklikom vypnete" #: application/views/bandmap/list.php:32 msgid "" "Frequency marker active | Click to disable marker | Double-click to disable " "CAT" msgstr "" +"Frekvenčná značka aktívna | Kliknutím deaktivujte značku | Dvojitým " +"kliknutím deaktivujte CAT" #: application/views/bandmap/list.php:33 msgid "Frequency filter changed to" -msgstr "" +msgstr "Frekvenčný filter zmenený na" #: application/views/bandmap/list.php:34 msgid "by transceiver" -msgstr "" +msgstr "cez transceiver" #: application/views/bandmap/list.php:35 msgid "Frequency filter set to" -msgstr "" +msgstr "Nastavený frekvenčný filter na" #: application/views/bandmap/list.php:36 msgid "Frequency outside known bands - showing all bands" -msgstr "" +msgstr "Frekvencia mimo známych pásiem - zobraziť všetky pásma" #: application/views/bandmap/list.php:37 msgid "Waiting for radio data..." -msgstr "" +msgstr "Čakanie na dáta z rádia..." #: application/views/bandmap/list.php:38 msgid "My Favorites" -msgstr "" +msgstr "Moje obľúbené" #: application/views/bandmap/list.php:39 msgid "Failed to load favorites" -msgstr "" +msgstr "Nepodarilo sa načítať obľúbené položky" #: application/views/bandmap/list.php:40 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" +"Módy boli použité. Pásmový filter zachovaný (pripojenie CAT je aktívne)" #: application/views/bandmap/list.php:41 msgid "Applied your favorite bands and modes" -msgstr "" +msgstr "Použité tvoje obľúbené pásma a módy" #: application/views/bandmap/list.php:44 msgid "Loading data from DX Cluster" -msgstr "" +msgstr "Načítanie údajov z DX clustra" #: application/views/bandmap/list.php:45 msgid "Last fetched for" -msgstr "" +msgstr "Naposledy načítané pre" #: application/views/bandmap/list.php:46 msgid "Max Age" -msgstr "" +msgstr "Max trvanlivosť" #: application/views/bandmap/list.php:47 msgid "Fetched at" -msgstr "" +msgstr "Načítané o" #: application/views/bandmap/list.php:48 msgid "Next update in" -msgstr "" +msgstr "Ďalšia aktualizácia za" #: application/views/bandmap/list.php:49 msgid "minutes" -msgstr "" +msgstr "minút" #: application/views/bandmap/list.php:50 msgid "seconds" -msgstr "" +msgstr "sekúnd" #: application/views/bandmap/list.php:51 msgid "spots fetched" -msgstr "" +msgstr "spoty načítané" #: application/views/bandmap/list.php:52 msgid "showing" -msgstr "" +msgstr "zobrazujem" #: application/views/bandmap/list.php:53 msgid "showing all" -msgstr "" +msgstr "zobrazujem všetky" #: application/views/bandmap/list.php:54 msgid "Active filters" -msgstr "" +msgstr "Aktívne filtre" #: application/views/bandmap/list.php:55 msgid "Fetching..." -msgstr "" +msgstr "Načítavam..." #: application/views/bandmap/list.php:58 application/views/bandmap/list.php:261 #: application/views/interface_assets/footer.php:47 msgid "Not worked" -msgstr "" +msgstr "Neurobené" #: application/views/bandmap/list.php:61 application/views/bandmap/list.php:264 msgid "Worked, not Confirmed" -msgstr "" +msgstr "Urobené, nepotvrdené" #: application/views/bandmap/list.php:62 application/views/bandmap/list.php:279 #: application/views/lookup/lotwuser.php:2 @@ -7348,42 +7429,42 @@ msgstr "" #: application/views/search/result.php:65 #: application/views/search/result.php:77 msgid "LoTW User" -msgstr "" +msgstr "LoTW používateľ" #: application/views/bandmap/list.php:63 application/views/bandmap/list.php:282 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" -msgstr "" +msgstr "Nová značka" #: application/views/bandmap/list.php:64 application/views/bandmap/list.php:280 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" -msgstr "" +msgstr "Nový kontinent" #: application/views/bandmap/list.php:65 application/views/bandmap/list.php:281 msgid "New Country" -msgstr "" +msgstr "Nová krajina" #: application/views/bandmap/list.php:66 msgid "Worked Before" -msgstr "" +msgstr "Urobené predtým" #: application/views/bandmap/list.php:67 #, php-format msgid "Worked on %s with %s" -msgstr "" +msgstr "Pracoval na %s s %s" #: application/views/bandmap/list.php:75 application/views/bandmap/list.php:524 msgid "de" -msgstr "" +msgstr "de" #: application/views/bandmap/list.php:76 msgid "spotted" -msgstr "" +msgstr "spotovaný" #: application/views/bandmap/list.php:79 msgid "Fresh spot (< 5 minutes old)" -msgstr "" +msgstr "Čerstvý spot (< 5 minút staré)" #: application/views/bandmap/list.php:80 application/views/bandmap/list.php:81 #: application/views/bandmap/list.php:284 @@ -7396,101 +7477,102 @@ msgstr "" #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" -msgstr "" +msgstr "Contest" #: application/views/bandmap/list.php:82 msgid "Click to view" -msgstr "" +msgstr "Klikni pre zobrazenie" #: application/views/bandmap/list.php:83 msgid "on QRZ.com" -msgstr "" +msgstr "na QRZ.com" #: application/views/bandmap/list.php:84 #, php-format msgid "Click to view %s on QRZ.com" -msgstr "" +msgstr "Klikni pre zobrazenie %s na QRZ.com" #: application/views/bandmap/list.php:85 msgid "See details for" -msgstr "" +msgstr "Zobraziť podrobnosti pre" #: application/views/bandmap/list.php:86 msgid "Worked on" -msgstr "" +msgstr "Urobené na" #: application/views/bandmap/list.php:87 msgid "Not worked on this band" -msgstr "" +msgstr "Neurobené na tomto pásme" #: application/views/bandmap/list.php:88 #, php-format msgid "LoTW User. Last upload was %d days ago" -msgstr "" +msgstr "LoTW používateľ. Posledné nahratie bolo pred %d dňami" #: application/views/bandmap/list.php:89 msgid "Click to view on POTA.app" -msgstr "" +msgstr "Klikni pre zobrazenie na POTA.app" #: application/views/bandmap/list.php:90 msgid "Click to view on SOTL.as" -msgstr "" +msgstr "Kliknite pre zobrazenie na SOTL.as" #: application/views/bandmap/list.php:91 msgid "Click to view on cqgma.org" -msgstr "" +msgstr "Kliknite pre zobrazenie na cqgma.org" #: application/views/bandmap/list.php:92 msgid "Click to view on IOTA-World.org" -msgstr "" +msgstr "Klikni na zobrazenie na IOTA-World.org" #: application/views/bandmap/list.php:93 msgid "See details for continent" -msgstr "" +msgstr "Pozrite si podrobnosti pre kontinent" #: application/views/bandmap/list.php:94 #, php-format msgid "See details for continent %s" -msgstr "" +msgstr "Pozrite si podrobnosti pre kontinent %s" #: application/views/bandmap/list.php:95 msgid "See details for CQ Zone" -msgstr "" +msgstr "Zobraziť podrobnosti o CQ zóne" #: application/views/bandmap/list.php:96 #, php-format msgid "See details for CQ Zone %s" -msgstr "" +msgstr "Zobraziť podrobnosti o CQ zóne %s" #: application/views/bandmap/list.php:97 msgid "in" -msgstr "" +msgstr "v" #: application/views/bandmap/list.php:100 msgid "Exit Fullscreen" -msgstr "" +msgstr "Ukončiť režim celej obrazovky" #: application/views/bandmap/list.php:101 #: application/views/bandmap/list.php:184 msgid "Toggle Fullscreen" -msgstr "" +msgstr "Prepnúť na celú obrazovku" #: application/views/bandmap/list.php:102 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" +"Pásmové filtrovanie je riadené vaším rádiom, keď je aktivované CAT pripojenie" #: application/views/bandmap/list.php:103 msgid "Click to prepare logging" -msgstr "" +msgstr "Klikni na začatie logovania" #: application/views/bandmap/list.php:105 msgid "(requires CAT connection)" -msgstr "" +msgstr "(potrebné CAT pripojenie)" #: application/views/bandmap/list.php:106 msgid "Spotter" -msgstr "" +msgstr "Spotter" #: application/views/bandmap/list.php:107 #: application/views/components/hamsat/table.php:28 @@ -7503,103 +7585,104 @@ msgstr "" #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:362 #: application/views/view_log/qso.php:228 msgid "Comment" -msgstr "" +msgstr "Komentár" #: application/views/bandmap/list.php:108 #: application/views/contesting/index.php:65 msgid "Age" -msgstr "" +msgstr "Trvanlivosť" #: application/views/bandmap/list.php:110 msgid "Incoming" -msgstr "" +msgstr "Prichádzajúce" #: application/views/bandmap/list.php:111 msgid "Outgoing" -msgstr "" +msgstr "Odchádzajúce" #: application/views/bandmap/list.php:112 #: application/views/components/dxwaterfall.php:15 msgid "spots" -msgstr "" +msgstr "spoty" #: application/views/bandmap/list.php:113 msgid "spot" -msgstr "" +msgstr "spot" #: application/views/bandmap/list.php:114 msgid "spotters" -msgstr "" +msgstr "spotteri" #: application/views/bandmap/list.php:117 msgid "Please Wait" -msgstr "" +msgstr "Prosím počkajte" #: application/views/bandmap/list.php:118 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" +"Počkajte %s sekúnd pred odoslaním ďalšej volacej značky do formulára QSO" #: application/views/bandmap/list.php:121 msgid "Loading spots..." -msgstr "" +msgstr "Načítavam spoty..." #: application/views/bandmap/list.php:122 msgid "No spots found" -msgstr "" +msgstr "Žiadne spoty neboli nájdené" #: application/views/bandmap/list.php:123 msgid "No data available" -msgstr "" +msgstr "Nie sú k dispozícii žiadne údaje" #: application/views/bandmap/list.php:124 msgid "No spots found for selected filters" -msgstr "" +msgstr "Pre vybrané filtre sa nenašli žiadne spoty" #: application/views/bandmap/list.php:125 msgid "Error loading spots. Please try again." -msgstr "" +msgstr "Chyba pri načítaní spotov. Skúste to znova." #: application/views/bandmap/list.php:128 msgid "Show all modes" -msgstr "" +msgstr "Zobraziť všetky módy" #: application/views/bandmap/list.php:129 msgid "Show all spots" -msgstr "" +msgstr "Zobraziť všetky spoty" #: application/views/bandmap/list.php:134 msgid "Draw Spotters" -msgstr "" +msgstr "Zakresli spotterov" #: application/views/bandmap/list.php:135 msgid "Extend Map" -msgstr "" +msgstr "Rozšír mapu" #: application/views/bandmap/list.php:136 msgid "Show Day/Night" -msgstr "" +msgstr "Zobraziť deň/noc" #: application/views/bandmap/list.php:137 msgid "Your QTH" -msgstr "" +msgstr "Vaše QTH" #: application/views/bandmap/list.php:173 msgid "Return to Home" -msgstr "" +msgstr "Návrat domov" #: application/views/bandmap/list.php:176 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" -msgstr "" +msgstr "DX Cluster" #: application/views/bandmap/list.php:180 msgid "DX Cluster Help" -msgstr "" +msgstr "Pomoc pre DX cluster" #: application/views/bandmap/list.php:202 msgid "TRX:" -msgstr "" +msgstr "TRX:" #: application/views/bandmap/list.php:204 #: application/views/bandmap/list.php:278 @@ -7608,324 +7691,325 @@ msgstr "" #: application/views/contesting/index.php:159 #: application/views/qso/index.php:387 msgid "None" -msgstr "" +msgstr "Žiadny." #: application/views/bandmap/list.php:205 application/views/qso/index.php:388 msgid "Live - " -msgstr "" +msgstr "Naživo- " #: application/views/bandmap/list.php:205 application/views/qso/index.php:388 msgid "WebSocket (Requires WLGate>=1.1.10)" -msgstr "" +msgstr "WebSocket (vyžaduje WLGate>=1.1.10)" #: application/views/bandmap/list.php:207 application/views/qso/index.php:390 msgid "Polling - " -msgstr "" +msgstr "Dopytovanie - " #: application/views/bandmap/list.php:216 msgid "de:" -msgstr "" +msgstr "de:" #: application/views/bandmap/list.php:218 msgid "Select all continents" -msgstr "" +msgstr "Vyber všetky kontinenty" #: application/views/bandmap/list.php:218 msgid "World" -msgstr "" +msgstr "Svet" #: application/views/bandmap/list.php:219 msgid "Toggle Africa continent filter" -msgstr "" +msgstr "Prepnúť filter kontinentu Afrika" #: application/views/bandmap/list.php:220 msgid "Toggle Antarctica continent filter" -msgstr "" +msgstr "Prepnúť filter kontinentu Antarktída" #: application/views/bandmap/list.php:221 msgid "Toggle Asia continent filter" -msgstr "" +msgstr "Prepnúť filter kontinentu Ázia" #: application/views/bandmap/list.php:222 msgid "Toggle Europe continent filter" -msgstr "" +msgstr "Prepnúť filter kontinentu Európa" #: application/views/bandmap/list.php:223 msgid "Toggle North America continent filter" -msgstr "" +msgstr "Prepni filter kontinentu Severná Amerika" #: application/views/bandmap/list.php:224 msgid "Toggle Oceania continent filter" -msgstr "" +msgstr "Prepnúť filter kontinentu Oceánia" #: application/views/bandmap/list.php:225 msgid "Toggle South America continent filter" -msgstr "" +msgstr "Prepnúť filter kontinentu Južná Amerika" #: application/views/bandmap/list.php:238 msgid "Advanced Filters" -msgstr "" +msgstr "Pokročilé filtre" #: application/views/bandmap/list.php:252 msgid "Hold" -msgstr "" +msgstr "Podržte" #: application/views/bandmap/list.php:252 msgid "and click to select multiple options" -msgstr "" +msgstr "a klikni pre výber viacerých možností" #: application/views/bandmap/list.php:258 msgid "DXCC-Status" -msgstr "" +msgstr "DXCC status" #: application/views/bandmap/list.php:269 #: application/views/components/dxwaterfall.php:31 msgid "Phone" -msgstr "" +msgstr "Fónia" #: application/views/bandmap/list.php:271 #: application/views/components/dxwaterfall.php:35 msgid "Digi" -msgstr "" +msgstr "Digi" #: application/views/bandmap/list.php:276 msgid "Required Flags" -msgstr "" +msgstr "Požadované príznaky" #: application/views/bandmap/list.php:283 msgid "Worked Callsign" -msgstr "" +msgstr "Urobená volacia značka" #: application/views/bandmap/list.php:285 msgid "DX Spot" -msgstr "" +msgstr "DX spot" #: application/views/bandmap/list.php:287 msgid "Additional Flags" -msgstr "" +msgstr "Ďalšie značky" #: application/views/bandmap/list.php:294 msgid "Fresh (< 5 min)" -msgstr "" +msgstr "Čerstvý (< 5 min)" #: application/views/bandmap/list.php:299 msgid "Spots de Continent" -msgstr "" +msgstr "Spoty z kontinentu" #: application/views/bandmap/list.php:313 msgid "Spotted Station Continent" -msgstr "" +msgstr "Kontinent zaspotovanej stanice" #: application/views/bandmap/list.php:373 msgid "Apply Filters" -msgstr "" +msgstr "Použiť filtre" #: application/views/bandmap/list.php:382 msgid "" "Apply your favorite bands and modes (configured in Band and Mode settings)" msgstr "" +"Použi svoje obľúbené pásma a módy (nastavené v nastaveniach Pásiem a Módov)" #: application/views/bandmap/list.php:386 msgid "Clear all filters except De Continent" -msgstr "" +msgstr "Odstráň všetky filtre okrem spotov z kontinentu" #: application/views/bandmap/list.php:393 msgid "Toggle 160m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 160m" #: application/views/bandmap/list.php:397 msgid "Toggle 80m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 80 m" #: application/views/bandmap/list.php:398 msgid "Toggle 60m band filter" -msgstr "" +msgstr "Prepni 60m pásmový filter" #: application/views/bandmap/list.php:399 msgid "Toggle 40m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 40m" #: application/views/bandmap/list.php:400 msgid "Toggle 30m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 30m" #: application/views/bandmap/list.php:401 msgid "Toggle 20m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 20m" #: application/views/bandmap/list.php:402 msgid "Toggle 17m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 17m" #: application/views/bandmap/list.php:403 msgid "Toggle 15m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 15m" #: application/views/bandmap/list.php:404 msgid "Toggle 12m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 12m" #: application/views/bandmap/list.php:405 msgid "Toggle 10m band filter" -msgstr "" +msgstr "Prepnúť filter pásma 10m" #: application/views/bandmap/list.php:409 msgid "Toggle VHF bands filter" -msgstr "" +msgstr "Prepnúť filter pásiem VHF" #: application/views/bandmap/list.php:410 msgid "Toggle UHF bands filter" -msgstr "" +msgstr "Prepnúť filter UHF pásiem" #: application/views/bandmap/list.php:411 msgid "Toggle SHF bands filter" -msgstr "" +msgstr "Prepnúť filter pásiem SHF" #: application/views/bandmap/list.php:421 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" -msgstr "" +msgstr "Prepnúť filter módu CW" #: application/views/bandmap/list.php:422 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" -msgstr "" +msgstr "Prepnúť filter digitálnych módov" #: application/views/bandmap/list.php:423 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" -msgstr "" +msgstr "Prepnúť filter fónických módov" #: application/views/bandmap/list.php:432 msgid "Toggle LoTW User filter" -msgstr "" +msgstr "Prepnúť filter používateľa LoTW" #: application/views/bandmap/list.php:433 msgid "LoTW users" -msgstr "" +msgstr "LoTW používatelia" #: application/views/bandmap/list.php:439 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" -msgstr "" +msgstr "Prepnúť filter DX spot-u (označený kontinent ≠ kontinent spottera)" #: application/views/bandmap/list.php:440 #: application/views/bandmap/list.php:519 msgid "DX" -msgstr "" +msgstr "DX" #: application/views/bandmap/list.php:442 msgid "Toggle New Continents filter" -msgstr "" +msgstr "Prepnúť filter Nových kontinentov" #: application/views/bandmap/list.php:443 msgid "New Continents" -msgstr "" +msgstr "Nové kontinenty" #: application/views/bandmap/list.php:445 msgid "Toggle New Entities filter" -msgstr "" +msgstr "Prepnúť filter Nových entít" #: application/views/bandmap/list.php:446 msgid "New Entities" -msgstr "" +msgstr "Nové entity" #: application/views/bandmap/list.php:448 msgid "Toggle New Callsigns filter" -msgstr "" +msgstr "Prepnúť filter nových volacích znakov" #: application/views/bandmap/list.php:449 msgid "New Callsigns" -msgstr "" +msgstr "Nové volacie značky" #: application/views/bandmap/list.php:455 msgid "Toggle Fresh spots filter (< 5 minutes old)" -msgstr "" +msgstr "Prepínač filtra čerstvých spotov (nie starších ako 5 minút)" #: application/views/bandmap/list.php:456 msgid "Fresh" -msgstr "" +msgstr "Čerstvé" #: application/views/bandmap/list.php:458 msgid "Toggle Contest filter" -msgstr "" +msgstr "Prepnúť filter contestov" #: application/views/bandmap/list.php:461 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" -msgstr "" +msgstr "Prepnúť Geo Hunter (POTA/SOTA/IOTA/WWFF)" #: application/views/bandmap/list.php:462 msgid "Referenced" -msgstr "" +msgstr "Uvedené" #: application/views/bandmap/list.php:468 msgid "Open DX Map view" -msgstr "" +msgstr "Otvoriť mapu DX" #: application/views/bandmap/list.php:469 msgid "DX Map" -msgstr "" +msgstr "DX mapa" #: application/views/bandmap/list.php:493 msgid "Search spots..." -msgstr "" +msgstr "Vyhľadať spoty..." #: application/views/bandmap/list.php:506 msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" +msgstr "Poznámka: mapa zobrazuje polohy DXCC entít, nie skutočné lokácie miest" #: application/views/bandmap/list.php:514 msgid "Age in minutes" -msgstr "" +msgstr "Doba v minútach" #: application/views/bandmap/list.php:516 msgid "Freq" -msgstr "" +msgstr "Frekv." #: application/views/bandmap/list.php:518 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" -msgstr "" +msgstr "Submód" #: application/views/bandmap/list.php:519 msgid "Spotted Callsign" -msgstr "" +msgstr "Zachytená volačka" #: application/views/bandmap/list.php:522 msgid "Flag" -msgstr "" +msgstr "Príznak" #: application/views/bandmap/list.php:523 msgid "DXCC Entity" -msgstr "" +msgstr "DXCC entita" #: application/views/bandmap/list.php:523 msgid "Entity" -msgstr "" +msgstr "Entita" #: application/views/bandmap/list.php:524 msgid "Spotter Callsign" -msgstr "" +msgstr "Značka spottera" #: application/views/bandmap/list.php:525 msgid "Spotter Continent" -msgstr "" +msgstr "Kontinent spottera" #: application/views/bandmap/list.php:526 msgid "Spotter CQ Zone" -msgstr "" +msgstr "Spotterova CQ zóna" #: application/views/bandmap/list.php:527 msgid "Last QSO Date" -msgstr "" +msgstr "Dátum posledného QSO" #: application/views/bandmap/list.php:528 msgid "Special" -msgstr "" +msgstr "Špeciálny" #: application/views/bandmap/list.php:528 msgid "Special Flags" -msgstr "" +msgstr "Špeciálne príznaky" #: application/views/bandmap/list.php:529 #: application/views/oqrs/notinlogform.php:28 @@ -7933,156 +8017,163 @@ msgstr "" #: application/views/oqrs/request_grouped.php:57 #: application/views/oqrs/status_info.php:5 msgid "Message" -msgstr "" +msgstr "Správa" #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" -msgstr "" +msgstr "Zadaj platné čísla pre frekvenciu" #: application/views/bands/bandedges.php:3 msgid "The 'From' frequency must be less than the 'To' frequency." -msgstr "" +msgstr "Frekvencia „Od“ musí byť nižšia ako frekvencia „Do“." #: application/views/bands/bandedges.php:4 msgid "The Frequency overlaps with an existing entry." -msgstr "" +msgstr "Frekvencia sa prekrýva s existujúcim záznamom." #: application/views/bands/bandedges.php:5 msgid "Are you sure you want to delete this band edge?" -msgstr "" +msgstr "Si si istý, že chceš odstrániť tento okraj pásma?" #: application/views/bands/bandedges.php:17 msgid "Bandedges" -msgstr "" +msgstr "Okraje pásiem" #: application/views/bands/bandedges.php:22 msgid "" "Using the bandedges list you can control the mode classification in the " "cluster." msgstr "" +"Pomocou zoznamu okrajov pásiem môžete ovládať klasifikáciu módov v clustri." #: application/views/bands/bandedges.php:29 msgid "Frequency from (Hz)" -msgstr "" +msgstr "Frekvencia od (Hz)" #: application/views/bands/bandedges.php:30 msgid "Frequency to (Hz)" -msgstr "" +msgstr "Frekvencia do (Hz)" #: application/views/bands/bandedges.php:65 msgid "Add a bandedge" -msgstr "" +msgstr "Pridať okraj pásma" #: application/views/bands/create.php:26 application/views/bands/edit.php:9 msgid "Name of Band (E.g. 20m)" -msgstr "" +msgstr "Názov pásma (napr. 20m)" #: application/views/bands/create.php:29 application/views/bands/edit.php:12 #: application/views/bands/index.php:65 msgid "Bandgroup" -msgstr "" +msgstr "Pásmová skupina" #: application/views/bands/create.php:31 application/views/bands/edit.php:14 msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" -msgstr "" +msgstr "Názov pásmovej skupiny (napr. hf, vhf, uhf, shf)" #: application/views/bands/create.php:34 application/views/bands/edit.php:17 #: application/views/bands/index.php:66 msgid "SSB QRG" -msgstr "" +msgstr "SSB QRG" #: application/views/bands/create.php:36 application/views/bands/edit.php:19 msgid "Frequency for SSB QRG in band (must be in Hz)" -msgstr "" +msgstr "Frekvencia pre SSB QRG v pásme (musí byť v Hz)" #: application/views/bands/create.php:39 application/views/bands/edit.php:22 #: application/views/bands/index.php:67 msgid "DATA QRG" -msgstr "" +msgstr "DATA QRG" #: application/views/bands/create.php:41 application/views/bands/edit.php:24 msgid "Frequency for DATA QRG in band (must be in Hz)" -msgstr "" +msgstr "Frekvencia pre DATA QRG v pásme (musí byť v Hz)" #: application/views/bands/create.php:44 application/views/bands/edit.php:27 #: application/views/bands/index.php:68 msgid "CW QRG" -msgstr "" +msgstr "CW QRG" #: application/views/bands/create.php:46 application/views/bands/edit.php:29 msgid "Frequency for CW QRG in band (must be in Hz)" -msgstr "" +msgstr "Frekvencia pre CW QRG v pásme (musí byť v Hz)" #: application/views/bands/edit.php:2 msgid "" "Changes made here are instance-wide and will affect EVERY User. You see " "this, because you're an instance-admin" msgstr "" +"Zmeny vykonané tu sú celoplošné a ovplyvnia KAŽDÉHO používateľa. Vidíš to, " +"pretože si administrátor inštancie" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 #: application/views/update/index.php:35 msgid "WARNING" -msgstr "" +msgstr "UPOZORNENIE" #: application/views/bands/index.php:38 msgid "" "Using the band list you can control which bands are shown when creating a " "new QSO." msgstr "" +"Pomocou zoznamu pásiem môžeš ovládať, ktoré pásma sa zobrazia pri zadávaní " +"nového spojenia." #: application/views/bands/index.php:39 msgid "" "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " "will be hidden and cannot be selected." msgstr "" +"Aktívne pásma budú zobrazené v rozbaľovacom zozname QSO 'Pásmo', zatiaľ čo " +"neaktívne pásma budú skryté a nebude ich možné vybrať." #: application/views/bands/index.php:56 msgid "Sig" -msgstr "" +msgstr "Sig" #: application/views/bands/index.php:58 msgid "USA County" -msgstr "" +msgstr "Okres v USA" #: application/views/bands/index.php:61 #: application/views/interface_assets/header.php:234 msgid "WAPC" -msgstr "" +msgstr "WAPC" #: application/views/bands/index.php:62 #: application/views/interface_assets/header.php:254 msgid "WAJA" -msgstr "" +msgstr "WAJA" #: application/views/bands/index.php:63 #: application/views/interface_assets/header.php:290 msgid "WAS" -msgstr "" +msgstr "WAS" #: application/views/bands/index.php:69 msgid "QRG Unit" -msgstr "" +msgstr "QRG jednotka" #: application/views/bands/index.php:104 msgid "Hz" -msgstr "" +msgstr "Hz" #: application/views/bands/index.php:105 msgid "kHz" -msgstr "" +msgstr "kHz" #: application/views/bands/index.php:106 msgid "MHz" -msgstr "" +msgstr "MHz" #: application/views/bands/index.php:107 msgid "GHz" -msgstr "" +msgstr "GHz" #: application/views/bands/index.php:159 application/views/bands/index.php:165 msgid "Create a band" -msgstr "" +msgstr "Vytvoriť pásmo" #: application/views/bands/index.php:160 #: application/views/club/permissions.php:142 @@ -8101,84 +8192,86 @@ msgstr "Zatvoriť" #: application/views/bands/index.php:161 msgid "Warning! Are you sure you want to delete the following band: " -msgstr "" +msgstr "Varovanie! Ste si istý, že chcete odstrániť nasledujúce pásmo: " #: application/views/bands/index.php:162 msgid "Warning! Are you sure you want to activate all bands?" -msgstr "" +msgstr "Upozornenie! Si si istý, že chceš aktivovať všetky pásma?" #: application/views/bands/index.php:163 msgid "Warning! Are you sure you want to deactivate all bands?" -msgstr "" +msgstr "Varovanie! Ste si istý, že chcete deaktivovať všetky pásma?" #: application/views/bands/index.php:166 #: application/views/contesting/add.php:77 application/views/mode/index.php:89 #: application/views/usermode/index.php:76 msgid "Activate All" -msgstr "" +msgstr "Aktivovať všetko" #: application/views/bands/index.php:167 #: application/views/contesting/add.php:78 application/views/mode/index.php:90 #: application/views/usermode/index.php:77 msgid "Deactivate All" -msgstr "" +msgstr "Vypnúť všetky" #: application/views/cabrillo/cbr_success.php:12 msgid "Results of CBR Contest Data Update" -msgstr "" +msgstr "Výsledky aktualizácie contestového CBR" #: application/views/cabrillo/cbr_success.php:17 msgid "" "Your contest QSOs have been updated using the values of your Cabrillo file." msgstr "" +"Tvoje contestové spojenia boli aktualizované pomocou hodnôt z tvojho " +"Cabrillo súboru." #: application/views/cabrillo/cbr_success.php:19 msgid "No QSOs were updated by your Cabrillo file." -msgstr "" +msgstr "Žiadne spojenia neboli aktualizované vaším Cabrillo súborom." #: application/views/cabrillo/cbr_success.php:25 msgid "CBR errors" -msgstr "" +msgstr "CBR chyby" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:60 #: application/views/reg1test/index.php:2 #: application/views/reg1test/index.php:36 msgid "Proceed" -msgstr "" +msgstr "Pokračuj" #: application/views/cabrillo/index.php:3 #: application/views/reg1test/index.php:3 msgid "Select Year" -msgstr "" +msgstr "Vyberte rok" #: application/views/cabrillo/index.php:4 #: application/views/reg1test/index.php:4 msgid "Select Contest" -msgstr "" +msgstr "Vyber contest" #: application/views/cabrillo/index.php:5 #: application/views/reg1test/index.php:5 msgid "Select Date Range" -msgstr "" +msgstr "Vyberte rozsah dátumov" #: application/views/cabrillo/index.php:6 #: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" -msgstr "" +msgstr "Pre túto polohu stanice neboli nájdené žiadne contesty!" #: application/views/cabrillo/index.php:16 msgid "Export a contest to a Cabrillo log" -msgstr "" +msgstr "Exportovať contestový log do formátu Cabrillo" #: application/views/cabrillo/index.php:28 msgid "Select Station Location:" -msgstr "" +msgstr "Vyberte umiestnenie stanice:" #: application/views/cabrillo/index.php:44 #: application/views/reg1test/index.php:53 msgid "Club" -msgstr "" +msgstr "Klub" #: application/views/cabrillo/index.php:48 msgid "" @@ -8186,16 +8279,21 @@ msgid "" "For foreign stations LOCATION must be 'DX'. This information is required for " "IARU-HF and for all ARRL and CQ contests." msgstr "" +"Pre stanice USA a Kanady musí byť LOKÁCIA označená skratkou sekcie ARRL. Pre " +"zahraničné stanice musí byť LOKÁCIA 'DX'. Tieto informácie sú potrebné pre " +"IARU-HF a pre všetky súťaže ARRL a CQ." #: application/views/cabrillo/index.php:48 msgid "For the RDXC contest this contains the RDA number." -msgstr "" +msgstr "Pre RDXC contest toto obsahuje číslo RDA." #: application/views/cabrillo/index.php:48 msgid "" "For the RSGB-IOTA contest this information contains the IOTA name (not the " "IOTA reference code)." msgstr "" +"Pre RSGB-IOTA contest táto informácia obsahuje názov IOTA (nie referenčný " +"kód IOTA)." #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:787 @@ -8203,48 +8301,48 @@ msgstr "" #: application/views/qso/index.php:345 #: application/views/station_profile/edit.php:96 msgid "Location" -msgstr "" +msgstr "Poloha" #: application/views/cabrillo/index.php:52 #: application/views/reg1test/index.php:58 msgid "Category Operator" -msgstr "" +msgstr "Kategória operátora" #: application/views/cabrillo/index.php:60 msgid "Category Assisted" -msgstr "" +msgstr "Kategória Assisted" #: application/views/cabrillo/index.php:67 msgid "Category Band" -msgstr "" +msgstr "Kategória pásmová" #: application/views/cabrillo/index.php:93 msgid "Light/Laser" -msgstr "" +msgstr "Svetlo/Laser" #: application/views/cabrillo/index.php:94 msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" -msgstr "" +msgstr "VHF-3-BAND a VHF-FM-ONLY (len ARRL VHF contesty)" #: application/views/cabrillo/index.php:98 msgid "Category Mode" -msgstr "" +msgstr "Kategória podľa módu" #: application/views/cabrillo/index.php:109 msgid "Category Power" -msgstr "" +msgstr "Kategória podľa výkonu" #: application/views/cabrillo/index.php:117 msgid "Category Station" -msgstr "" +msgstr "Kategória podľa stanice" #: application/views/cabrillo/index.php:133 msgid "Category Transmitter" -msgstr "" +msgstr "Kategória podľa vysielača" #: application/views/cabrillo/index.php:143 msgid "Category Time" -msgstr "" +msgstr "Kategória podľa času" #: application/views/cabrillo/index.php:145 #: application/views/cabrillo/index.php:146 @@ -8252,47 +8350,47 @@ msgstr "" #: application/views/cabrillo/index.php:148 #, php-format msgid "%d Hours" -msgstr "" +msgstr "%d hodín" #: application/views/cabrillo/index.php:152 msgid "Category Overlay" -msgstr "" +msgstr "Kategória Overlay" #: application/views/cabrillo/index.php:164 #: application/views/reg1test/index.php:70 #: application/views/statistics/index.php:17 #: application/views/statistics/index.php:73 msgid "Operators" -msgstr "" +msgstr "Operátori" #: application/views/cabrillo/index.php:169 #: application/views/reg1test/index.php:139 msgid "Soapbox" -msgstr "" +msgstr "Soapbox" #: application/views/cabrillo/index.php:173 msgid "Address" -msgstr "" +msgstr "Adresa" #: application/views/cabrillo/index.php:177 msgid "Address City" -msgstr "" +msgstr "Adresa mesta" #: application/views/cabrillo/index.php:181 msgid "Address State/Province" -msgstr "" +msgstr "Adresa štát/provincia" #: application/views/cabrillo/index.php:185 msgid "Address Postalcode" -msgstr "" +msgstr "Adresa PSČ" #: application/views/cabrillo/index.php:189 msgid "Address Country" -msgstr "" +msgstr "Adresa krajina" #: application/views/cabrillo/index.php:193 msgid "Certificate" -msgstr "" +msgstr "Certifikát" #: application/views/cabrillo/index.php:193 msgid "" @@ -8300,6 +8398,9 @@ msgid "" "postal mail by the contest sponsor. The contest sponsor may or may not honor " "this tag." msgstr "" +"Uveď, či si praješ, ak si oprávnený, dostať papierový certifikát zaslaný " +"poštou od sponzora súťaže. Sponzor súťaže môže, ale nemusí, tento štítok " +"zohľadniť." #: application/views/cabrillo/index.php:196 #: application/views/cabrillo/index.php:204 @@ -8434,48 +8535,48 @@ msgstr "Nie" #: application/views/cabrillo/index.php:201 msgid "If the gridsquare was part of the exchange, you should select YES." -msgstr "" +msgstr "Ak bol súčasťou výmeny lokátor, mali by ste zvoliť ÁNO." #: application/views/cabrillo/index.php:201 msgid "Include logged grids?" -msgstr "" +msgstr "Zahrnúť zaznamenané štvorce?" #: application/views/cabrillo/index.php:215 #: application/views/reg1test/index.php:150 msgid "No contests were found in your log." -msgstr "" +msgstr "Nenašli sa žiadne contesty vo vašom logu." #: application/views/callstats/index.php:70 #: application/views/gridmap/index.php:76 msgid "All except SAT" -msgstr "" +msgstr "Všetko okrem SAT" #: application/views/callstats/index.php:148 msgid "#QSOs" -msgstr "" +msgstr "#QSOs" #: application/views/callstats/index.php:149 msgid "First QSO" -msgstr "" +msgstr "Prvé QSO" #: application/views/callstats/index.php:150 #: application/views/stationsetup/stationsetup.php:131 msgid "Last QSO" -msgstr "" +msgstr "Posledné QSO" #: application/views/club/clubswitch_modal.php:5 msgid "Switch to a Clubstation" -msgstr "" +msgstr "Prepnúť na klubovú stanicu" #: application/views/club/clubswitch_modal.php:9 #, php-format msgid "Are you sure you want to switch to %s?" -msgstr "" +msgstr "Si si istý, že chceš prepnúť na %s?" #: application/views/club/clubswitch_modal.php:14 #: application/views/user/modals/stop_impersonate_modal.php:13 msgid "Yes, switch over!" -msgstr "" +msgstr "Áno, prepnúť!" #: application/views/club/clubswitch_modal.php:15 #: application/views/club/permissions.php:205 @@ -8487,16 +8588,16 @@ msgstr "" #: application/views/user/modals/admin_impersonate_modal.php:45 #: application/views/user/modals/stop_impersonate_modal.php:14 msgid "Cancel" -msgstr "" +msgstr "Zrušiť" #: application/views/club/permissions.php:3 #, php-format msgid "Club Permissions for %s" -msgstr "" +msgstr "Oprávnenia klubu pre %s" #: application/views/club/permissions.php:4 msgid "Go back" -msgstr "" +msgstr "Vráť sa späť" #: application/views/club/permissions.php:13 msgid "" @@ -8504,85 +8605,89 @@ msgid "" "appropriate authorizations. Add users to the table below and set the " "appropriate permission." msgstr "" +"Aby mohli používatelia zaznamenať spojenia pod týmto klubom/špeciálnou " +"volacou značkou, potrebujú príslušné autorizácie. Pridajte používateľov do " +"tabuľky nižšie a nastavte príslušné povolenie." #: application/views/club/permissions.php:14 msgid "See available Permissions" -msgstr "" +msgstr "Zobraziť dostupné povolenia" #: application/views/club/permissions.php:19 msgid "Available Permissions" -msgstr "" +msgstr "Dostupné povolenia" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 msgid "Action" -msgstr "" +msgstr "Akcia" #: application/views/club/permissions.php:33 msgid "Log QSOs via Web GUI (live and post)" msgstr "" +"Zaznamenaj spojenie cez webové rozhranie GUI (v reálnom čase a dodatočne)" #: application/views/club/permissions.php:41 msgid "Log QSOs via API" -msgstr "" +msgstr "Zaznamenaj spojenie cez API" #: application/views/club/permissions.php:49 msgid "Edit a QSO" -msgstr "" +msgstr "Uprav QSO" #: application/views/club/permissions.php:54 #: application/views/club/permissions.php:72 msgid "QSO was done by the operator" -msgstr "" +msgstr "QSO urobil operátor" #: application/views/club/permissions.php:59 #: application/views/club/permissions.php:77 msgid "QSO was done by another operator" -msgstr "" +msgstr "QSO urobil iný operátor" #: application/views/club/permissions.php:67 msgid "Delete a QSO" -msgstr "" +msgstr "Zmazať QSO" #: application/views/club/permissions.php:85 msgid "Manage Stationsetup (edit/create logbooks and locations)" -msgstr "" +msgstr "Spravovať nastavenie stanice (upravovať/vytvárať denníky a miesta)" #: application/views/club/permissions.php:93 msgid "Manage Third-Party services" -msgstr "" +msgstr "Spravujte služby tretích strán" #: application/views/club/permissions.php:101 msgid "Import QSO per ADIF" -msgstr "" +msgstr "Import spojení cez ADIF" #: application/views/club/permissions.php:110 msgid "Export QSO per ADIF" -msgstr "" +msgstr "Export spojení do formátu ADIF" #: application/views/club/permissions.php:118 msgid "User Management" -msgstr "" +msgstr "Správa používateľov" #: application/views/club/permissions.php:123 msgid "Can create new users in Wavelog" -msgstr "" +msgstr "Môže vytvárať nových používateľov vo Wavelog" #: application/views/club/permissions.php:128 msgid "Can edit other users in Wavelog" -msgstr "" +msgstr "Môže upravovať ostatných používateľov vo Wavelogu" #: application/views/club/permissions.php:133 msgid "Can edit Club permissions and add/remove users" -msgstr "" +msgstr "Môže upravovať oprávnenia klubu a pridávať/odstraňovať používateľov" #: application/views/club/permissions.php:151 msgid "Users with Permissions" -msgstr "" +msgstr "Používatelia s povoleniami" #: application/views/club/permissions.php:161 msgid "Add new User to Club" -msgstr "" +msgstr "Pridať nového používateľa do klubu" #: application/views/club/permissions.php:167 #, php-format @@ -8590,28 +8695,33 @@ msgid "" "You can only add users to the %s Clubstation if they already exist on this " "Wavelog Server." msgstr "" +"Do klubu %s môžeš pridať používateľov len vtedy, ak už existujú na tomto " +"serveri Wavelog." #: application/views/club/permissions.php:168 msgid "" "If they don't exist, please ask your Wavelog Administrator to create an " "account for them." msgstr "" +"Ak neexistujú, požiadajte svojho správcu Wavelogu, aby im vytvoril účet." #: application/views/club/permissions.php:169 msgid "" "Search for the user by their callsign or first/lastname and select the " "permission level." msgstr "" +"Vyhľadaj používateľa podľa jeho volacieho znaku alebo mena/priezviska a " +"vyber úroveň povolenia." #: application/views/club/permissions.php:175 msgid "User (Callsign or Name)" -msgstr "" +msgstr "Používateľ (volacia značka alebo meno)" #: application/views/club/permissions.php:176 #: application/views/club/permissions.php:225 #: application/views/club/permissions.php:269 msgid "Permission" -msgstr "" +msgstr "Povolenie" #: application/views/club/permissions.php:183 msgid "Type at least 2 characters." @@ -8672,13 +8782,13 @@ msgstr "Volacia značka: %s" #: application/views/club/permissions.php:321 #, php-format msgid "Role: %s" -msgstr "" +msgstr "Rola: %s" #: application/views/clublog/export.php:10 #: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 #: application/views/webadif/export.php:10 msgid "Upload Logbook" -msgstr "" +msgstr "Nahraj denník" #: application/views/clublog/export.php:14 #: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 @@ -8686,23 +8796,26 @@ msgstr "" #: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 #: application/views/qrz/export.php:14 msgid "Download QSLs" -msgstr "" +msgstr "Download QSL" #: application/views/clublog/export.php:24 msgid "The next automatic Upload to Clublog will happen at: " -msgstr "" +msgstr "Ďalší automatický upload do Clublogu prebehne o: " #: application/views/clublog/export.php:25 msgid "" "Here you can see all QSOs which have not been previously uploaded to a " "Clublog logbook." msgstr "" +"Tu môžeš vidieť všetky QSOs, ktoré neboli predtým nahraté do denníka Clublog." #: application/views/clublog/export.php:26 msgid "" "You need to set a username and password in your user account. You will also " "need to enable upload for each station profile ." msgstr "" +"Musíš nastaviť používateľské meno a heslo vo svojom používateľskom účte. " +"Budeš tiež musieť povoliť nahrávanie pre každý profil stanice." #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 @@ -8713,297 +8826,307 @@ msgstr "" #: application/views/qslprint/qsolist.php:15 #: application/views/webadif/export.php:41 msgid "Profile name" -msgstr "" +msgstr "Názov profilu" #: application/views/clublog/export.php:35 #: application/views/hrdlog/export.php:35 #: application/views/oqrs/showrequests.php:91 #: application/views/qrz/export.php:40 application/views/webadif/export.php:42 msgid "Station callsign" -msgstr "" +msgstr "Značka stanice" #: application/views/clublog/export.php:36 #: application/views/hrdlog/export.php:36 application/views/qrz/export.php:41 msgid "Edited QSOs not uploaded" -msgstr "" +msgstr "Upravené spojenia neboli nahrané" #: application/views/clublog/export.php:37 #: application/views/hrdlog/export.php:37 application/views/qrz/export.php:42 #: application/views/webadif/export.php:43 msgid "Total QSOs not uploaded" -msgstr "" +msgstr "Celkovo nenahraných spojení" #: application/views/clublog/export.php:38 #: application/views/hrdlog/export.php:38 application/views/qrz/export.php:43 #: application/views/webadif/export.php:44 msgid "Total QSOs uploaded" -msgstr "" +msgstr "Celkový počet nahraných spojení" #: application/views/clublog/export.php:69 msgid "The next automatic Download from Clublog-QSLs will happen at: " -msgstr "" +msgstr "Ďalšie automatické stiahnutie z Clublog-QSL sa uskutoční: " #: application/views/clublog/export.php:70 application/views/qrz/export.php:75 msgid "" "If no startdate is given then the QSLs after last confirmation will be " "downloaded/updated!" msgstr "" +"Ak nie je uvedený dátum začiatku, QSL po poslednom potvrdení sa stiahnu/" +"aktualizujú!" #: application/views/clublog/export.php:78 msgid "Download QSLs from Clublog" -msgstr "" +msgstr "Download QSL z Clublog-u" #: application/views/components/dxwaterfall.php:13 msgid "Tune to spot frequency and start logging QSO" -msgstr "" +msgstr "Nalaď sa na frekvenciu a začať logovať spojenie" #: application/views/components/dxwaterfall.php:14 msgid "Cycle through nearby spots" -msgstr "" +msgstr "Cykli cez spoty v okolí" #: application/views/components/dxwaterfall.php:17 msgid "New DXCC" -msgstr "" +msgstr "Nová DXCC" #: application/views/components/dxwaterfall.php:19 msgid "First spot" -msgstr "" +msgstr "Prvý spot" #: application/views/components/dxwaterfall.php:19 msgid "Previous spot" -msgstr "" +msgstr "Predošlý spot" #: application/views/components/dxwaterfall.php:20 msgid "No spots at lower frequency" -msgstr "" +msgstr "Žiadne spoty na nižšej frekvencii" #: application/views/components/dxwaterfall.php:21 msgid "Last spot" -msgstr "" +msgstr "Posledný spot" #: application/views/components/dxwaterfall.php:21 msgid "Next spot" -msgstr "" +msgstr "Nasledujúci spot" #: application/views/components/dxwaterfall.php:22 msgid "No spots at higher frequency" -msgstr "" +msgstr "Žiadne spoty na vyššej frekvencii" #: application/views/components/dxwaterfall.php:23 msgid "No spots available" -msgstr "" +msgstr "Žiadne dostupné spoty" #: application/views/components/dxwaterfall.php:24 msgid "Cycle through unworked continents/DXCC" -msgstr "" +msgstr "Cykluj cez neurobené kontinenty/DXCC" #: application/views/components/dxwaterfall.php:25 msgid "DX Hunter" -msgstr "" +msgstr "DX Lovec" #: application/views/components/dxwaterfall.php:26 msgid "No unworked continents/DXCC on this band" -msgstr "" +msgstr "Žiadne neurobené kontinenty/DXCC na tomto pásme" #: application/views/components/dxwaterfall.php:27 msgid "Click to cycle or wait 1.5s to apply" -msgstr "" +msgstr "Klikni pre cyklus alebo počkaj 1,5 s na použitie" #: application/views/components/dxwaterfall.php:28 msgid "Change spotter continent" -msgstr "" +msgstr "Zmeň kontinent spottera" #: application/views/components/dxwaterfall.php:29 msgid "Filter by mode" -msgstr "" +msgstr "Filtrovať podľa módu" #: application/views/components/dxwaterfall.php:36 msgid "Zoom out" -msgstr "" +msgstr "Oddialiť" #: application/views/components/dxwaterfall.php:37 msgid "Reset zoom to default (3)" -msgstr "" +msgstr "Obnoviť priblíženie na predvolené (3)" #: application/views/components/dxwaterfall.php:38 msgid "Zoom in" -msgstr "" +msgstr "Priblíž" #: application/views/components/dxwaterfall.php:39 msgid "Downloading DX Cluster data" -msgstr "" +msgstr "Sťahovanie údajov DX Cluster" #: application/views/components/dxwaterfall.php:40 msgid "Comment: " -msgstr "" +msgstr "Poznámka: " #: application/views/components/dxwaterfall.php:41 msgid "modes:" -msgstr "" +msgstr "módy:" #: application/views/components/dxwaterfall.php:42 msgid "OUT OF BANDPLAN" -msgstr "" +msgstr "MIMO BANDPLÁNU" #: application/views/components/dxwaterfall.php:43 msgid "Out of band" -msgstr "" +msgstr "Mimo pásmo" #: application/views/components/dxwaterfall.php:44 msgid "" "DX Waterfall has experienced an unexpected error and will be shut down. " "Please visit Wavelog's GitHub and create a bug report if this issue persists." msgstr "" +"DX Waterfall narazil na neočakávanú chybu a bude vypnutý. Ak tento problém " +"pretrváva, navštívte GitHub Wavelogu a vytvorte hlásenie o chybe." #: application/views/components/dxwaterfall.php:45 msgid "Changing radio frequency..." -msgstr "" +msgstr "Zmena rádiovej frekvencie..." #: application/views/components/dxwaterfall.php:46 msgid "INVALID" -msgstr "" +msgstr "NEPLATNÉ" #: application/views/components/dxwaterfall.php:47 msgid "Click to turn on the DX Waterfall" -msgstr "" +msgstr "Klikni na zapnutie DX Waterfall" #: application/views/components/dxwaterfall.php:48 msgid "Turn off DX Waterfall" -msgstr "" +msgstr "Vypni DX Waterfall" #: application/views/components/dxwaterfall.php:49 msgid "Please wait" -msgstr "" +msgstr "Prosím počkajte" #: application/views/components/dxwaterfall.php:50 msgid "Cycle label size" -msgstr "" +msgstr "Veľkosť štítku cyklu" #: application/views/components/dxwaterfall.php:51 msgid "X-Small" -msgstr "" +msgstr "Veľmi malý" #: application/views/components/dxwaterfall.php:52 msgid "Small" -msgstr "" +msgstr "Malý" #: application/views/components/dxwaterfall.php:53 msgid "Medium" -msgstr "" +msgstr "Stredný" #: application/views/components/dxwaterfall.php:54 msgid "Large" -msgstr "" +msgstr "Veľký" #: application/views/components/dxwaterfall.php:55 msgid "X-Large" -msgstr "" +msgstr "Extra veľký" #: application/views/components/dxwaterfall.php:56 msgid "by:" -msgstr "" +msgstr "od:" #: application/views/components/dxwaterfall.php:57 #, php-format msgid "Please wait %s second(s) before toggling DX Waterfall again." -msgstr "" +msgstr "Počkajte %s sekúnd, kým znova zapnete DX Waterfall." #: application/views/components/dxwaterfall.php:81 #: application/views/components/dxwaterfall.php:87 msgid "DX Waterfall Help" -msgstr "" +msgstr "DX Waterfall nápoveda" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" -msgstr "" +msgstr "Hamsat - Satellite Rovers" #: application/views/components/hamsat/table.php:4 #: application/views/contestcalendar/index.php:11 #: application/views/dxcalendar/index.php:4 #: application/views/hamsat/index.php:8 msgid "This data comes from" -msgstr "" +msgstr "Tieto údaje pochádzajú z" #: application/views/components/hamsat/table.php:11 msgid "Show All Passes" -msgstr "" +msgstr "Zobraziť všetky prelety" #: application/views/components/hamsat/table.php:14 msgid "Private feed key empty. Please set the feed key in your profile." msgstr "" +"Kľúč privátneho kanálu je prázdny. Nastav kľúč kanálu vo svojom profile." #: application/views/components/hamsat/table.php:19 msgid "No upcoming activations found. Please check back later." msgstr "" +"Žiadne nadchádzajúce aktivácie neboli nájdené. Skontrolujte to prosím neskôr." #: application/views/components/hamsat/table.php:31 #: application/views/hamsat/index.php:34 msgid "Gridsquare(s)" -msgstr "" +msgstr "Lokátor(y)" #: application/views/components/hamsat/table.php:32 #: application/views/hamsat/index.php:35 msgid "Workable" -msgstr "" +msgstr "Urobiteľné" #: application/views/components/hamsat/table.php:134 msgctxt "Hamsat - Track Satellites" msgid "Track" -msgstr "" +msgstr "Sledovať" #: application/views/components/hamsat/table.php:146 msgid "Sked" -msgstr "" +msgstr "Sked" #: application/views/components/radio_display_table.php:5 msgid "Radio Status" -msgstr "" +msgstr "Stav rádia" #: application/views/contestcalendar/index.php:16 msgid "No Contests" -msgstr "" +msgstr "Žiadne contesty" #: application/views/contestcalendar/index.php:22 msgid "Start" -msgstr "" +msgstr "Štart" #: application/views/contestcalendar/index.php:23 msgid "End" -msgstr "" +msgstr "Koniec" #: application/views/contestcalendar/index.php:24 msgid "Link" -msgstr "" +msgstr "Odkaz" #: application/views/contestcalendar/index.php:33 msgid "Show Details" -msgstr "" +msgstr "Zobraziť podrobnosti" #: application/views/contestcalendar/index.php:55 msgid "Weekend" -msgstr "" +msgstr "Víkend" #: application/views/contestcalendar/index.php:66 msgid "Next Week" -msgstr "" +msgstr "Budúci týždeň" #: application/views/contesting/add.php:16 msgid "" "Using the contest list, you can control which Contests are shown when " "logging QSOs in a contest." msgstr "" +"Pomocou zoznamu contestov môžete ovládať, ktoré contesty sa zobrazia pri " +"logovaní spojení v conteste." #: application/views/contesting/add.php:19 msgid "" "Active contests will be shown in the Contest Name drop-down, while inactive " "contests will be hidden and cannot be selected." msgstr "" +"Aktívne contesty sa zobrazia v rozbaľovacej ponuke Názov contestu, zatiaľ čo " +"neaktívne súťaže budú skryté a nebude ich možné vybrať." #: application/views/contesting/add.php:26 #: application/views/contesting/create.php:30 msgid "ADIF Name" -msgstr "" +msgstr "ADIF názov" #: application/views/contesting/add.php:27 #: application/views/contesting/add.php:41 @@ -9017,159 +9140,162 @@ msgstr "" #: application/views/usermode/index.php:6 #: application/views/usermode/index.php:51 msgid "Active" -msgstr "" +msgstr "Aktívny" #: application/views/contesting/add.php:39 #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:49 msgid "Not Active" -msgstr "" +msgstr "Neaktívny" #: application/views/contesting/add.php:40 #: application/views/contesting/add.php:49 application/views/mode/index.php:7 #: application/views/mode/index.php:60 application/views/usermode/index.php:5 #: application/views/usermode/index.php:56 msgid "Activate" -msgstr "" +msgstr "Aktivovať" #: application/views/contesting/add.php:42 #: application/views/contesting/add.php:47 application/views/mode/index.php:6 #: application/views/mode/index.php:58 application/views/usermode/index.php:4 #: application/views/usermode/index.php:54 msgid "Deactivate" -msgstr "" +msgstr "Deaktivovať" #: application/views/contesting/add.php:54 msgid "DANGER!" -msgstr "" +msgstr "NEBEZPEČENSTVO!" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " -msgstr "" +msgstr "Upozornenie! Ste si istí, že chcete odstrániť nasledujúci contest: " #: application/views/contesting/add.php:56 msgid "Warning! Are you sure you want to activate all contests?" -msgstr "" +msgstr "Pozor! Si si istý, že chceš aktivovať všetky contesty?" #: application/views/contesting/add.php:57 msgid "Warning! Are you sure you want to deactivate all contests?" -msgstr "" +msgstr "Upozornenie! Ste si istý, že chcete deaktivovať všetky contesty?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 msgid "Add a Contest" -msgstr "" +msgstr "Pridať contest" #: application/views/contesting/create.php:26 #: application/views/contesting/edit.php:33 msgid "Name of the Contest" -msgstr "" +msgstr "Názov contestu" #: application/views/contesting/create.php:32 #: application/views/contesting/edit.php:39 msgid "Name of Contest in ADIF-specification" -msgstr "" +msgstr "Názov contestu v ADIF-špecifikácii" #: application/views/contesting/create.php:35 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:59 msgid "Create" -msgstr "" +msgstr "Vytvoriť" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:687 #: application/views/view_log/qso.php:381 msgid "Contest Name" -msgstr "" +msgstr "Názov contestu" #: application/views/contesting/edit.php:37 msgid "Contest ADIF Name" -msgstr "" +msgstr "Názov contestu ADIF" #: application/views/contesting/edit.php:52 msgid "Set to active if to be listed in Contest-list" -msgstr "" +msgstr "Nastaviť na aktívne, ak má byť uvedené v zozname contestov" #: application/views/contesting/index.php:2 msgid "You need to start a new session before you can change the contest name!" -msgstr "" +msgstr "Musíš začať novú reláciu, než budeš môcť zmeniť názov contestu!" #: application/views/contesting/index.php:3 msgid "Are you really sure you want to start a new contest session?" -msgstr "" +msgstr "Si naozaj istý, že chceš začať novú contestovú reláciu?" #: application/views/contesting/index.php:11 msgid "Start new Contest Session" -msgstr "" +msgstr "Začnite novú contestovú reláciu" #: application/views/contesting/index.php:20 msgid "Exchange Type" -msgstr "" +msgstr "Typ výmeny" #: application/views/contesting/index.php:25 msgid "Exchange" -msgstr "" +msgstr "Výmena" #: application/views/contesting/index.php:27 msgid "Serial" -msgstr "" +msgstr "Sériové číslo" #: application/views/contesting/index.php:28 msgid "Serial + Exchange" -msgstr "" +msgstr "Sériové číslo + výmena" #: application/views/contesting/index.php:29 msgid "Serial + Gridsquare" -msgstr "" +msgstr "Sériové číslo + lokátorový štvorec" #: application/views/contesting/index.php:30 msgid "Serial + Gridsquare + Exchange" -msgstr "" +msgstr "Sériové číslo + Lokátor + Výmena" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:427 msgid "Operator Callsign" -msgstr "" +msgstr "Volací znak operátora" #: application/views/contesting/index.php:50 #: application/views/contesting/index.php:55 msgid "More Settings" -msgstr "" +msgstr "Viac nastavení" #: application/views/contesting/index.php:59 msgid "Copy received exchange to" -msgstr "" +msgstr "Skopíruj prijatú výmenu do" #: application/views/contesting/index.php:61 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" +"Výmena je skopírovaná iba ak súhlasia párovacie pravidlá pre vybrané pole!" #: application/views/contesting/index.php:67 msgid "RX Power (W)" -msgstr "" +msgstr "RX výkon (W)" #: application/views/contesting/index.php:68 msgid "Locator" -msgstr "" +msgstr "Lokátor" #: application/views/contesting/index.php:69 #: application/views/logbookadvanced/index.php:875 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" -msgstr "" +msgstr "QTH" #: application/views/contesting/index.php:74 msgid "Sequence of Exchanges" -msgstr "" +msgstr "Sekvencia výmen" #: application/views/contesting/index.php:77 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 "" +"Vyber si, v akom poradí chceš písať rôzne správy. Avšak zobrazené sú iba " +"prvky obsiahnuté vo vybranom type výmeny." #: application/views/contesting/index.php:82 #: application/views/contesting/index.php:83 @@ -9179,7 +9305,7 @@ msgstr "" #: application/views/contesting/index.php:87 msgctxt "Keep the translation short!" msgid "Exchange" -msgstr "" +msgstr "Výmena" #: application/views/contesting/index.php:82 #: application/views/contesting/index.php:83 @@ -9189,7 +9315,7 @@ msgstr "" #: application/views/contesting/index.php:87 msgctxt "Keep the translation short!" msgid "Grid" -msgstr "" +msgstr "Lokátor" #: application/views/contesting/index.php:82 #: application/views/contesting/index.php:83 @@ -9199,72 +9325,72 @@ msgstr "" #: application/views/contesting/index.php:87 msgctxt "Keep the translation short!" msgid "Serial" -msgstr "" +msgstr "Sériové číslo" #: application/views/contesting/index.php:160 msgid "WebSocket (Requires WLGate>1.1.10)" -msgstr "" +msgstr "WebSocket (Vyžaduje WLGate>1.1.10)" #: application/views/contesting/index.php:187 #: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" -msgstr "" +msgstr "Sériové číslo (S)" #: application/views/contesting/index.php:192 msgid "Gridsquare (S)" -msgstr "" +msgstr "Lokátor (S)" #: application/views/contesting/index.php:197 #: application/views/contesting/index.php:268 msgid "Exch (S)" -msgstr "" +msgstr "Výmena (S)" #: application/views/contesting/index.php:211 #: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" -msgstr "" +msgstr "Sérové číslo (R)" #: application/views/contesting/index.php:216 msgid "Gridsquare (R)" -msgstr "" +msgstr "Lokátor (R)" #: application/views/contesting/index.php:221 #: application/views/contesting/index.php:269 msgid "Exch (R)" -msgstr "" +msgstr "Výmena (R)" #: application/views/contesting/index.php:239 msgid "Reset QSO" -msgstr "" +msgstr "Resetovať QSO" #: application/views/contesting/index.php:240 #: application/views/qso/index.php:744 msgid "Save QSO" -msgstr "" +msgstr "Uložiť QSO" #: application/views/contesting/index.php:249 msgid "Callsign Suggestions" -msgstr "" +msgstr "Volacie znaky - návrhy" #: application/views/contesting/index.php:256 msgid "Contest Logbook" -msgstr "" +msgstr "Contestový denník" #: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" -msgstr "" +msgstr "VUCC lokátor" #: application/views/continents/index.php:63 #: application/views/statistics/index.php:20 msgid "# of QSOs worked" -msgstr "" +msgstr "# urobených QSO" #: application/views/cron/edit.php:11 msgid "Identifier" -msgstr "" +msgstr "Identifikátor" #: application/views/cron/edit.php:22 #: application/views/options/appearance.php:56 @@ -9279,122 +9405,130 @@ msgstr "" #: application/views/user/edit.php:511 application/views/user/edit.php:666 #: application/views/user/edit.php:676 application/views/user/edit.php:976 msgid "Enabled" -msgstr "" +msgstr "Povolené" #: application/views/cron/edit.php:36 application/views/cron/index.php:68 msgid "Intervall" -msgstr "" +msgstr "Interval" #: application/views/cron/edit.php:38 msgid "Choose a preset from the dropdown" -msgstr "" +msgstr "Vyberte možnosť z rozbaľovacieho zoznamu" #: application/views/cron/edit.php:43 msgid "Every 5 Minutes" -msgstr "" +msgstr "Každých 5 minút" #: application/views/cron/edit.php:44 msgid "Every 15 Minutes" -msgstr "" +msgstr "Každých 15 minút" #: application/views/cron/edit.php:45 msgid "Every Hour" -msgstr "" +msgstr "Každú hodinu" #: application/views/cron/edit.php:46 msgid "Every 2 Hours" -msgstr "" +msgstr "Každé 2 hodiny" #: application/views/cron/edit.php:47 msgid "Every Day at Midnight" -msgstr "" +msgstr "Každý deň o polnoci" #: application/views/cron/edit.php:48 msgid "Every Monday at 03:00" -msgstr "" +msgstr "Každý pondelok o 03:00" #: application/views/cron/edit.php:49 msgid "First Day of Every Month at midnight" -msgstr "" +msgstr "Prvý deň každého mesiaca o polnoci" #: application/views/cron/edit.php:50 msgid "Every 2 Months at 02:00" -msgstr "" +msgstr "Každé 2 mesiace o 02:00" #: application/views/cron/edit.php:62 msgid "OR" -msgstr "" +msgstr "ALEBO" #: application/views/cron/edit.php:63 msgid "Enter your own Cron Expression" -msgstr "" +msgstr "Nastav si vlastný Cron" #: application/views/cron/index.php:9 msgid "How it works" -msgstr "" +msgstr "Ako to funguje" #: application/views/cron/index.php:21 #, php-format msgid "For more information or help, take a look in the %s." -msgstr "" +msgstr "Pre viac informácií alebo pomoc sa pozrite do %s." #: application/views/cron/index.php:28 msgid "" "The Cron Manager assists the administrator in managing cron jobs without " "requiring CLI access." msgstr "" +"Cron Manager pomáha administrátorovi spravovať cron úlohy bez potreby " +"prístupu k CLI." #: application/views/cron/index.php:32 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" +"Na vykonávanie cron úloh na základe nižšie uvedených údajov odstráň všetky " +"staré cron úlohy a vytvor novú:" #: application/views/cron/index.php:42 application/views/cron/index.php:46 msgid "Status Master-Cron:" -msgstr "" +msgstr "Stav Master-Cron:" #: application/views/cron/index.php:46 msgctxt "PHP Version" msgid "Min. Version is" -msgstr "" +msgstr "Minimálna verzia je" #: application/views/cron/index.php:46 msgid "PHP Version not supported." -msgstr "" +msgstr "Verzia PHP nie je podporovaná." #: application/views/cron/index.php:56 msgid "Cron List" -msgstr "" +msgstr "Zoznam cronov" #: application/views/cron/index.php:65 #: application/views/stationsetup/stationsetup.php:126 msgid "ID" -msgstr "" +msgstr "ID" #: application/views/cron/index.php:69 msgid "Last Run" -msgstr "" +msgstr "Posledné zbehnutie" #: application/views/cron/index.php:70 msgid "Next Run" -msgstr "" +msgstr "Nasledujúce zbehnutie" #: application/views/cron/index.php:115 msgid "Your Mastercron isn't running." -msgstr "" +msgstr "Váš Mastercron nebeží." #: application/views/cron/index.php:116 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" +"Skopíruj zadaný cron do externej služby cron alebo na serverový cron, aby si " +"mohol používať tento Cron Manager." #: application/views/cron/index.php:117 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" +"Na základnom linuxovom serveri s prístupom na shell použite tento príkaz na " +"úpravu cronu:" #: application/views/cron/index.php:124 #, php-format @@ -9402,34 +9536,35 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " "%s" msgstr "" +"Musíš si aktualizovať verziu PHP. Minimálna verzia je %s. Tvoja verzia je %s" #: application/views/csv/index.php:7 msgid "Export your logbook for SOTA uploads." -msgstr "" +msgstr "Exportuj svoj logbook pre nahratie na SOTA." #: application/views/csv/index.php:11 msgid "Only QSOs with SOTA information will be exported!" -msgstr "" +msgstr "Budú exportované iba spojenia s informáciami SOTA!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 #: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:510 msgid "Propagation Mode" -msgstr "" +msgstr "Spôsob šírenia" #: application/views/csv/index.php:95 msgctxt "Propagation Mode" msgid "All but Repeater" -msgstr "" +msgstr "Všetky okrem prevádzačov" #: application/views/dashboard/index.php:5 msgid "RSTS" -msgstr "" +msgstr "RSTS" #: application/views/dashboard/index.php:6 msgid "RSTR" -msgstr "" +msgstr "RSTR" #: application/views/dashboard/index.php:111 #, php-format @@ -9437,30 +9572,31 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your version " "is: %s." msgstr "" +"Musíš si aktualizovať verziu PHP. Minimálna verzia je %s. Tvoja verzia je %s." #: application/views/dashboard/index.php:118 #, php-format msgctxt "Dashboard Warning" msgid "A new version of Wavelog has been published. See: %s." -msgstr "" +msgstr "Bola vydaná nová verzia Wavelogu. Pozri: %s." #: application/views/dashboard/index.php:127 #, php-format msgctxt "Dashboard Warning" msgid "You need to update country files! Click %shere%s to do it." -msgstr "" +msgstr "Musíš aktualizovať súbory krajiny! Klikni %stu%s, aby si to urobil." #: application/views/dashboard/index.php:136 #, php-format msgctxt "Dashboard Warning" msgid "You have no station locations. Click %shere%s to do it." -msgstr "" +msgstr "Nemáte žiadne umiestnenia staníc. Kliknite %ssem%s a nastavte ich." #: application/views/dashboard/index.php:145 #, php-format msgctxt "Dashboard Warning" msgid "You have no station logbook. Click %shere%s to do it." -msgstr "" +msgstr "Nemáte staničný denník. Kliknite %ssem%s, aby ste to urobili." #: application/views/dashboard/index.php:154 #, php-format @@ -9469,19 +9605,24 @@ msgid "" "Your active station location is not linked to your active station logbook. " "Click %shere%s to do it." msgstr "" +"Umiestnenie vašej aktívnej stanice nie je prepojené s aktívnym logbookom " +"stanice. Kliknite %ssem%s, aby ste to spravili." #: application/views/dashboard/index.php:163 #, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your logbook. Click %shere%s to do it." msgstr "" +"Nemáš žiadnu stanicu prepojenú s tvojím denníkom. Klikni %stu%s, aby si to " +"urobil." #: application/views/dashboard/index.php:173 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Urobili ste dnes %d spojenie" +msgstr[1] "Urobili ste dnes %d spojenia" +msgstr[2] "Urobili ste dnes %d spojení" #: application/views/dashboard/index.php:182 #, php-format @@ -9489,20 +9630,24 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Nepreruš svoju sériu – za posledných %s po sebe nasledujúcich dní si mal " +"aspoň jedno spojenie." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" -msgstr "" +msgstr "Nemal si dnes žiadne spojenie; čas zapnúť rádio!" #: application/views/dashboard/index.php:193 msgid "Attention: you need to set an active station location." -msgstr "" +msgstr "Pozor: musíš nastaviť aktívne umiestnenie stanice." #: application/views/dashboard/index.php:200 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" +"Máte témy bez definovaného režimu témy. Požiadajte administrátora, aby " +"upravil témy." #: application/views/dashboard/index.php:213 #, php-format @@ -9511,37 +9656,40 @@ msgid "" "LoTW Warning: There is an issue with at least one of your %sLoTW " "certificates%s!" msgstr "" +"LoTW upozornenie: existuje problém s aspoň jedným z vašich %sLoTW " +"certifikátov%s!" #: application/views/dashboard/index.php:216 msgid "At least one of your certificates is expired" -msgstr "" +msgstr "Aspoň jeden z tvojich certifikátov exspiroval" #: application/views/dashboard/index.php:217 msgid "At least one of your certificates is expiring" -msgstr "" +msgstr "Aspoň jeden z tvojich certifikátov bude exspirovať" #: application/views/dashboard/index.php:295 #: application/views/qso/index.php:900 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Max. je zobrazené %d predchádzajúcie spojenie" +msgstr[1] "Max. sú zobrazené %d predchádzajúce spojenia" +msgstr[2] "Max. je zobrazených %d predchádzajúcich spojení" #: application/views/dashboard/index.php:311 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" -msgstr "" +msgstr "Rozpis spojení" #: application/views/dashboard/index.php:334 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" -msgstr "" +msgstr "Rozpis DXCC" #: application/views/dashboard/index.php:351 #: application/views/visitor/index.php:279 msgid "Needed" -msgstr "" +msgstr "Chýbajúce" #: application/views/dashboard/index.php:364 #: application/views/dashboard/index.php:391 @@ -9578,7 +9726,7 @@ msgstr "" #: src/QSLManager/QSO.php:647 src/QSLManager/QSO.php:704 #: src/QSLManager/QSO.php:793 msgid "Sent" -msgstr "" +msgstr "Odoslané" #: application/views/dashboard/index.php:370 #: application/views/dashboard/index.php:397 @@ -9614,7 +9762,7 @@ msgstr "" #: src/QSLManager/QSO.php:674 src/QSLManager/QSO.php:754 #: src/QSLManager/QSO.php:821 msgid "Received" -msgstr "" +msgstr "Došlé" #: application/views/dashboard/index.php:376 #: application/views/logbookadvanced/edit.php:168 @@ -9659,104 +9807,104 @@ msgstr "" #: src/QSLManager/QSO.php:680 src/QSLManager/QSO.php:805 #: src/QSLManager/QSO.php:830 msgid "Requested" -msgstr "" +msgstr "Požadované" #: application/views/dashboard/index.php:386 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" -msgstr "" +msgstr "Logbook of the World" #: application/views/dashboard/index.php:449 msgid "VUCC-Grids" -msgstr "" +msgstr "VUCC-grids" #: application/views/dashboard/index.php:474 msgid "Solar Data & Propagation" -msgstr "" +msgstr "Solárne údaje a šírenie" #: application/views/dashboard/index.php:476 #, php-format msgid "Last update at %s." -msgstr "" +msgstr "Posledná aktualizácia o %s." #: application/views/dashboard/index.php:485 msgid "Data provided by HAMqsl." -msgstr "" +msgstr "Údaje poskytuje HAMqsl." #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" -msgstr "" +msgstr "Počet QSOs pre tento deň v týždni" #: application/views/dayswithqso/index.php:4 msgid "Number of QSOs for this month of the year" -msgstr "" +msgstr "Počet počet spojení za tento mesiac roka" #: application/views/dayswithqso/index.php:18 msgid "Days of the week" -msgstr "" +msgstr "Dni v týždni" #: application/views/dayswithqso/index.php:21 msgid "Months of the year" -msgstr "" +msgstr "Mesiace v roku" #: application/views/dayswithqso/index.php:24 msgid "Streaks" -msgstr "" +msgstr "Série" #: application/views/dayswithqso/index.php:27 msgid "QSOs of Year" -msgstr "" +msgstr "Spojenia roka" #: application/views/dayswithqso/index.php:35 msgid "Number of days with QSOs each year" -msgstr "" +msgstr "Počet dní s QSO každý rok" #: application/views/dayswithqso/index.php:51 msgid "Days" -msgstr "" +msgstr "Dni" #: application/views/dayswithqso/index.php:67 msgid "QSOs breakdown by day of the week" -msgstr "" +msgstr "Rozpis spojení podľa dní v týždni" #: application/views/dayswithqso/index.php:73 msgid "QSOs breakdown by month of the year" -msgstr "" +msgstr "Členenie QSOs podľa mesiacov v roku" #: application/views/dayswithqso/index.php:87 msgid "QSOs per Year" -msgstr "" +msgstr "Spojenia za rok" #: application/views/dayswithqso/index.php:95 msgid "Less" -msgstr "" +msgstr "Menej" #: application/views/dayswithqso/index.php:100 msgid "More" -msgstr "" +msgstr "Viac" #: application/views/dayswithqso/index.php:102 msgid "Calendar with QSOs" -msgstr "" +msgstr "Kalendár so spojeniami" #: application/views/dayswithqso/index.php:111 msgid "Longest streak with QSOs in the log" -msgstr "" +msgstr "Najdlhšia séria so spojeniami v denníku" #: application/views/dayswithqso/index.php:112 msgid "A maximum of the 10 longest streaks are shown!" -msgstr "" +msgstr "Zobrazuje sa maximálne 10 najdlhších sérií!" #: application/views/dayswithqso/index.php:130 msgid "Streak (continuous days with QSOs)" -msgstr "" +msgstr "Séria (počet po sebe idúcich dní s QSO)" #: application/views/dayswithqso/index.php:131 #: application/views/dayswithqso/index.php:159 #: application/views/dayswithqso/index.php:181 #: application/views/lotw/satupdate.php:7 msgid "Start Date" -msgstr "" +msgstr "Dátum začatia" #: application/views/dayswithqso/index.php:132 #: application/views/dayswithqso/index.php:160 @@ -9764,44 +9912,46 @@ msgstr "" #: application/views/lotw/satupdate.php:7 #: application/views/timeline/index.php:202 msgid "End Date" -msgstr "" +msgstr "Dátum ukončenia" #: application/views/dayswithqso/index.php:148 msgctxt "Days with QSOs" msgid "No streak found!" -msgstr "" +msgstr "Žiadna séria sa nenašla!" #: application/views/dayswithqso/index.php:152 msgid "Current streak with QSOs in the log" -msgstr "" +msgstr "Aktuálna séria so spojeniami v denníku" #: application/views/dayswithqso/index.php:158 #: application/views/dayswithqso/index.php:180 msgid "Current streak (continuous days with QSOs)" -msgstr "" +msgstr "Súčasná séria (nepretržité dni so spojeniami)" #: application/views/dayswithqso/index.php:175 msgid "" "If you make a QSO today, you can continue to extend your streak... or else " "your current streak will be broken!" msgstr "" +"Ak dnes nadviažeš QSO, môžeš naďalej predlžovať svoju sériu... inak sa tvoja " +"aktuálna séria preruší!" #: application/views/dayswithqso/index.php:196 msgid "No current streak found!" -msgstr "" +msgstr "Žiadna aktuálna séria nebola nájdená!" #: application/views/dcl_views/import.php:12 #: application/views/lotw/import.php:12 msgid "Import Options" -msgstr "" +msgstr "Možnosti importu" #: application/views/dcl_views/import.php:25 msgid "Pull DCL data for me" -msgstr "" +msgstr "Načítaj pre mňa DCL dáta" #: application/views/dcl_views/import.php:36 msgid "Select callsign to pull DCL confirmations for." -msgstr "" +msgstr "Vyber si volaciu značku, pre ktorú chceš získať potvrdenia DCL." #: application/views/dcl_views/import.php:50 msgid "" @@ -9810,134 +9960,142 @@ msgid "" "confirmations since chosen date, or since your last DCL confirmation " "(fetched from your log), up until now." msgstr "" +"Wavelog použije DCL kľúče uložené vo vašom používateľskom profile na " +"stiahnutie reportov z DCL pre vás. Správa, ktorú Wavelog stiahne, bude " +"obsahovať všetky potvrdenia od vybraného dátumu alebo od vášho posledného " +"potvrdenia DCL (získané z vášho záznamu) až do teraz." #: application/views/dcl_views/import.php:54 msgid "Import DCL Matches" -msgstr "" +msgstr "Importovať DCL spárovania" #: application/views/dcl_views/index.php:8 msgid "Delete Keys" -msgstr "" +msgstr "Odstrániť kľúče" #: application/views/dcl_views/index.php:9 msgid "Available DCL-Keys" -msgstr "" +msgstr "Dostupné DCL kľúče" #: application/views/dcl_views/index.php:9 msgid "Request DCL Key" -msgstr "" +msgstr "Žiadosť o DCL kľúč" #: application/views/dcl_views/index.php:28 msgid "Valid from" -msgstr "" +msgstr "Platné od" #: application/views/dcl_views/index.php:29 msgid "Valid till" -msgstr "" +msgstr "Platný do" #: application/views/dcl_views/index.php:61 msgid "You need to request DCL keys to use this function." -msgstr "" +msgstr "Na používanie tejto funkcie potrebuješ požiadať o DCL kľúče." #: application/views/dcl_views/index.php:80 msgid "The next automatic sync with DCL will happen at: " -msgstr "" +msgstr "Ďalšia automatická synchronizácia s DCL prebehne o: " #: application/views/dcl_views/index.php:82 #: application/views/lotw_views/index.php:166 msgid "Manual Sync" -msgstr "" +msgstr "Manuálna synchronizácia" #: application/views/dcl_views/index.php:84 #: application/views/lotw_views/index.php:168 msgid "running..." -msgstr "" +msgstr "prebieha..." #: application/views/dcl_views/key_import.php:8 msgid "DCL Key Management" -msgstr "" +msgstr "Správa kľúčov DCL" #: application/views/dcl_views/key_import.php:13 msgid "Import Key" -msgstr "" +msgstr "Importovať kľúč" #: application/views/dcl_views/key_import.php:14 msgid "" "You requested a key for DCL-Dataexchange, which was successful. The " "following data has been imported" msgstr "" +"Požiadali ste o kľúč pre DCL-Dataexchange, čo bolo úspešné. Nasledujúce " +"údaje boli importované" #: application/views/dcl_views/key_import.php:19 msgid "Received a valid DCL-Key" -msgstr "" +msgstr "Platný DCL kľúč prijatý" #: application/views/dcl_views/key_import.php:20 msgid "DOK History" -msgstr "" +msgstr "DOK história" #: application/views/dcl_views/key_import.php:24 #: application/views/dcl_views/key_import.php:46 msgid "Validity" -msgstr "" +msgstr "Platnosť" #: application/views/dcl_views/key_import.php:42 msgid "Call History" -msgstr "" +msgstr "História volacích znakov" #: application/views/dcl_views/key_import.php:63 msgid "Received an invalid DCL-Key. Please check your DCL-Login, and try again" msgstr "" +"Prijatý neplatný DCL-Kľúč. Skontrolujte svoje DCL prihlásenie a skúste to " +"znova" #: application/views/dcl_views/upload_cert.php:8 #: application/views/dcl_views/upload_cert.php:33 #: application/views/lotw_views/upload_cert.php:8 #: application/views/lotw_views/upload_cert.php:33 msgid "Upload Logbook of the World .p12 Certificate" -msgstr "" +msgstr "Nahrať certifikát Logbook of the World .p12" #: application/views/dcl_views/upload_cert.php:19 #: application/views/lotw_views/upload_cert.php:19 msgid "Export .p12 File Instructions" -msgstr "" +msgstr "Exportovať súbor .p12 Pokyny" #: application/views/dcl_views/upload_cert.php:22 #: application/views/lotw_views/upload_cert.php:22 msgid "Use at least version 2.7 of TQSL" -msgstr "" +msgstr "Použi aspoň verziu 2.7 TQSL" #: application/views/dcl_views/upload_cert.php:23 #: application/views/lotw_views/upload_cert.php:23 msgid "Open TQSL and go to the Callsign Certificates Tab" -msgstr "" +msgstr "Otvorte TQSL a prejdite na kartu Callsign Certificates" #: application/views/dcl_views/upload_cert.php:24 #: application/views/lotw_views/upload_cert.php:24 msgid "Right click on desired Callsign" -msgstr "" +msgstr "Klikni pravým tlačidlom na požadovanú volačku" #: application/views/dcl_views/upload_cert.php:25 #: application/views/lotw_views/upload_cert.php:25 msgid "Click 'Save Callsign Certificate File'" -msgstr "" +msgstr "Kliknite na „Save Callsign Certificate File“" #: application/views/dcl_views/upload_cert.php:26 #: application/views/lotw_views/upload_cert.php:26 msgid "Do not add a password" -msgstr "" +msgstr "Nepridávaj heslo" #: application/views/dcl_views/upload_cert.php:27 #: application/views/lotw_views/upload_cert.php:27 msgid "Upload File below" -msgstr "" +msgstr "Nahraj súbor nižšie" #: application/views/dcl_views/upload_cert.php:37 #: application/views/lotw_views/upload_cert.php:37 msgid "Upload File" -msgstr "" +msgstr "Nahraj súbor" #: application/views/debug/index.php:23 msgid "Wavelog Information" -msgstr "" +msgstr "Wavelog informácie" #: application/views/debug/index.php:27 msgid "Version" @@ -9945,11 +10103,11 @@ msgstr "Verzia" #: application/views/debug/index.php:30 msgid "Latest Version" -msgstr "" +msgstr "Najnovšia verzia" #: application/views/debug/index.php:36 msgid "Latest Release" -msgstr "" +msgstr "Najnovšie vydanie" #: application/views/debug/index.php:41 msgid "Language" @@ -9957,19 +10115,19 @@ msgstr "Jazyk" #: application/views/debug/index.php:45 msgid "Base URL" -msgstr "" +msgstr "Základná URL adresa" #: application/views/debug/index.php:49 msgid "Migration" -msgstr "" +msgstr "Migrácia" #: application/views/debug/index.php:50 msgid "There is something wrong with your Migration in Database!" -msgstr "" +msgstr "S vašou migráciou v databáze je niečo zle!" #: application/views/debug/index.php:55 msgid "Migration is outdated and locked!" -msgstr "" +msgstr "Migrácia je zastaraná a uzamknutá!" #: application/views/debug/index.php:56 #, php-format @@ -9979,77 +10137,84 @@ msgid "" "locked due to a previously failed process. Delete the file %s to force the " "migration to run again." msgstr "" +"Aktuálna migrácia nie je verzia, ktorou má byť. Obnovte túto stránku po %s " +"sekundách. Ak toto varovanie pretrváva, vaša migrácia je pravdepodobne " +"uzamknutá z dôvodu predchádzajúceho neúspešného procesu. Odstráňte súbor %s, " +"aby ste donútili migráciu znova spustiť." #: application/views/debug/index.php:57 #, php-format msgid "Check this wiki article %shere%s for more information." -msgstr "" +msgstr "Pozri si tento wiki článok %stu%s pre viac informácií." #: application/views/debug/index.php:58 #, php-format msgid "Current migration is %s" -msgstr "" +msgstr "Aktuálna migrácia je %s" #: application/views/debug/index.php:59 #, php-format msgid "Migration should be %s" -msgstr "" +msgstr "Migrácia by mala byť %s" #: application/views/debug/index.php:64 msgid "Environment" -msgstr "" +msgstr "Prostredie" #: application/views/debug/index.php:68 msgid "System Time" -msgstr "" +msgstr "Systémový čas" #: application/views/debug/index.php:76 msgid "Total QSO on this instance" -msgstr "" +msgstr "Celkový počet QSO v tomto prípade" #: application/views/debug/index.php:80 msgid "Total User" -msgstr "" +msgstr "Celkový počet používateľov" #: application/views/debug/index.php:81 application/views/user/index.php:27 msgid "User" msgid_plural "Users" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Používateľ" +msgstr[1] "Používatelia" +msgstr[2] "Používateľov" #: application/views/debug/index.php:88 msgid "Server Information" -msgstr "" +msgstr "Informácie o serveri" #: application/views/debug/index.php:92 msgid "Server Software" -msgstr "" +msgstr "Serverový softvér" #: application/views/debug/index.php:97 msgid "PHP Version" -msgstr "" +msgstr "Verzia PHP" #: application/views/debug/index.php:103 msgid "Deprecated" -msgstr "" +msgstr "Zastaralé" #: application/views/debug/index.php:110 msgid "MySQL Version" -msgstr "" +msgstr "Verzia MySQL" #: application/views/debug/index.php:114 msgid "Codeigniter Version" -msgstr "" +msgstr "Verzia Codeigniter" #: application/views/debug/index.php:122 msgid "Folder Permissions" -msgstr "" +msgstr "Oprávnenia priečinka" #: application/views/debug/index.php:124 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" +"Toto overuje, že priečinky používané Wavelogom majú povolenia na čítanie a " +"zápis pre PHP." #: application/views/debug/index.php:130 application/views/debug/index.php:141 #: application/views/debug/index.php:152 application/views/debug/index.php:163 @@ -10066,43 +10231,45 @@ msgstr "Zlyhanie" #: application/views/debug/index.php:187 msgid "Config Maintenance" -msgstr "" +msgstr "Konfigurácia údržby" #: application/views/debug/index.php:193 msgid "Your authentication mode is outdated and possibly unsafe" -msgstr "" +msgstr "Váš spôsob overovania je zastaraný a pravdepodobne nebezpečný" #: application/views/debug/index.php:195 application/views/debug/index.php:212 #, php-format msgid "Please edit your %s File:" -msgstr "" +msgstr "Prosím upravte svoj %s súbor:" #: application/views/debug/index.php:196 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" +"Prejdi do priečinka application/config a porovnaj config.sample.php so " +"svojím config.php" #: application/views/debug/index.php:197 #, php-format msgid "Change %s to the value %s (Strongly recommended)" -msgstr "" +msgstr "Zmeňte %s na hodnotu %s (dôrazne sa odporúča)" #: application/views/debug/index.php:203 msgid "Authentication Mode is set correctly" -msgstr "" +msgstr "Režim overenia je nastavený správne" #: application/views/debug/index.php:203 application/views/debug/index.php:220 msgid "Ok" -msgstr "" +msgstr "OK" #: application/views/debug/index.php:210 msgid "You use the default encryption key. You should change it!" -msgstr "" +msgstr "Používaš predvolený šifrovací kľúč. Mal by si ho zmeniť!" #: application/views/debug/index.php:213 msgid "This will also enable the 'Keep me logged in' feature." -msgstr "" +msgstr "To tiež umožní funkciu 'Nechať ma prihláseného'." #: application/views/debug/index.php:214 #, php-format @@ -10110,24 +10277,28 @@ msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" +"Zmeň hodnotu %s na nový šifrovací kľúč iný ako 'flossie1234555541'. Vyber si " +"bezpečné a dlhé heslo. (Silne odporúčané)" #: application/views/debug/index.php:220 msgid "You do not use the default encryption key" -msgstr "" +msgstr "Nepoužívaj predvolený šifrovací kľúč" #: application/views/debug/index.php:227 msgid "Migrate Userdata" -msgstr "" +msgstr "Migrovať používateľské dáta" #: application/views/debug/index.php:229 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" +"Tu môžete migrovať existujúce QSL karty a eQSL karty do nového priečinka s " +"údajmi užívateľa." #: application/views/debug/index.php:242 msgid "Modules" -msgstr "" +msgstr "Moduly" #: application/views/debug/index.php:248 application/views/debug/index.php:259 #: application/views/debug/index.php:270 application/views/debug/index.php:281 @@ -10143,54 +10314,54 @@ msgstr "Nenainštalované" #: application/views/debug/index.php:441 msgid "Git Information" -msgstr "" +msgstr "Git informácie" #: application/views/debug/index.php:445 msgid "Branch" -msgstr "" +msgstr "Pobočka" #: application/views/debug/index.php:456 application/views/debug/index.php:467 #: application/views/debug/index.php:477 #: application/views/lotw_views/index.php:95 msgid "n/a" -msgstr "" +msgstr "n/a" #: application/views/debug/index.php:462 msgid "Commit" -msgstr "" +msgstr "Potvrdiť" #: application/views/debug/index.php:472 msgid "Tag" -msgstr "" +msgstr "Značka" #: application/views/debug/index.php:482 msgid "Last Fetch" -msgstr "" +msgstr "Posledné načítanie" #: application/views/debug/index.php:494 msgid "Check for new version" -msgstr "" +msgstr "Skontrolovať novú verziu" #: application/views/debug/index.php:495 #: application/views/logbookadvanced/index.php:57 msgid "Update now" -msgstr "" +msgstr "Aktualizuj teraz" #: application/views/debug/index.php:513 msgid "File download date" -msgstr "" +msgstr "Dátum stiahnutia súboru" #: application/views/debug/index.php:517 msgid "File" -msgstr "" +msgstr "Súbor" #: application/views/debug/index.php:518 msgid "Last update" -msgstr "" +msgstr "Posledná aktualizácia" #: application/views/debug/index.php:522 msgid "DXCC update from Club Log" -msgstr "" +msgstr "Aktualizácia DXCC z Club Log" #: application/views/debug/index.php:524 application/views/debug/index.php:530 #: application/views/debug/index.php:535 application/views/debug/index.php:540 @@ -10200,35 +10371,35 @@ msgstr "" #: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" -msgstr "" +msgstr "Aktualizovať" #: application/views/debug/index.php:528 msgid "DOK file download" -msgstr "" +msgstr "Stiahnutie súboru DOK" #: application/views/debug/index.php:533 msgid "LoTW users download" -msgstr "" +msgstr "Stiahnutie zoznamu LoTW používateľov" #: application/views/debug/index.php:538 msgid "POTA file download" -msgstr "" +msgstr "Stiahnutie súboru POTA" #: application/views/debug/index.php:543 msgid "SCP file download" -msgstr "" +msgstr "Stiahnuť súbor SCP" #: application/views/debug/index.php:548 msgid "SOTA file download" -msgstr "" +msgstr "Stiahnutie súboru SOTA" #: application/views/debug/index.php:553 msgid "WWFF file download" -msgstr "" +msgstr "Stiahnutie súboru WWFF" #: application/views/debug/index.php:558 msgid "TLE update" -msgstr "" +msgstr "Aktualizácia TLE" #: application/views/debug/index.php:563 msgid "Hams Of Note update" @@ -10236,48 +10407,50 @@ msgstr "" #: application/views/debug/index.php:568 msgid "HAMqsl" -msgstr "" +msgstr "HAMqsl" #: application/views/debug/index.php:573 msgid "VUCC Grids" -msgstr "" +msgstr "VUCC Grids" #: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" -msgstr "" +msgstr "Údržba QSO-DB" #: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" "The Database contains %d QSOs without a station-profile (location)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Databáza obsahuje %d spojenie bez profilu stanice (lokácie)" +msgstr[1] "Databáza obsahuje %d spojenia bez profilu stanice (lokácie)" +msgstr[2] "Databáza obsahuje %d spojení bez profilu stanice (lokácie)" #: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" -msgstr "" +msgstr "Prosím označ spojenia a priraď ich k existujúcej polohe stanice:" #: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" -msgstr "" +msgstr "Cieľové miesto" #: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" -msgstr "" +msgstr "Zmeniť priradenie" #: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" +"Každé spojenie vo vašej databáze je priradené k profilu stanice (miestu)" #: application/views/debug/index.php:653 msgid "Everything ok" -msgstr "" +msgstr "Všetko v poriadku" #: application/views/debug/index.php:678 msgid "Albanian" -msgstr "" +msgstr "Albánčina" #: application/views/debug/index.php:679 msgid "Armenian" @@ -10432,51 +10605,53 @@ msgstr "" #: application/views/dxatlas/index.php:3 msgid "DX Atlas Export" -msgstr "" +msgstr "DX Atlas export" #: application/views/dxatlas/index.php:7 msgid "" "Export your logbook for use in DX Atlas to display worked / confirmed " "gridsquares." msgstr "" +"Exportuj svoj denník na použitie v DX Atlas, aby sa zobrazili urobené/" +"potvrdené lokátory." #: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 msgid "Only QSOs with a gridsquare defined will be exported!" -msgstr "" +msgstr "Exportované budú iba spojenia so zadefinovaným lokátorom!" #: application/views/dxcalendar/index.php:13 #: application/views/view_log/qso.php:495 msgid "QSL Info" -msgstr "" +msgstr "QSL informácie" #: application/views/dxcalendar/index.php:14 msgid "Source" -msgstr "" +msgstr "Zdroj" #: application/views/email/admin_reset_password.php:3 #: application/views/email/forgot_password.php:3 msgid "Wavelog Account Password Reset" -msgstr "" +msgstr "Obnovenie hesla k účtu Wavelog" #: application/views/email/admin_reset_password.php:5 #, php-format msgid "Hello %s" -msgstr "" +msgstr "Ahoj %s" #: application/views/email/admin_reset_password.php:7 msgid "An admin initiated a password reset for your Wavelog account." -msgstr "" +msgstr "Administrátor inicioval obnovenie hesla pre váš účet Wavelog." #: application/views/email/admin_reset_password.php:9 #, php-format msgid "Your username is: %s" -msgstr "" +msgstr "Tvoje užívateľské meno je: %s" #: application/views/email/admin_reset_password.php:11 #: application/views/email/forgot_password.php:11 #, php-format msgid "Click here to reset your password: %s" -msgstr "" +msgstr "Kliknite sem a obnovte svoje heslo: %s" #: application/views/email/admin_reset_password.php:13 msgid "" @@ -10487,11 +10662,17 @@ msgid "" "\n" "Wavelog" msgstr "" +"Ak si nepožiadal o resetovanie hesla, tento e-mail ignoruj a porozprávaj sa " +"s administrátorom tvojej inštancie Wavelog.\n" +"\n" +"S pozdravom,\n" +"\n" +"Wavelog" #: application/views/email/club/modified_member.php:3 #, php-format msgid "Your permission level for Clubstation %s has been changed" -msgstr "" +msgstr "Úroveň vášho povolenia pre klubovú stanicu %s bola zmenená" #: application/views/email/club/modified_member.php:5 #, php-format @@ -10501,11 +10682,15 @@ msgid "" "Your permission level for Clubstation %s has been changed. You can access " "this callsign through your account at %s." msgstr "" +"Milý %s,\n" +"\n" +"úroveň tvojho oprávnenia pre klubovú stanicu %s bola zmenená. K tomuto " +"volaciemu znaku máš prístup cez svoj účet na %s." #: application/views/email/club/modified_member.php:9 #, php-format msgid "Your new permission level is: %s" -msgstr "" +msgstr "Vaša nová úroveň oprávnenia je: %s" #: application/views/email/club/modified_member.php:11 #: application/views/email/club/new_member.php:11 @@ -10516,11 +10701,16 @@ msgid "" "\n" "Wavelog" msgstr "" +"Prihlás sa a pozri si to!\n" +"\n" +"S pozdravom,\n" +"\n" +"Wavelog" #: application/views/email/club/new_member.php:3 #, php-format msgid "New %s Membership on Wavelog!" -msgstr "" +msgstr "Nový člen %s vo Wavelogu!" #: application/views/email/club/new_member.php:5 #, php-format @@ -10530,11 +10720,15 @@ msgid "" "You have been added to the Clubstation %s. You can now access this callsign " "through your account on %s." msgstr "" +"Milý %s\n" +"\n" +"Boli ste pridaní do klubovej stanice %s. Teraz môžete získať prístup k " +"tomuto volaciemu znaku prostredníctvom svojho účtu na %s." #: application/views/email/club/new_member.php:9 #, php-format msgid "Your permission level is: %s" -msgstr "" +msgstr "Vaša úroveň povolenia je: %s" #: application/views/email/forgot_password.php:5 msgid "" @@ -10542,6 +10736,9 @@ msgid "" "\n" "You or someone else has requested a password reset on your Wavelog account." msgstr "" +"Ahoj,\n" +"\n" +"Ty alebo niekto iný požiadal o reset hesla na tvojom účte Wavelog." #: application/views/email/forgot_password.php:13 msgid "" @@ -10551,19 +10748,24 @@ msgid "" "\n" "Wavelog" msgstr "" +"Ak ste to nepožadovali, jednoducho ignorujte.\n" +"\n" +"S pozdravom,\n" +"\n" +"Wavelog" #: application/views/email/oqrs_request.php:3 #, php-format msgid "Wavelog OQRS from %s" -msgstr "" +msgstr "Wavelog OQRS od %s" #: application/views/email/oqrs_request.php:6 msgid "The user entered the following message: " -msgstr "" +msgstr "Používateľ zadal nasledujúcu správu: " #: application/views/email/oqrs_request.php:11 msgid "The user did not enter any additional message." -msgstr "" +msgstr "Používateľ nezadal žiadnu ďalšiu správu." #: application/views/email/oqrs_request.php:14 #, php-format @@ -10572,6 +10774,9 @@ msgid "" "\n" "You got an OQRS request from %s." msgstr "" +"Ahoj,\n" +"\n" +"Dostal si požiadavku OQRS od %s." #: application/views/email/oqrs_request.php:20 msgid "" @@ -10581,10 +10786,15 @@ msgid "" "\n" "Wavelog" msgstr "" +"Prosím, prihlás sa do svojho Wavelogu a spracuj ho.\n" +"\n" +"S pozdravom,\n" +"\n" +"Wavelog" #: application/views/email/testmail.php:3 msgid "Wavelog Test-Mail" -msgstr "" +msgstr "Testovací e-mail Wavelog" #: application/views/email/testmail.php:5 msgid "" @@ -10598,13 +10808,22 @@ msgid "" "\n" "Wavelog" msgstr "" +"Ahoj,\n" +"\n" +"Toto je testovací email z tvojej Wavelog inštancie.\n" +"\n" +"Ak si dostal tento email, tvoje nastavenia pošty sú správne.\n" +"\n" +"S pozdravom,\n" +"\n" +"Wavelog" #: application/views/eqsl/analysis.php:14 #: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 #: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 #: application/views/eqsl/tools.php:11 msgid "Upload QSOs" -msgstr "" +msgstr "Nahraj spojenia" #: application/views/eqsl/analysis.php:17 #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 @@ -10612,56 +10831,60 @@ msgstr "" #: application/views/eqsl/tools.php:15 #: application/views/interface_assets/header.php:301 msgid "Tools" -msgstr "" +msgstr "Nástroje" #: application/views/eqsl/analysis.php:20 #: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 #: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 #: application/views/eqsl/tools.php:19 msgid "Download eQSL cards" -msgstr "" +msgstr "Stiahnuť eQSL karty" #: application/views/eqsl/analysis.php:41 msgid "eQSL Received Date" -msgstr "" +msgstr "Dátum prijatia eQSL" #: application/views/eqsl/analysis.php:42 msgid "Log Status" -msgstr "" +msgstr "Stav denníka" #: application/views/eqsl/analysis.php:43 application/views/eqsl/result.php:38 msgid "eQSL Status" -msgstr "" +msgstr "Stav eQSL" #: application/views/eqsl/analysis.php:68 msgid "There are no QSO confirmations waiting for you at eQSL.cc" -msgstr "" +msgstr "Nemáte žiadne čakajúce potvrdenia QSO na eQSL.cc" #: application/views/eqsl/download.php:31 msgid "" "Below is a table of QSOs that have been confirmed on eQSL but QSL images " "have not been downloaded yet." msgstr "" +"Nižšie je tabuľka spojení, ktoré boli potvrdené na eQSL, ale obrázky QSL " +"ešte neboli stiahnuté." #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 #: application/views/view_log/qso.php:550 msgid "QSL Message" -msgstr "" +msgstr "QSL správa" #: application/views/eqsl/download.php:44 msgid "eQSL Receive Date" -msgstr "" +msgstr "Dátum prijatia eQSL" #: application/views/eqsl/download.php:72 msgid "View/Download" -msgstr "" +msgstr "Zobraziť/Download" #: application/views/eqsl/download.php:83 application/views/eqsl/import.php:54 msgid "" "Wavelog will use the eQSL credentials from your Wavelog user profile to " "connect to eQSL and download confirmations." msgstr "" +"Wavelog použije prihlasovacie údaje eQSL z vášho používateľského profilu " +"Wavelog na pripojenie k eQSL a stiahnutie potvrdení." #: application/views/eqsl/download.php:85 msgid "" @@ -10670,48 +10893,58 @@ msgid "" "to call this function several times depending on the amount of outstanding " "cards. This may run into a script timeout depending on the PHP configuration." msgstr "" +"Z dôvodu obmedzenia rýchlosti približne 10 sekúnd na stiahnutie každého eQSL " +"obrázku bude volanie tejto funkcie trvať dlho! Preto možno budete musieť " +"túto funkciu zavolať viackrát v závislosti od počtu nespracovaných kariet. " +"To môže viesť k časovému limitu skriptu v závislosti od konfigurácie PHP." #: application/views/eqsl/download.php:93 msgid "" "There are no QSOs whose eQSL card images have not yet been downloaded. Go " "log some more QSOs!" msgstr "" +"Neexistujú žiadne spojenia, ktorých obrázky eQSL kariet ešte neboli " +"stiahnuté. Choď si zalogovať nejaké ďalšie QSO!" #: application/views/eqsl/export.php:31 msgid "Below is a table of QSOs that have not yet been sent to eQSL." -msgstr "" +msgstr "Nižšie je tabuľka spojení, ktoré ešte neboli odoslané na eQSL." #: application/views/eqsl/export.php:33 msgid "" "Please make sure the 'eQSL QTH Nickname' field is set in your station " "profile and that the value matches the QTH Nickname you set within eQSL." msgstr "" +"Ubezpeč sa, že pole 'eQSL QTH Nickname' je nastavené v tvojom profile " +"stanice a že hodnota zodpovedá nicku QTH, ktorú si nastavil v eQSL." #: application/views/eqsl/export.php:37 msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." -msgstr "" +msgstr "Kliknutie na 'Upload QSOs' odošle informácie o QSO na eQSL.cc." #: application/views/eqsl/export.php:46 msgid "The following QSOs were sent to eQSL." -msgstr "" +msgstr "Nasledujúce QSO boli poslané na eQSL." #: application/views/eqsl/export.php:51 msgid "" "There are no QSOs that need to be sent to eQSL at this time. Go log some " "more QSOs!" msgstr "" +"Teraz nie sú žiadne QSO, ktoré je potrebné poslať na eQSL. Choď zalogovať " +"ďalšie QSO!" #: application/views/eqsl/import.php:28 msgid "The next automatic sync with eQSL will happen at: " -msgstr "" +msgstr "Ďalšia automatická synchronizácia s eQSL prebehne o: " #: application/views/eqsl/import.php:31 msgid "Import from file..." -msgstr "" +msgstr "Importovať zo súboru..." #: application/views/eqsl/import.php:34 msgid "Download Inbox" -msgstr "" +msgstr "Download Inbox" #: application/views/eqsl/import.php:34 #, php-format @@ -10719,28 +10952,32 @@ msgid "" "Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " "confirmed on eQSL." msgstr "" +"Nahraj exportovaný ADIF súbor z eQSL z %s stránky, aby boli QSO označené ako " +"potvrdené na eQSL." #: application/views/eqsl/import.php:35 msgid "Choose Station(location) eQSL File belongs to:" -msgstr "" +msgstr "Vyberte, ku ktorej stanici (lokácii) patrí eQSL súbor:" #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 msgid "Log files must have the file type .adi" -msgstr "" +msgstr "Súbory denníkov musia mať typ súboru *.adi" #: application/views/eqsl/import.php:53 msgid "Import directly from eQSL" -msgstr "" +msgstr "Importovať priamo z eQSL" #: application/views/eqsl/tools.php:27 msgid "" "This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " "button you need to upload them manually on the eQSL.cc website." msgstr "" +"Toto NEuploaduje žiadne spojenie. Iba označuje spojenia ako odoslané. Ak " +"použiješ toto tlačidlo, musíš ich nahrať manuálne na webovú stránku eQSL.cc." #: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" -msgstr "" +msgstr "Označ všetky QSO ako odoslané do eQSL" #: application/views/eqsl/tools.php:29 msgid "" @@ -10757,17 +10994,17 @@ msgstr "" #: application/views/qslcard/index.php:44 #: application/views/qslcard/index.php:120 msgid "QSL Date" -msgstr "" +msgstr "Dátum QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" -msgstr "" +msgstr "Zobraziť" #: application/views/hamsat/index.php:22 #, php-format @@ -10775,57 +11012,66 @@ msgid "" "Cannot filter workable passes only without private feed key. Please set the " "feed key in %s." msgstr "" +"Nie je možné filtrovať len použiteľné prelety bez súkromného kľúča feed-u. " +"Nastavte prosím kľúč feed-u v %s." #: application/views/hamsat/index.php:22 msgid "your profile" -msgstr "" +msgstr "tvoj profil" #: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 #: application/views/webadif/export.php:13 msgid "Mark QSOs" -msgstr "" +msgstr "Označ spojenia" #: application/views/hrdlog/export.php:22 msgid "" "Here you can see all QSOs which have not been previously uploaded to a " "HRDLog logbook." msgstr "" +"Tu môžeš vidieť všetky spojenia, ktoré neboli predtým nahrané do denníka " +"HRDLog." #: application/views/hrdlog/export.php:23 msgid "" "You need to set a HRDLog Logbook API Code in your station profile. Only " "station profiles with an API Key set are displayed." msgstr "" +"Musíš nastaviť HRDLog Logbook API kód vo svojom profile stanice. Len profily " +"stanice s nastaveným API kľúčom sú zobrazené." #: application/views/hrdlog/export.php:24 #, php-format msgid "The Code can be requested at %s" -msgstr "" +msgstr "O kód možno požiadať na %s" #: application/views/hrdlog/export.php:25 #: application/views/webadif/export.php:34 msgid "This might take a while as QSO uploads are processed sequentially." msgstr "" +"Môže to chvíľu trvať, pretože nahrávané spojenia sa spracúvajú postupne." #: application/views/hrdlog/export.php:60 msgid "" "No Station Locations with valid HRDlog-Settings found. Check the HRDlog " "Credentials in the Station Location Settings!" msgstr "" +"Neboli nájdené žiadne umiestnenia staníc s platnými nastaveniami HRDlog. " +"Skontrolujte prihlasovacie údaje HRDlog v nastaveniach umiestnenia stanice!" #: application/views/hrdlog/export.php:87 msgid "Mark QSOs as exported to HRDLog Logbook" -msgstr "" +msgstr "Označ spojenia ako exportované do HRDLog Logbooku" #: application/views/hrdlog/mark_hrdlog.php:15 #: application/views/qrz/mark_qrz.php:15 #: application/views/webadif/mark_webadif.php:15 msgid "Yay, it's done!" -msgstr "" +msgstr "Hurá, je to hotové!" #: application/views/hrdlog/mark_hrdlog.php:16 msgid "The QSOs are marked as exported to HRDLog Logbook." -msgstr "" +msgstr "Spojenia sú označené ako exportované do HRDLog Logbooku." #: application/views/interface_assets/footer.php:32 #: application/views/search/search_result_ajax.php:456 @@ -10833,39 +11079,41 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:670 #: application/views/view_log/qso.php:598 msgid "Edit QSO" -msgstr "" +msgstr "Upraviť QSO" #: application/views/interface_assets/footer.php:33 msgid "Share QSO" -msgstr "" +msgstr "Zdieľaj QSO" #: application/views/interface_assets/footer.php:35 #: application/views/logbookadvanced/index.php:50 msgid "ERROR" -msgstr "" +msgstr "CHYBA" #: application/views/interface_assets/footer.php:36 msgid "Attention" -msgstr "" +msgstr "Pozor" #: application/views/interface_assets/footer.php:43 msgid "Warning! Are you sure you want delete QSO with " -msgstr "" +msgstr "Upozornenie! Ste si istý, že chcete vymazať spojenie s " #: application/views/interface_assets/footer.php:44 #: application/views/user/edit.php:543 msgid "Colors" -msgstr "" +msgstr "Farby" #: application/views/interface_assets/footer.php:46 msgid "Worked not confirmed" -msgstr "" +msgstr "Urobené, nepotvrdené" #: application/views/interface_assets/footer.php:53 #: application/views/qso/edit_ajax.php:213 #: application/views/qso/edit_ajax.php:568 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" +"Režim šírenia nie je podporovaný službou LoTW. Polia LoTW QSL sú " +"deaktivované." #: application/views/interface_assets/footer.php:54 msgid "No states for this DXCC available" @@ -10873,91 +11121,91 @@ msgstr "" #: application/views/interface_assets/footer.php:55 msgid "Compute QRB and QTF" -msgstr "" +msgstr "Vypočítaj QRB a QTF" #: application/views/interface_assets/footer.php:56 msgid "Error in locators. Please check." -msgstr "" +msgstr "Chyba v lokátoroch. Skontroluj ich." #: application/views/interface_assets/footer.php:57 #: application/views/user/index.php:20 application/views/user/index.php:144 msgid "Refresh List" -msgstr "" +msgstr "Obnoviť zoznam" #: application/views/interface_assets/footer.php:58 msgid "Please Wait ..." -msgstr "" +msgstr "Prosím, počkajte..." #: application/views/interface_assets/footer.php:59 msgctxt "" "Word for country states that are deprecated but kept for legacy reasons." msgid "deprecated" -msgstr "" +msgstr "zastaralé" #: application/views/interface_assets/footer.php:60 msgid "Satellite Information" -msgstr "" +msgstr "Informácie o satelitoch" #: application/views/interface_assets/footer.php:62 msgid "Error loading notes" -msgstr "" +msgstr "Chyba pri načítaní poznámok" #: application/views/interface_assets/footer.php:63 msgid "Sorting" -msgstr "" +msgstr "Zoradenie" #: application/views/interface_assets/footer.php:64 msgid "Duplication is disabled for Contacts notes" -msgstr "" +msgstr "Duplikácia poznámok Kontaktov je vypnutá" #: application/views/interface_assets/footer.php:66 msgid "Duplicate" -msgstr "" +msgstr "Duplicita" #: application/views/interface_assets/footer.php:67 #: application/views/notes/view.php:48 msgid "Delete Note" -msgstr "" +msgstr "Odstrániť poznámku" #: application/views/interface_assets/footer.php:68 msgid "Duplicate Note" -msgstr "" +msgstr "Duplicitná poznámka" #: application/views/interface_assets/footer.php:69 msgid "Delete this note?" -msgstr "" +msgstr "Odstrániť túto poznámku?" #: application/views/interface_assets/footer.php:70 msgid "Duplicate this note?" -msgstr "" +msgstr "Duplikovať túto poznámku?" #: application/views/interface_assets/footer.php:71 msgid "Duplication Disabled" -msgstr "" +msgstr "Duplikácia zakázaná" #: application/views/interface_assets/footer.php:72 msgid "No notes were found" -msgstr "" +msgstr "Žiadne poznámky sa nenašli" #: application/views/interface_assets/footer.php:73 msgid "No notes for this callsign" -msgstr "" +msgstr "Žiadne poznámky k tejto volačke" #: application/views/interface_assets/footer.php:74 msgid "Callsign Note" -msgstr "" +msgstr "Poznámka k volacej značke" #: application/views/interface_assets/footer.php:75 msgid "Note deleted successfully" -msgstr "" +msgstr "Poznámka úspešne odstránená" #: application/views/interface_assets/footer.php:76 msgid "Note created successfully" -msgstr "" +msgstr "Poznámka bola úspešne vytvorená" #: application/views/interface_assets/footer.php:77 msgid "Note saved successfully" -msgstr "" +msgstr "Poznámka úspešne uložená" #: application/views/interface_assets/footer.php:78 msgid "Error saving note" @@ -11213,78 +11461,78 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" -msgstr "" +msgstr "Uložené dotazy:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" -msgstr "" +msgstr "Spustiť dotaz" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" -msgstr "" +msgstr "Uložené dotazy" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" -msgstr "" +msgstr "Je potrebné vytvoriť dotaz, skôr než začneš hľadať!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" -msgstr "" +msgstr "Exportovať do ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" -msgstr "" +msgstr "Otvoriť v rozšírenom denníku" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" -msgstr "" +msgstr "Varovanie! Ste si istí, že chcete vymazať tento uložený dopyt?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" -msgstr "" +msgstr "Uložený dotaz bol vymazaný!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" -msgstr "" +msgstr "Uložený dotaz sa nepodarilo odstrániť. Skúste to znova!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" -msgstr "" +msgstr "Popis dotazu byl aktualizovaný!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" -msgstr "" +msgstr "Pri ukladaní sa niečo pokazilo. Skúste to znova!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11294,201 +11542,201 @@ msgstr "" "Skontroluj, ktorý DXCC je pre toto konkrétne miesto správny. Ak si si istý, " "ignoruj toto varovanie." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " -msgstr "" +msgstr "Volacia značka: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " -msgstr "" +msgstr "Počet: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " -msgstr "" +msgstr "Lokátory: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 msgctxt "Map Options" msgid "Gridsquares" -msgstr "" +msgstr "Lokátorové štvorce" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" -msgstr "" +msgstr "lokátorový štvorec" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" -msgstr "" +msgstr "Celkový počet" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " -msgstr "" +msgstr "QSL karta pre " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" -msgstr "" +msgstr "Varovanie! Ste si istí, že chcete túto QSL kartu vymazať?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" -msgstr "" +msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " -msgstr "" +msgstr "eQSL karta pre " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" -msgstr "" +msgstr "QSL obrazový súbor" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" -msgstr "" +msgstr "Predná strana QSL karty:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" -msgstr "" +msgstr "Zadná strana QSL karty:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" -msgstr "" +msgstr "Pridať ďalšie spojenie na QSL kartu" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" -msgstr "" +msgstr "Niečo sa pokazilo. Skúste to znova!" #: application/views/interface_assets/header.php:99 msgid "Developer Mode" -msgstr "" +msgstr "Režim vývojára" #: application/views/interface_assets/header.php:102 msgid "Maintenance Mode" -msgstr "" +msgstr "Režim údržby" #: application/views/interface_assets/header.php:105 #: application/views/user/edit.php:89 msgid "Clubstation" -msgstr "" +msgstr "Klubová stanica" #: application/views/interface_assets/header.php:115 msgid "Overview" -msgstr "" +msgstr "Prehľad" #: application/views/interface_assets/header.php:120 msgid "View QSL Cards" -msgstr "" +msgstr "Zobraziť QSL karty" #: application/views/interface_assets/header.php:123 msgid "View eQSL Cards" -msgstr "" +msgstr "Zobraziť eQSL karty" #: application/views/interface_assets/header.php:125 msgid "View last confirmations" -msgstr "" +msgstr "Zobraziť posledné potvrdenia" #: application/views/interface_assets/header.php:133 msgid "Live QSO" -msgstr "" +msgstr "QSO naživo" #: application/views/interface_assets/header.php:135 msgid "Post QSO" -msgstr "" +msgstr "QSO dodatočne" #: application/views/interface_assets/header.php:137 msgid "Simple Fast Log Entry" -msgstr "" +msgstr "Jednoduchý rýchly záznam do denníka" #: application/views/interface_assets/header.php:140 msgid "Live Contest Logging" -msgstr "" +msgstr "Contestové logovanie naživo" #: application/views/interface_assets/header.php:142 msgid "Post Contest Logging" -msgstr "" +msgstr "Dodatočné contestové logovanie" #: application/views/interface_assets/header.php:152 msgid "Analytics" -msgstr "" +msgstr "Analytika" #: application/views/interface_assets/header.php:162 msgid "Activated Gridsquares" -msgstr "" +msgstr "Aktivované lokátorové štvorce" #: application/views/interface_assets/header.php:180 msgid "Callsign Statistics" -msgstr "" +msgstr "Štatistiky volacích znakov" #: application/views/interface_assets/header.php:188 msgid "International" -msgstr "" +msgstr "Medzinárodný" #: application/views/interface_assets/header.php:190 msgid "CQ WAZ" -msgstr "" +msgstr "CQ WAZ" #: application/views/interface_assets/header.php:194 msgid "ITU" -msgstr "" +msgstr "ITU" #: application/views/interface_assets/header.php:200 msgid "Worked All Europe (WAE)" -msgstr "" +msgstr "Worked All Europe (WAE)" #: application/views/interface_assets/header.php:204 msgid "Worked All Prefixes (WPX)" -msgstr "" +msgstr "Worked All Prefixes (WPX)" #: application/views/interface_assets/header.php:226 msgid "Canada" -msgstr "" +msgstr "Kanada" #: application/views/interface_assets/header.php:232 msgid "China" -msgstr "" +msgstr "Čína" #: application/views/interface_assets/header.php:238 msgid "Germany" -msgstr "" +msgstr "Nemecko" #: application/views/interface_assets/header.php:242 msgid "DL Gridmaster" -msgstr "" +msgstr "DL Gridmaster" #: application/views/interface_assets/header.php:246 msgid "Great Britain" -msgstr "" +msgstr "Veľká Británia" #: application/views/interface_assets/header.php:248 msgid "WAB" -msgstr "" +msgstr "WAB" #: application/views/interface_assets/header.php:252 msgid "Japan" -msgstr "" +msgstr "Japonsko" #: application/views/interface_assets/header.php:258 msgid "JA Gridmaster" -msgstr "" +msgstr "JA Gridmaster" #: application/views/interface_assets/header.php:262 msgid "Luxemburg" -msgstr "" +msgstr "Luxembursko" #: application/views/interface_assets/header.php:264 msgid "LX Gridmaster" -msgstr "" +msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" @@ -11496,142 +11744,142 @@ msgstr "" #: application/views/interface_assets/header.php:274 msgid "Switzerland" -msgstr "" +msgstr "Švajčiarsko" #: application/views/interface_assets/header.php:280 msgid "The Netherlands" -msgstr "" +msgstr "Holandsko" #: application/views/interface_assets/header.php:282 msgid "WAP Worked All Provinces" -msgstr "" +msgstr "WAP Worked All Provinces" #: application/views/interface_assets/header.php:286 msgid "USA" -msgstr "" +msgstr "USA" #: application/views/interface_assets/header.php:292 msgid "US Gridmaster" -msgstr "" +msgstr "US Gridmaster" #: application/views/interface_assets/header.php:311 msgid "SAT Timers" -msgstr "" +msgstr "SAT časovače" #: application/views/interface_assets/header.php:315 msgid "Satellite Pass" -msgstr "" +msgstr "Satelitný prelet" #: application/views/interface_assets/header.php:321 #: application/views/stationsetup/stationsetup.php:118 msgid "Admin" -msgstr "" +msgstr "Admin" #: application/views/interface_assets/header.php:326 msgid "Global Options" -msgstr "" +msgstr "Globálne možnosti" #: application/views/interface_assets/header.php:338 msgid "Update Country Files" -msgstr "" +msgstr "Aktualizovať súbory krajín" #: application/views/interface_assets/header.php:342 msgid "Debug Information" -msgstr "" +msgstr "Informácie o ladení" #: application/views/interface_assets/header.php:389 msgid "Add/Search Callsign" -msgstr "" +msgstr "Pridať/Vyhľadať volaciu značku" #: application/views/interface_assets/header.php:391 msgid "Log" -msgstr "" +msgstr "Denník" #: application/views/interface_assets/header.php:398 #: application/views/logbookadvanced/index.php:689 #: application/views/oqrs/index.php:28 application/views/user/edit.php:490 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" -msgstr "" +msgstr "Vyhľadať volaciu značku" #: application/views/interface_assets/header.php:425 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" -msgstr "" +msgstr "Op: %s" #: application/views/interface_assets/header.php:436 #: application/views/user/edit.php:53 msgid "Account" -msgstr "" +msgstr "Účet" #: application/views/interface_assets/header.php:444 msgid "Band Edges" -msgstr "" +msgstr "Okraje pásiem" #: application/views/interface_assets/header.php:450 msgid "Switch to Clubstation:" -msgstr "" +msgstr "Prepni na klubovú stanicu:" #: application/views/interface_assets/header.php:454 #, php-format msgid "Switch to %s" -msgstr "" +msgstr "Prepnúť na %s" #: application/views/interface_assets/header.php:458 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" -msgstr "" +msgstr "Spravovať %s" #: application/views/interface_assets/header.php:467 msgid "No Clubstations available" -msgstr "" +msgstr "Žiadne klubové stanice nie sú k dispozícii" #: application/views/interface_assets/header.php:475 msgid "Other Export Options" -msgstr "" +msgstr "Ďalšie možnosti exportu" #: application/views/interface_assets/header.php:483 msgid "Cabrillo Export" -msgstr "" +msgstr "Export Cabrillo" #: application/views/interface_assets/header.php:485 msgid "EDI Export" -msgstr "" +msgstr "EDI export" #: application/views/interface_assets/header.php:507 msgid "QSL Queue" -msgstr "" +msgstr "QSL fronta" #: application/views/interface_assets/header.php:508 msgid "Labels" -msgstr "" +msgstr "Štítky" #: application/views/interface_assets/header.php:510 msgid "Third-Party Services" -msgstr "" +msgstr "Služby tretích strán" #: application/views/interface_assets/header.php:513 msgid "eQSL Import / Export" -msgstr "" +msgstr "Import / Export eQSL" #: application/views/interface_assets/header.php:514 msgid "HRDLog Logbook" -msgstr "" +msgstr "HRDLog denník" #: application/views/interface_assets/header.php:517 msgid "Clublog Import / Export" -msgstr "" +msgstr "Import / Export Clublog" #: application/views/interface_assets/header.php:520 msgid "DCL Export" -msgstr "" +msgstr "DCL export" #: application/views/interface_assets/header.php:532 #: application/views/logbookadvanced/index.php:831 msgid "Help" -msgstr "" +msgstr "Pomoc" #: application/views/interface_assets/header.php:533 msgid "Forum" @@ -11936,6 +12184,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." @@ -12039,40 +12299,40 @@ msgstr "" #: application/views/logbookadvanced/edit.php:49 msgid "QSL Sent" -msgstr "" +msgstr "QSL odoslané" #: application/views/logbookadvanced/edit.php:50 msgid "QSLMSG" -msgstr "" +msgstr "QSLMSG" #: application/views/logbookadvanced/edit.php:51 msgid "QSL Received Method" -msgstr "" +msgstr "Metóda prijatia QSL" #: application/views/logbookadvanced/edit.php:52 msgid "QSL Sent Method" -msgstr "" +msgstr "Metóda odoslania QSL" #: application/views/logbookadvanced/edit.php:53 #: application/views/logbookadvanced/index.php:639 #: application/views/logbookadvanced/index.php:878 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" -msgstr "" +msgstr "QSL cez" #: application/views/logbookadvanced/edit.php:105 #: application/views/satellite/edit.php:51 #: application/views/satellite/index.php:55 msgid "SAT Mode" -msgstr "" +msgstr "SAT mód" #: application/views/logbookadvanced/edit.php:108 msgid "Band TX" -msgstr "" +msgstr "Pásmo TX" #: application/views/logbookadvanced/edit.php:121 msgid "Band RX" -msgstr "" +msgstr "Pásmo RX" #: application/views/logbookadvanced/edit.php:169 #: application/views/logbookadvanced/edit.php:176 @@ -12083,7 +12343,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:479 #: application/views/logbookadvanced/index.php:804 msgid "Invalid" -msgstr "" +msgstr "Neplatné" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 @@ -12092,7 +12352,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:591 #: application/views/logbookadvanced/index.php:615 msgid "Verified" -msgstr "" +msgstr "Overené" #: application/views/logbookadvanced/edit.php:208 #: application/views/logbookadvanced/index.php:532 @@ -12111,7 +12371,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:345 #: src/QSLManager/QSO.php:432 src/QSLManager/QSO.php:475 msgid "Direct" -msgstr "" +msgstr "Direkt" #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/index.php:531 @@ -12132,7 +12392,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:342 #: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:472 msgid "Bureau" -msgstr "" +msgstr "Bureau" #: application/views/logbookadvanced/edit.php:210 #: application/views/logbookadvanced/index.php:533 @@ -12151,7 +12411,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:351 #: src/QSLManager/QSO.php:438 src/QSLManager/QSO.php:481 msgid "Electronic" -msgstr "" +msgstr "Elektronicky" #: application/views/logbookadvanced/edit.php:211 #: application/views/logbookadvanced/index.php:534 @@ -12163,109 +12423,119 @@ msgstr "" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" -msgstr "" +msgstr "Manažér" #: application/views/logbookadvanced/edit.php:227 #: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:473 msgid "NONE" -msgstr "" +msgstr "ŽIADNY" #: application/views/logbookadvanced/edit.php:228 #: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:474 msgid "African Italy" -msgstr "" +msgstr "Africká Taliansko" #: application/views/logbookadvanced/edit.php:229 #: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:475 msgid "Bear Island" -msgstr "" +msgstr "Medvedí ostrov" #: application/views/logbookadvanced/edit.php:230 #: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:476 msgid "European Turkey" -msgstr "" +msgstr "Európske Turecko" #: application/views/logbookadvanced/edit.php:231 #: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:477 msgid "ITU Vienna" -msgstr "" +msgstr "ITU Viedeň" #: application/views/logbookadvanced/edit.php:232 #: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:478 msgid "Kosovo" -msgstr "" +msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 #: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:479 msgid "Shetland Islands" -msgstr "" +msgstr "Shetlandské ostrovy" #: application/views/logbookadvanced/edit.php:234 #: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:480 msgid "Sicily" -msgstr "" +msgstr "Sicília" #: application/views/logbookadvanced/edit.php:237 msgid "" "Distance (in km). Leave blank to recalculate distance. (It will only work if " "a gridsquare is set)." msgstr "" +"Vzdialenosť (v km). Nechaj prázdne pre prepočítanie vzdialenosti (bude " +"fungovať len v prípade zadania lokátorového štvorca)." #: application/views/logbookadvanced/help.php:2 msgid "In the text input searches, you can search in the following way:" -msgstr "" +msgstr "V textových vyhľadávaniach môžete hľadať nasledovne:" #: application/views/logbookadvanced/help.php:3 msgid "* - means search for everything." -msgstr "" +msgstr "* - znamená hľadať všetko." #: application/views/logbookadvanced/help.php:4 msgid "Remove star and leave blank, means to search where column is empty." msgstr "" +"Odstrániť hviezdičku a nechať prázdne, znamená vyhľadať, kde je stĺpec " +"prázdny." #: application/views/logbookadvanced/help.php:5 msgid "!empty - means to search where column is not empty." -msgstr "" +msgstr "!empty - znamená hľadať, kde stĺpec nie je prázdny." #: application/views/logbookadvanced/help.php:7 msgid "" "The dupe search checks for duplicate QSOs with the same callsign, mode, " "submode, station callsign, band and satellite within 1500 seconds." msgstr "" +"Vyhľadávanie duplicitných spojení kontroluje duplicitné spojenia s rovnakou " +"volačkou, módom, submódom, voľačkou stanice, pásmom a satelitom do 1500 " +"sekúnd." #: application/views/logbookadvanced/help.php:9 msgid "The invalid search checks for the following conditions:" -msgstr "" +msgstr "Kontrola neplatného vyhľadávania zisťuje nasledujúce podmienky:" #: application/views/logbookadvanced/help.php:10 msgid "Mode is blank or set to 0." -msgstr "" +msgstr "Režim je prázdny alebo nastavený na 0." #: application/views/logbookadvanced/help.php:11 msgid "Band is blank." -msgstr "" +msgstr "Pásmo je prázdne." #: application/views/logbookadvanced/help.php:12 msgid "Callsign is blank." -msgstr "" +msgstr "Volacia značka je prázdna." #: application/views/logbookadvanced/help.php:13 msgid "Time and date is not set." -msgstr "" +msgstr "Čas a dátum nie sú zadané." #: application/views/logbookadvanced/help.php:14 msgid "Date is set to 1970-01-01." -msgstr "" +msgstr "Dátum je nastavený na 1970-01-01." #: application/views/logbookadvanced/help.php:15 msgid "Continent different from AF, AN, AS, EU, NA, OC or SA." -msgstr "" +msgstr "Kontinent odlišný od AF, AN, AS, EU, NA, OC alebo SA." #: application/views/logbookadvanced/help.php:17 msgid "" "The map uses the same search criteria as the normal search. All QSOs in the " "search result will be mapped, unless you have checked one or more QSOs." msgstr "" +"Mapa používa rovnaké kritériá vyhľadávania ako normálne vyhľadávanie. Všetky " +"spojenia vo výsledku vyhľadávania budú nazmapované, pokiaľ ste neodznačíte " +"jedno alebo viac QSOs." #: application/views/logbookadvanced/help.php:19 msgid "" @@ -12273,115 +12543,118 @@ msgid "" "will be exported (all for selected location), unless you have checked one or " "more QSOs." msgstr "" +"Export ADIF používa rovnaké kritéria vyhľadávania ako normálne vyhľadávanie. " +"Všetky spojenia budú exportované (všetky pre vybranú lokalitu), pokiaľ ste " +"nezaškrtli jedno alebo viac spojení." #: application/views/logbookadvanced/index.php:16 #: application/views/logbookadvanced/useroptions.php:206 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" -msgstr "" +msgstr "Trasy spojenia" #: application/views/logbookadvanced/index.php:17 msgid "Show Callsigns" -msgstr "" +msgstr "Zobraziť volacie znaky" #: application/views/logbookadvanced/index.php:18 #: application/views/logbookadvanced/useroptions.php:214 msgctxt "Map Options" msgid "CQ Zones" -msgstr "" +msgstr "CQ zóny" #: application/views/logbookadvanced/index.php:19 #: application/views/logbookadvanced/useroptions.php:218 msgctxt "Map Options" msgid "ITU Zones" -msgstr "" +msgstr "ITU zóny" #: application/views/logbookadvanced/index.php:20 #: application/views/logbookadvanced/useroptions.php:222 msgctxt "Map Options" msgid "Night Shadow" -msgstr "" +msgstr "Tieň noci" #: application/views/logbookadvanced/index.php:23 msgid "Advanced Logbook Help" -msgstr "" +msgstr "Pomoc s pokročilým denníkom" #: application/views/logbookadvanced/index.php:24 msgid "Continent fix" -msgstr "" +msgstr "Oprava kontinentu" #: application/views/logbookadvanced/index.php:25 msgid "There was a problem fixing ITU Zones." -msgstr "" +msgstr "Došlo k problému pri opravovaní zón ITU." #: application/views/logbookadvanced/index.php:26 msgid "There was a problem fixing CQ Zones." -msgstr "" +msgstr "Vyskytol sa problém s opravou CQ zón." #: application/views/logbookadvanced/index.php:27 msgid "ITU Zones updated successfully!" -msgstr "" +msgstr "Zóny ITU boli úspešne aktualizované!" #: application/views/logbookadvanced/index.php:28 msgid "CQ Zones updated successfully!" -msgstr "" +msgstr "CQ zóny úspešne aktualizované!" #: application/views/logbookadvanced/index.php:29 msgid "You need to select at least 1 row to fix ITU Zones!" -msgstr "" +msgstr "Musíš vybrať aspoň 1 riadok na opravu ITU zón!" #: application/views/logbookadvanced/index.php:30 msgid "You need to select at least 1 row to fix CQ Zones!" -msgstr "" +msgstr "Musíš vybrať aspoň 1 riadok na opravu CQ zón!" #: application/views/logbookadvanced/index.php:31 msgid "You need to select at least 1 row to fix State!" -msgstr "" +msgstr "Musíš vybrať aspoň 1 riadok, aby si opravil štát!" #: application/views/logbookadvanced/index.php:32 msgid "State updated successfully!" -msgstr "" +msgstr "Štát bol úspešne aktualizovaný!" #: application/views/logbookadvanced/index.php:33 msgid "There was a problem fixing State." -msgstr "" +msgstr "Vyskytol sa problém s opravou štátu." #: application/views/logbookadvanced/index.php:34 msgid "Fixing State" -msgstr "" +msgstr "Oprava štátu" #: application/views/logbookadvanced/index.php:35 #, php-format msgid "Fixing State (%s QSOs)" -msgstr "" +msgstr "Oprava štátu (%s QSOs)" #: application/views/logbookadvanced/index.php:36 #, php-format msgid "Fixing State: %s remaining" -msgstr "" +msgstr "Oprava štátu: zostáva %s" #: application/views/logbookadvanced/index.php:37 msgid "Fixed" -msgstr "" +msgstr "Opravené" #: application/views/logbookadvanced/index.php:38 #, php-format msgid "Fixed: %s" -msgstr "" +msgstr "Opravené: %s" #: application/views/logbookadvanced/index.php:39 msgid "Skipped" -msgstr "" +msgstr "Preskočené" #: application/views/logbookadvanced/index.php:40 #, php-format msgid "Skipped: %s, see details for skipped rows below" -msgstr "" +msgstr "Preskočené: %s, pozri podrobnosti o preskočených riadkoch nižšie" #: application/views/logbookadvanced/index.php:41 msgid "State Fix Complete" -msgstr "" +msgstr "Oprava štátu dokončená" #: application/views/logbookadvanced/index.php:42 #, php-format @@ -12390,108 +12663,113 @@ msgid "" "countries, please create a ticket at %s with the GeoJSON file and desired " "letter coding for your country." msgstr "" +"Nie všetky entity DXCC majú podporu od štátu. Ak potrebujete podporu pre " +"ďalšie krajiny, vytvorte prosím ticket na %s s GeoJSON súborom a požadovaným " +"kódom písmen pre vašu krajinu." #: application/views/logbookadvanced/index.php:45 msgid "Only 1 row can be selected for Quickfilter!" -msgstr "" +msgstr "V rýchlom filtri možno vybrať iba 1 riadok!" #: application/views/logbookadvanced/index.php:46 msgid "You need to select a row to use the Quickfilters!" -msgstr "" +msgstr "Musíš vybrať riadok, aby si mohol použiť Rýchle filtre!" #: application/views/logbookadvanced/index.php:47 msgid "You need to select a least 1 row to display a QSL card!" -msgstr "" +msgstr "Musíš vybrať aspoň 1 riadok, aby sa zobrazila QSL karta!" #: application/views/logbookadvanced/index.php:48 msgid "Continents updated successfully!" -msgstr "" +msgstr "Kontinenty boli úspešne aktualizované!" #: application/views/logbookadvanced/index.php:49 msgid "There was a problem fixing Continents." -msgstr "" +msgstr "Vyskytol sa problém s opravou kontinentov." #: application/views/logbookadvanced/index.php:51 msgid "SUCCESS" -msgstr "" +msgstr "ÚSPECH" #: application/views/logbookadvanced/index.php:52 msgid "INFO" -msgstr "" +msgstr "INFO" #: application/views/logbookadvanced/index.php:58 msgid "Options for the Advanced Logbook" -msgstr "" +msgstr "Možnosti pre pokročilý denník" #: application/views/logbookadvanced/index.php:59 msgid "" "Something went wrong with label print. Go to labels and check if you have " "defined a label, and that it is set for print!" msgstr "" +"Niečo sa pokazilo s tlačou štítkov. Choď do štítkov a skontroluj, či máš " +"definovaný štítok a či je nastavený na tlač!" #: application/views/logbookadvanced/index.php:60 msgid "You need to select a least 1 row!" -msgstr "" +msgstr "Musíš vybrať aspoň 1 riadok!" #: application/views/logbookadvanced/index.php:61 msgid "Start printing at which label?" -msgstr "" +msgstr "Na ktorej etikete začať tlačiť?" #: application/views/logbookadvanced/index.php:62 msgid "You need to select at least 1 row to print a label!" -msgstr "" +msgstr "Musíš vybrať aspoň 1 riadok, aby si mohol vytlačiť štítok!" #: application/views/logbookadvanced/index.php:63 msgid "An error occurred while saving options: " -msgstr "" +msgstr "Pri ukladaní možností došlo k chybe: " #: application/views/logbookadvanced/index.php:64 msgid "You need to select a least 1 row to delete!" -msgstr "" +msgstr "Musíte vybrať aspoň jeden riadok na odstránenie!" #: application/views/logbookadvanced/index.php:65 msgid "You need to select a least 1 row to update from callbook!" -msgstr "" +msgstr "Musíš vybrať aspoň 1 riadok na aktualizáciu z callbooku!" #: application/views/logbookadvanced/index.php:66 #: application/views/oqrs/showrequests.php:10 msgid "An error ocurred while making the request" -msgstr "" +msgstr "Pri žiadosti sa vyskytla chyba" #: application/views/logbookadvanced/index.php:67 msgid "You need to select at least 1 location to do a search!" -msgstr "" +msgstr "Musíte vybrať aspoň 1 miesto na vykonanie vyhľadávania!" #: application/views/logbookadvanced/index.php:68 #: application/views/logbookadvanced/index.php:773 msgid "Update Distances" -msgstr "" +msgstr "Aktualizuj vzdialeností" #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." -msgstr "" +msgstr "QSO záznamy aktualizované." #: application/views/logbookadvanced/index.php:70 msgid "There was a problem updating distances." -msgstr "" +msgstr "Pri aktualizácii vzdialeností došlo k problému." #: application/views/logbookadvanced/index.php:71 msgid "Distances updated successfully!" -msgstr "" +msgstr "Vzdialenosti boli úspešne aktualizované!" #: application/views/logbookadvanced/index.php:292 msgid "From" -msgstr "" +msgstr "Od" #: application/views/logbookadvanced/index.php:296 msgid "To" -msgstr "" +msgstr "do" #: application/views/logbookadvanced/index.php:300 #: application/views/logbookadvanced/index.php:851 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" -msgstr "" +msgstr "DX" #: application/views/logbookadvanced/index.php:301 #: application/views/logbookadvanced/index.php:326 @@ -12509,26 +12787,28 @@ msgstr "" #: application/views/logbookadvanced/index.php:490 #: application/views/logbookadvanced/index.php:640 msgid "Empty" -msgstr "" +msgstr "Prázdny" #: application/views/logbookadvanced/index.php:378 msgctxt "Propagation Mode" msgid "None/Empty" -msgstr "" +msgstr "Žiadne/prázdne" #: application/views/logbookadvanced/index.php:489 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "" +"Vzdialenosť v kilometroch. Vyhľadá sa vzdialenosť väčšiu alebo rovná tejto " +"hodnote." #: application/views/logbookadvanced/index.php:500 msgid "QSL Filters" -msgstr "" +msgstr "QSL filtre" #: application/views/logbookadvanced/index.php:506 msgid "QSL sent" -msgstr "" +msgstr "QSL odoslané" #: application/views/logbookadvanced/index.php:512 #: application/views/logbookadvanced/index.php:556 @@ -12558,7 +12838,7 @@ msgstr "" #: src/QSLManager/QSO.php:650 src/QSLManager/QSO.php:677 #: src/QSLManager/QSO.php:721 src/QSLManager/QSO.php:801 msgid "Queued" -msgstr "" +msgstr "V poradí" #: application/views/logbookadvanced/index.php:513 #: application/views/logbookadvanced/index.php:523 @@ -12614,249 +12894,249 @@ msgstr "" #: src/QSLManager/QSO.php:713 src/QSLManager/QSO.php:762 #: src/QSLManager/QSO.php:797 src/QSLManager/QSO.php:826 msgid "Invalid (Ignore)" -msgstr "" +msgstr "Neplatné (Ignorovať)" #: application/views/logbookadvanced/index.php:517 msgid "QSL received" -msgstr "" +msgstr "QSL prijaté" #: application/views/logbookadvanced/index.php:528 msgid "QSL send. method" -msgstr "" +msgstr "Spôsob odoslania QSL" #: application/views/logbookadvanced/index.php:538 msgid "QSL recv. method" -msgstr "" +msgstr "Spôsob prijatia QSL" #: application/views/logbookadvanced/index.php:550 msgid "LoTW sent" -msgstr "" +msgstr "LoTW odoslané" #: application/views/logbookadvanced/index.php:561 msgid "LoTW received" -msgstr "" +msgstr "LoTW prijaté" #: application/views/logbookadvanced/index.php:573 msgid "Clublog sent" -msgstr "" +msgstr "Clublog odoslané" #: application/views/logbookadvanced/index.php:584 msgid "Clublog received" -msgstr "" +msgstr "Clublog prijaté" #: application/views/logbookadvanced/index.php:597 msgid "eQSL sent" -msgstr "" +msgstr "eQSL odoslané" #: application/views/logbookadvanced/index.php:608 msgid "eQSL received" -msgstr "" +msgstr "eQSL prijaté" #: application/views/logbookadvanced/index.php:619 msgid "DCL sent" -msgstr "" +msgstr "DCL odoslané" #: application/views/logbookadvanced/index.php:628 msgid "DCL received" -msgstr "" +msgstr "DCL prijaté" #: application/views/logbookadvanced/index.php:643 msgid "QSL Images" -msgstr "" +msgstr "QSL obrázky" #: application/views/logbookadvanced/index.php:651 msgid "QRZ sent" -msgstr "" +msgstr "QRZ odoslané" #: application/views/logbookadvanced/index.php:660 msgid "QRZ received" -msgstr "" +msgstr "QRZ prijaté" #: application/views/logbookadvanced/index.php:676 msgid "Quickfilters" -msgstr "" +msgstr "Rýchle filtre" #: application/views/logbookadvanced/index.php:681 msgid "Quicksearch with selected: " -msgstr "" +msgstr "Rýchle vyhľadávanie s vybraným: " #: application/views/logbookadvanced/index.php:686 msgid "Search Date" -msgstr "" +msgstr "Dátum vyhľadávania" #: application/views/logbookadvanced/index.php:692 msgid "Search DXCC" -msgstr "" +msgstr "Vyhľadať DXCC" #: application/views/logbookadvanced/index.php:695 msgid "Search State" -msgstr "" +msgstr "Hľadaj štát" #: application/views/logbookadvanced/index.php:698 msgid "Search Gridsquare" -msgstr "" +msgstr "Vyhľadať lokátorový štvorec" #: application/views/logbookadvanced/index.php:701 msgid "Search CQ Zone" -msgstr "" +msgstr "Hľadať CQ zónu" #: application/views/logbookadvanced/index.php:704 msgid "Search ITU Zone" -msgstr "" +msgstr "Vyhľadaj zónu ITU" #: application/views/logbookadvanced/index.php:707 msgid "Search Mode" -msgstr "" +msgstr "Režim vyhľadávania" #: application/views/logbookadvanced/index.php:710 msgid "Search Band" -msgstr "" +msgstr "Hľadaj pásmo" #: application/views/logbookadvanced/index.php:713 msgid "Search IOTA" -msgstr "" +msgstr "Vyhľadať IOTA" #: application/views/logbookadvanced/index.php:716 msgid "Search SOTA" -msgstr "" +msgstr "Hľadať SOTA" #: application/views/logbookadvanced/index.php:719 msgid "Search POTA" -msgstr "" +msgstr "Vyhľadať POTA" #: application/views/logbookadvanced/index.php:722 msgid "Search WWFF" -msgstr "" +msgstr "Hľadať WWFF" #: application/views/logbookadvanced/index.php:725 msgid "Search Operator" -msgstr "" +msgstr "Vyhľadať operátora" #: application/views/logbookadvanced/index.php:744 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" -msgstr "" +msgstr "Varovanie! Ste si istý, že chcete vymazať označené QSO?" #: application/views/logbookadvanced/index.php:745 msgid " QSO(s) will be deleted" -msgstr "" +msgstr " QSO bude vymazané" #: application/views/logbookadvanced/index.php:749 msgid "With selected: " -msgstr "" +msgstr "So zvolenými: " #: application/views/logbookadvanced/index.php:753 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" -msgstr "" +msgstr "Aktualizácia z Callbooku" #: application/views/logbookadvanced/index.php:754 msgid "Queue Bureau" -msgstr "" +msgstr "Fronta bureau" #: application/views/logbookadvanced/index.php:755 msgid "Queue Direct" -msgstr "" +msgstr "Fronta direkt" #: application/views/logbookadvanced/index.php:756 msgid "Queue Electronic" -msgstr "" +msgstr "Fronta elektronické" #: application/views/logbookadvanced/index.php:757 msgid "Sent (Bureau)" -msgstr "" +msgstr "Odoslané (Bureau)" #: application/views/logbookadvanced/index.php:758 msgid "Sent (Direct)" -msgstr "" +msgstr "Odoslané (Direkt)" #: application/views/logbookadvanced/index.php:759 msgid "Sent (Electronic)" -msgstr "" +msgstr "Odoslané (Elektronicky)" #: application/views/logbookadvanced/index.php:760 msgid "Not Sent" -msgstr "" +msgstr "Neposlané" #: application/views/logbookadvanced/index.php:761 msgid "QSL Not Required" -msgstr "" +msgstr "QSL nie je potrebné" #: application/views/logbookadvanced/index.php:762 msgid "Not Received" -msgstr "" +msgstr "Nedoručené" #: application/views/logbookadvanced/index.php:763 msgid "Received (Bureau)" -msgstr "" +msgstr "Prijaté (Bureau)" #: application/views/logbookadvanced/index.php:764 msgid "Received (Direct)" -msgstr "" +msgstr "Prijaté (Direkt)" #: application/views/logbookadvanced/index.php:765 msgid "Received (Electronic)" -msgstr "" +msgstr "Prijaté (elektronicky)" #: application/views/logbookadvanced/index.php:766 msgid "Create ADIF" -msgstr "" +msgstr "Vytvor ADIF" #: application/views/logbookadvanced/index.php:767 msgid "Print Label" -msgstr "" +msgstr "Vytlačiť štítok" #: application/views/logbookadvanced/index.php:768 msgid "QSL Slideshow" -msgstr "" +msgstr "QSL slideshow" #: application/views/logbookadvanced/index.php:769 msgid "Fix CQ Zones" -msgstr "" +msgstr "Opraviť CQ zóny" #: application/views/logbookadvanced/index.php:770 msgid "Fix ITU Zones" -msgstr "" +msgstr "Opraviť ITU zóny" #: application/views/logbookadvanced/index.php:771 msgid "Fix Continent" -msgstr "" +msgstr "Oprav kontinent" #: application/views/logbookadvanced/index.php:780 #: application/views/oqrs/showrequests.php:58 msgid "# Results" -msgstr "" +msgstr "# výsledkov" #: application/views/logbookadvanced/index.php:801 msgid "Dupes" -msgstr "" +msgstr "Duplicity" #: application/views/logbookadvanced/index.php:817 msgid "Globe map" -msgstr "" +msgstr "Mapa sveta" #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" -msgstr "" +msgstr "de" #: application/views/logbookadvanced/index.php:893 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:626 msgid "QRZ" -msgstr "" +msgstr "QRZ" #: application/views/logbookadvanced/index.php:899 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" -msgstr "" +msgstr "QSL správa (S)" #: application/views/logbookadvanced/index.php:902 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" -msgstr "" +msgstr "QSL správa (R)" #: application/views/logbookadvanced/index.php:953 #: application/views/logbookadvanced/useroptions.php:166 @@ -12865,136 +13145,143 @@ msgstr "" #: application/views/logbookadvanced/index.php:962 msgid "Ant az" -msgstr "" +msgstr "Ant az" #: application/views/logbookadvanced/index.php:962 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" -msgstr "" +msgstr "Azimut antény" #: application/views/logbookadvanced/index.php:965 msgid "Ant el" -msgstr "" +msgstr "Ant el" #: application/views/logbookadvanced/index.php:965 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" -msgstr "" +msgstr "Elevácia antény" #: application/views/logbookadvanced/index.php:971 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" -msgstr "" +msgstr "Výkon stanice" #: application/views/logbookadvanced/qslcarousel.php:59 #: application/views/qslcard/qslcarousel.php:25 msgid "QSL picture #" -msgstr "" +msgstr "QSL obrázok #" #: application/views/logbookadvanced/qslcarousel.php:67 #: application/views/qslcard/qslcarousel.php:32 msgid "Previous" -msgstr "" +msgstr "Predošlý" #: application/views/logbookadvanced/qslcarousel.php:71 #: application/views/qslcard/qslcarousel.php:36 msgid "Next" -msgstr "" +msgstr "Ďalší" #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" -msgstr "" +msgstr "Zahrnúť via" #: application/views/logbookadvanced/startatform.php:21 msgid "Include QSLMSG" -msgstr "" +msgstr "Zahrnúť QSLMSG" #: application/views/logbookadvanced/startatform.php:27 msgid "Include TNX message" -msgstr "" +msgstr "Zahrnúť správu TNX" #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " "country." msgstr "" +"Aktualizuj spojenia s informáciami o štáte/provincii na základe lokátorového " +"štvorca a krajiny DXCC." #: application/views/logbookadvanced/statedialog.php:3 msgid "" "This feature uses GeoJSON boundary data to determine the state/province from " "the gridsquare locator." msgstr "" +"Táto funkcia používa údaje o hraniciach vo formáte GeoJSON na určenie štátu/" +"provincie z lokátorovej siete." #: application/views/logbookadvanced/statedialog.php:4 msgid "Update will only set the state for QSOs where:" -msgstr "" +msgstr "Aktualizácia nastaví stav len pre QSO, kde:" #: application/views/logbookadvanced/statedialog.php:6 msgid "The state field is empty" -msgstr "" +msgstr "Pole štát je prázdne" #: application/views/logbookadvanced/statedialog.php:7 msgid "A gridsquare is present (at least 6 characters)" -msgstr "" +msgstr "Lokátor je zadaný (aspoň 6 znakov)" #: application/views/logbookadvanced/statedialog.php:8 msgid "The DXCC country supports state lookup" -msgstr "" +msgstr "DXCC krajina podporuje vyhľadávanie štátu" #: application/views/logbookadvanced/statedialog.php:10 msgid "Currently supported countries" -msgstr "" +msgstr "Aktuálne podporované krajiny" #: application/views/logbookadvanced/useroptions.php:16 msgid "Column" -msgstr "" +msgstr "Stĺpec" #: application/views/logbookadvanced/useroptions.php:200 msgctxt "Map Options" msgid "Layer" -msgstr "" +msgstr "Vrstva" #: application/views/logbookadvanced/useroptions.php:201 msgid "Default on" -msgstr "" +msgstr "Predvolene zapnuté" #: application/views/lookup/index.php:11 #: application/views/qso/award_tabs.php:53 msgid "US State" -msgstr "" +msgstr "Americký štát" #: application/views/lookup/index.php:13 msgid "LoTW user" -msgstr "" +msgstr "LoTW používateľ" #: application/views/lookup/index.php:77 msgid "Choose a State" -msgstr "" +msgstr "Vyber štát" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:77 #, php-format msgid "%d day ago" msgid_plural "%d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d deň dozadu" +msgstr[1] "%d dni dozadu" +msgstr[2] "%d dní dozadu" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:77 msgid "last upload" -msgstr "" +msgstr "posledné nahratie" #: application/views/lookup/lotwuser.php:14 msgid "No LoTW User" -msgstr "" +msgstr "Nie je LoTW používateľ" #: application/views/lotw/analysis.php:8 application/views/qrz/analysis.php:8 msgid "No data imported. please check selected date. Must be in the past!" msgstr "" +"Neboli importované žiadne dáta. Skontroluj vybraný dátum. Musí byť v " +"minulosti!" #: application/views/lotw/import.php:22 msgid "Upload a File" -msgstr "" +msgstr "Nahraj súbor" #: application/views/lotw/import.php:24 msgid "Download Report" diff --git a/application/locale/sl/LC_MESSAGES/messages.po b/application/locale/sl/LC_MESSAGES/messages.po index c09959ce4..eb5b94019 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-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -76,7 +76,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -134,8 +134,8 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -302,20 +302,20 @@ msgstr "" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "" @@ -505,58 +505,58 @@ msgstr "" msgid "Worked All States (WAS)" msgstr "" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "" +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + #: application/controllers/Awards.php:1048 #: application/controllers/Awards.php:1084 -msgid "Gridsquares worked" +msgid "Gridsquares confirmed by paper QSL" msgstr "" #: application/controllers/Awards.php:1049 #: application/controllers/Awards.php:1085 -msgid "Gridsquares confirmed on LoTW" -msgstr "" - -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 -msgid "Gridsquares confirmed by paper QSL" -msgstr "" - -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 msgid "Total Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -566,40 +566,40 @@ msgstr "" msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -750,7 +750,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1252,15 +1252,15 @@ msgstr "" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1285,16 +1285,16 @@ msgstr "" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1324,15 +1324,15 @@ msgstr "" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1371,9 +1371,9 @@ msgstr "" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1555,7 +1555,7 @@ msgstr "" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1676,9 +1676,9 @@ msgstr "" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1799,7 +1799,7 @@ msgstr "" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2306,8 +2306,8 @@ msgstr "" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2327,10 +2327,10 @@ msgstr "" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2423,9 +2423,9 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -2499,9 +2499,8 @@ msgstr "" msgid "Edit Station Location: " msgstr "" -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3342,93 +3341,93 @@ msgstr "" msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 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:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " "imported. It's invalid" msgstr "" -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3599,9 +3598,9 @@ msgstr "" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3639,8 +3638,8 @@ msgstr "" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4018,14 +4017,14 @@ msgstr "" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4107,15 +4106,15 @@ msgstr "" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4167,7 +4166,7 @@ msgstr "" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4177,9 +4176,9 @@ msgstr "" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4512,8 +4511,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "" @@ -4888,7 +4887,7 @@ msgstr "" #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -4993,7 +4992,7 @@ msgid "Permissions" msgstr "" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5073,12 +5072,12 @@ msgstr "" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5184,9 +5183,9 @@ msgstr "" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5405,9 +5404,9 @@ msgstr "" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "" @@ -5422,9 +5421,9 @@ msgstr "" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "" @@ -5438,9 +5437,9 @@ msgstr "" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "" @@ -5455,9 +5454,9 @@ msgstr "" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "" @@ -5466,7 +5465,7 @@ msgstr "" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5480,8 +5479,8 @@ msgstr "" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "" @@ -5492,12 +5491,12 @@ msgstr "" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5514,9 +5513,9 @@ msgstr "" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "" @@ -5532,9 +5531,9 @@ msgstr "" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "" @@ -5550,9 +5549,9 @@ msgstr "" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "" @@ -5611,9 +5610,9 @@ msgstr "" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "" @@ -5624,9 +5623,9 @@ msgstr "" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "" @@ -5635,14 +5634,14 @@ msgstr "" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6219,159 +6218,163 @@ msgid "" ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6420,7 +6423,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6683,16 +6686,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6703,7 +6706,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6712,23 +6715,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6767,11 +6770,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6779,7 +6787,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6788,19 +6796,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10478,10 +10486,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10931,98 +10939,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11030,57 +11038,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11651,6 +11659,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index 45ece622a..6d2cc048f 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-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6419,7 +6422,7 @@ msgid "Province" msgstr "" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "" @@ -6682,16 +6685,16 @@ msgstr "" msgid "Prefecture" msgstr "" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6702,7 +6705,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6711,23 +6714,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6766,11 +6769,16 @@ msgstr "" msgid "Hover over a state" msgstr "" -#: application/views/awards/was/index.php:24 -msgid "WAS Award" +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." msgstr "" #: application/views/awards/was/index.php:25 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6778,7 +6786,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6787,19 +6795,19 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "" @@ -10475,10 +10483,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10928,98 +10936,98 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11027,57 +11035,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "" @@ -11648,6 +11656,18 @@ msgstr "" msgid "Start printing at?" msgstr "" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/sr/LC_MESSAGES/messages.po b/application/locale/sr/LC_MESSAGES/messages.po index eeceb8056..7d23a77cc 100644 --- a/application/locale/sr/LC_MESSAGES/messages.po +++ b/application/locale/sr/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" "PO-Revision-Date: 2024-12-10 11:09+0000\n" "Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n" "Language-Team: Serbian = 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6585,7 +6588,7 @@ msgid "Province" msgstr "Provincije" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Nanesite miša iznad provincije" @@ -6874,16 +6877,16 @@ msgstr "Prikaži WAJA kartu" msgid "Prefecture" msgstr "Prefektura" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6894,7 +6897,7 @@ msgid "" "training, and they represent Dutch amateurs nationally and internationally." msgstr "" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6903,23 +6906,23 @@ msgid "" "country, promoting both national connectivity and operational skill." msgstr "" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "" @@ -6958,11 +6961,16 @@ msgstr "Država" msgid "Hover over a state" msgstr "Nanesite miša preko države" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "WAS diploma" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6973,7 +6981,7 @@ msgstr "" "radio-amaterima širom svijeta. U stogodišnjoj ARRL istoriji dolazilo je do " "redizajna sertifikata i programa u nameri da se program diploma usavrši." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6987,19 +6995,19 @@ msgstr "" "članovi ARRL da bi aplicirali za diplomu. Aplikanti van SAD su izuzeti od " "ovog pravila." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "Sve informacije i pravila o ARRL WAS diplomi možete naći %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Prikaži WAS kartu" @@ -10801,10 +10809,10 @@ msgid "QSL Date" msgstr "QSL datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11264,78 +11272,78 @@ msgstr "Informacija o verziji" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Opis:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Opis upita" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Vaš upit je sačuvan!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Uredi upite" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Sačuvani upiti:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Pokreni upit" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Sačuvani upiti" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Morate napraviti upit prije pretrage!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Izvoz u ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Upozorenje! Da li ste sigurni da želite obrisati ovaj sačuvani upit?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "Sačuvani upit je obrisan!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "Sačuvani upit ne može biti obrisan. Molim pokušajte ponovo!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "Opis upita je ažuriran!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Nešto je bilo pogrešno prilikom čuvanja. Molimo pokušajte ponovo!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11345,20 +11353,20 @@ msgstr "" "nije validna. Proverite koja DXCC je ispravna za ovu lokaciju. Ako ste " "sigurni da ste upisali tačne podatke, ignorišite ovo upozrenje." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Pozivni znak: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Broj: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Polja: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11366,57 +11374,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Polja" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "polje" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Ukupan broj" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSL karta za " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Upozorenje! Da li ste sigurni da želite izbrisati ovu QSL kartu?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL karta za " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Datoteka slike QSL karte" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Prednja strana QSL karte:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Zadnja strana QSL karte:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Dodajte dodatne QSOe na QSL kartu" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Nešto je pošlo naopako. Molimo pokušajte ponovo!" @@ -11996,6 +12004,18 @@ msgstr "" msgid "Start printing at?" msgstr "Započeti štampu u?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.mo b/application/locale/sv_SE/LC_MESSAGES/messages.mo index 3f5ecb105..6dfffb11f 100644 Binary files a/application/locale/sv_SE/LC_MESSAGES/messages.mo and b/application/locale/sv_SE/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 4b4723b6f..110bb7120 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -2,14 +2,14 @@ # Copyright (c) 2025 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. # This file is distributed under the MIT licence. # -# Fabian Berg , 2024. +# Fabian Berg , 2024, 2025. # "Jorgen Dahl, NU1T" , 2025. # "Erkin Mercan (TA4AQG-SP9AQG)" , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-28 09:48+0000\n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-11-29 21:48+0000\n" "Last-Translator: \"Jorgen Dahl, NU1T\" \n" "Language-Team: Swedish \n" @@ -79,7 +79,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -137,8 +137,8 @@ msgid "Activated Gridsquare Map" msgstr "Karta Aktiverade Lokatorrutor" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -305,20 +305,20 @@ msgstr "Diplom" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "Diplom - %s" @@ -508,58 +508,58 @@ msgstr "CQ WAZ (Worked All Zones)" msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "USA:s län" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "Loggvy - Län" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "Diplom - " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "Lokatorrutor kontaktade" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "Lokatorrutor bekräftade på LoTW" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "Lokatorrutor bekräftade av pappers-QSL" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" msgstr "Totalt antal Lokatorrutor kontaktade" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -569,40 +569,40 @@ msgstr "Fred Fish Memorial Award (FFMA)" msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "Diplom - SIG - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "ITU-zoner" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -755,7 +755,7 @@ msgstr "Ingen användare har konfigurerat Clublog." #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1270,15 +1270,15 @@ msgstr "Loggbok" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1303,16 +1303,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1342,15 +1342,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1389,9 +1389,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1573,7 +1573,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1694,9 +1694,9 @@ msgstr "Avstånd" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1817,7 +1817,7 @@ msgstr "Operatör" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2335,8 +2335,8 @@ msgstr "Standard (klicka för att släppa)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2356,10 +2356,10 @@ msgstr "Redigera" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2452,9 +2452,9 @@ msgstr "Du har inga stationplatser. Gå %s för att skapa en stationsplats!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "här" @@ -2530,9 +2530,8 @@ msgstr "Skapa stationsplats" msgid "Edit Station Location: " msgstr "Redigera stationsplats: " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3411,17 +3410,17 @@ msgstr "Ingen anropssignal angiven" msgid "DXCC has to be Numeric" msgstr "DXCC måste vara numerisk" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Fel anropssignal %s vid import av QSO med %s för %s: HOPPADES ÖVER" -#: application/models/Logbook_model.php:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "QSO kl" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3429,7 +3428,7 @@ msgstr "" "Du försökte importera ett QSO utan giltigt datum. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3437,7 +3436,7 @@ msgstr "" "Du försökte importera ett QSO utan angivet CALL. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3446,64 +3445,64 @@ msgstr "" "QSO på %s: Du försökte importera ett QSO utan angivet band. Detta QSO " "importerades inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dubblett för" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSO kunde inte matchas" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bekräftad av LoTW/Clublog/eQSL/Tävling" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "bekräftad av diplomansvarig" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "bekräftat genom korskontroll av DCL-data" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "bekräftelse väntar" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "obekräftad" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "Okänd" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "POTA-referens redan i loggen" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSO uppdaterad" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3672,9 +3671,9 @@ msgstr "Skillnad" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3712,8 +3711,8 @@ msgstr "Skillnad" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4091,14 +4090,14 @@ msgstr "Troposfärisk ducting" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4180,15 +4179,15 @@ msgstr "Bekräftelse" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4240,7 +4239,7 @@ msgstr "Minsta antal" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4250,9 +4249,9 @@ msgstr "Minsta antal" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4588,8 +4587,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "FARA" @@ -5013,7 +5012,7 @@ msgstr "Enkelt namn för att beskriva vad du använder detta API till." #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5129,7 +5128,7 @@ msgid "Permissions" msgstr "Behörighet" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5209,12 +5208,12 @@ msgstr "Skapa en skrivskyddad nyckel" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5333,9 +5332,9 @@ msgstr "Län bekräftade" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5561,9 +5560,9 @@ msgstr "Kontaktade" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Visa kontaktade" @@ -5578,9 +5577,9 @@ msgstr "Visa kontaktade" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Visa bekräftade" @@ -5594,9 +5593,9 @@ msgstr "Visa bekräftade" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Visa ej kontaktade" @@ -5611,9 +5610,9 @@ msgstr "Visa ej kontaktade" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "Visa QSO med QSL-typ" @@ -5622,7 +5621,7 @@ msgstr "Visa QSO med QSL-typ" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5636,8 +5635,8 @@ msgstr "QSL-kort" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabell" @@ -5648,12 +5647,12 @@ msgstr "Tabell" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5670,9 +5669,9 @@ msgstr "Karta" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Sammanfattning" @@ -5688,9 +5687,9 @@ msgstr "Sammanfattning" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Totalt kontaktade" @@ -5706,9 +5705,9 @@ msgstr "Totalt kontaktade" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "Totalt bekräftade" @@ -5779,9 +5778,9 @@ msgstr "DOK / SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Kontaktad / Bekräftad" @@ -5792,9 +5791,9 @@ msgstr "Kontaktad / Bekräftad" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Alla band" @@ -5803,14 +5802,14 @@ msgstr "Alla band" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6465,159 +6464,163 @@ msgid "" ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Kod" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "Fixa Delstat" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6675,7 +6678,7 @@ msgid "Province" msgstr "Provins" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Hovra över en provins" @@ -6986,16 +6989,16 @@ msgstr "Visa WAJA-karta" msgid "Prefecture" msgstr "Prefektur" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Provins" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "VRZA WAP Award" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7014,7 +7017,7 @@ msgstr "" "utbildning, och de representerar nederländska amatörer nationellt och " "internationellt." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7029,13 +7032,13 @@ msgstr "" "stationer över hela landet, vilket främjar både nationell anslutning och " "operativ skicklighet." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "Information om WAP Awards och dess regler finns %s." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7043,11 +7046,11 @@ msgstr "" "Fält som använts för detta diplom: DXCC (Måste vara Nederländerna) och STATE " "(Måste innehålla en giltig delstatsförkortning!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "Visa WAP-karta" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Provins" @@ -7095,11 +7098,16 @@ msgstr "Delstat" msgid "Hover over a state" msgstr "Hovra över en stat" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "WAS Award" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7111,7 +7119,7 @@ msgstr "" "ARRL:s 101:a år har de omdesignat certifikaten och programmet i hopp om att " "effektivisera och förbättra diplomprogrammet." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7125,13 +7133,13 @@ msgstr "" "vara medlemmar i ARRL för att ansöka om en WAS. Sökande utanför USA är " "undantagna från detta krav." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "All information och regler för ARRL WAS Award finns %s." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7139,7 +7147,7 @@ msgstr "" "Fält som använts för detta diplom: DXCC (Måste vara en av USA, Alaska eller " "Hawaii) och STATE (Måste innehålla en giltig amerikansk delstatsförkortning!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "Visa WAS-karta" @@ -9622,6 +9630,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Förlora inte din svit - Du har redan haft minst ett QSO de senaste %s " +"dagarna i rad." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -10992,10 +11002,10 @@ msgid "QSL Date" msgstr "QSL-datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11334,12 +11344,12 @@ msgstr "Nybörjare" #: application/views/interface_assets/footer.php:109 msgid "Technician" -msgstr "Tekniker" +msgstr "Technician" #: application/views/interface_assets/footer.php:111 #: application/views/interface_assets/header.php:117 msgid "Advanced" -msgstr "Avancerad" +msgstr "Advanced" #: application/views/interface_assets/footer.php:112 msgid "Extra" @@ -11430,11 +11440,11 @@ msgstr "WebSocket Radio" #: application/views/interface_assets/footer.php:133 msgid "Location is fetched from provided gridsquare" -msgstr "Platsen hämtas från angiven lokatorruta" +msgstr "Platsen beräknas från angiven lokatorruta" #: application/views/interface_assets/footer.php:134 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" -msgstr "Platsen hämtas från DXCC-koordinater (ingen lokatorruta angiven)" +msgstr "Platsen beräknas från DXCC-koordinater (ingen lokatorruta angiven)" #: application/views/interface_assets/footer.php:137 msgid "Working without CAT connection" @@ -11467,78 +11477,78 @@ msgstr "Versionsinformation" msgid "Failed to load the modal. Please try again." msgstr "Det gick inte att ladda modalen. Försök igen." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Beskrivning:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Frågebeskrivning" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Din förfrågan har sparats!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Redigera frågor" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Lagrade frågor:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Kör fråga" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Lagrade frågor" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Du måste göra en förfrågan innan du söker!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exportera till ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Öppna i den avancerade loggboken" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Varning! Är du säker på att du vill ta bort denna sparade fråga?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "Den sparade frågan har raderats!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "Den sparade frågan kunde inte raderas. Försök igen!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "Frågebeskrivningen har uppdaterats!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "Något gick fel med sparandet. Försök igen!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11548,20 +11558,20 @@ msgstr "" "vilken DXCC som är korrekt för denna specifika plats. Om du är säker, " "ignorera denna varning." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Anropssignal: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Antal: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Lokatorrutor: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11569,57 +11579,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokatorrutor" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "lokatorruta" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Totalt antal" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSL-kort för " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Varning! Är du säker på att du vill ta bort detta QSL-kort?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kort" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL-kort för " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL-bildfil" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "Framsida QSL-kort:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "Baksida QSL-kort:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "Lägg till ytterligare QSOs på ett QSL-kort" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Något gick fel. Försök igen!" @@ -12198,6 +12208,18 @@ msgstr "Inkludera TNX-meddelande?" msgid "Start printing at?" msgstr "Börja skriva ut vid?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index c18070f59..f64991670 100644 Binary files a/application/locale/tr_TR/LC_MESSAGES/messages.mo and b/application/locale/tr_TR/LC_MESSAGES/messages.mo differ diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 86c0b8517..cf6f23e20 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-23 22:25+0000\n" -"Last-Translator: \"Erkin Mercan (TA4AQG-SP9AQG)\" \n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-11-28 13:13+0000\n" +"Last-Translator: Fabian Berg \n" "Language-Team: Turkish \n" "Language: tr_TR\n" @@ -83,7 +83,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -141,8 +141,8 @@ msgid "Activated Gridsquare Map" msgstr "Aktif Grid Konum Haritası" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -309,20 +309,20 @@ msgstr "Ödüller" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "Ödüller - %s" @@ -512,58 +512,58 @@ msgstr "CQ WAZ (Çalışılan Tüm Bölgeler)" msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "ABD Eyaletleri" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "Kayıt Görünümü - İlçeler" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "Ödüller - " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "Çalışılan Grid Karesi" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "Çalışılan Grid Karesi LoTW'de onaylandı" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "Çalışılan Grid Karesi kart QSL ile doğrulandı" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -573,40 +573,40 @@ msgstr "Fred Fish Memorial Award (FFMA)" msgid "SIG" msgstr "SIG (Special Interest Group)" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "Ödüller - SIG (Special Interest Group) - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "ITU Bölgeleri" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Tüm Kıtalarda Çalışıldı (WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -761,7 +761,7 @@ msgstr "Clublog'u hiçbir kullanıcı yapılandırmadı." #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1276,15 +1276,15 @@ msgstr "Kayıt defteri" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1309,16 +1309,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1348,15 +1348,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1395,9 +1395,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1579,7 +1579,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1700,9 +1700,9 @@ msgstr "Mesafe" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1823,7 +1823,7 @@ msgstr "Operatör" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2341,8 +2341,8 @@ msgstr "Varsayılan (atamayı kaldırmak için tıklayın)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2362,10 +2362,10 @@ msgstr "Düzenle" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2458,9 +2458,9 @@ msgstr "Hiç istasyon konumunuz yok. Oluşturmak için %s gidin!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "buradan" @@ -2536,9 +2536,8 @@ msgstr "İstasyon Konumu Oluştur" msgid "Edit Station Location: " msgstr "İstasyon Konumunu Güncelle: " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3419,17 +3418,17 @@ msgstr "Çağrı işareti girilmedi" msgid "DXCC has to be Numeric" msgstr "DXCC sayısal olmalıdır" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Yanlış çağrı işareti %s, %s ile %s için QSO içe aktarılırken: ATLANDI" -#: application/models/Logbook_model.php:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "Zaman" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3437,7 +3436,7 @@ msgstr "" "Geçerli tarih bilgisi içermeyen bir QSO'lar bulundu. Bu QSO'lar içe " "aktarılmadı." -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3445,7 +3444,7 @@ msgstr "" "Bir çağrı işareti olmadan bir QSO'yu içe aktarmaya çalıştın. Bu QSO içe " "aktarılmadı. Geçersiz" -#: application/models/Logbook_model.php:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3454,64 +3453,64 @@ msgstr "" "%s üzerindeki QSO: Bant bilgisi olmadan bir QSO içe aktarmayı denediniz. Bu " "QSO içe aktarılmadı, geçersiz." -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate geçersiz (YYYYMMDD)" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate geçersiz (YYYYMMDD)" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date geçersiz (YYYYAAGG)" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "İçin yinelenen" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSO eşleştirilemedi" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "LoTW/Clublog/eQSL/Yarışma tarafından onaylandı" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "Ödül yöneticisi tarafından onaylandı" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "DCL verileri karşılaştırılarak onaylandı" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "onay bekleniyor" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "onaylanmamış" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "Bilinmiyor" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "POTA referansı zaten logda mevcut" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSO güncellendi" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3680,9 +3679,9 @@ msgstr "Fark" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3720,8 +3719,8 @@ msgstr "Fark" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4099,14 +4098,14 @@ msgstr "Troposfer Kanal İletişimi" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4188,15 +4187,15 @@ msgstr "Onay" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4248,7 +4247,7 @@ msgstr "Minimum Sayı" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4258,9 +4257,9 @@ msgstr "Minimum Sayı" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4597,8 +4596,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "TEHLİKE" @@ -5026,7 +5025,7 @@ msgstr "Bu API'yi ne için kullandığınızı açıklayan basit bir açıklama. #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5142,7 +5141,7 @@ msgid "Permissions" msgstr "Yetkiler" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5222,12 +5221,12 @@ msgstr "Salt okunur anahtar oluştur" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5349,9 +5348,9 @@ msgstr "Onaylanan Eyaletler" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5578,9 +5577,9 @@ msgstr "Çalışılan" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Çalışılanları göster" @@ -5595,9 +5594,9 @@ msgstr "Çalışılanları göster" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Onaylananları göster" @@ -5611,9 +5610,9 @@ msgstr "Onaylananları göster" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Çalışılmamışları Göster" @@ -5628,9 +5627,9 @@ msgstr "Çalışılmamışları Göster" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "QSO'yu QSL Türü ile göster" @@ -5639,7 +5638,7 @@ msgstr "QSO'yu QSL Türü ile göster" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5653,8 +5652,8 @@ msgstr "QSL Kartı" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tablo" @@ -5665,12 +5664,12 @@ msgstr "Tablo" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5687,9 +5686,9 @@ msgstr "Harita" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Özet" @@ -5705,9 +5704,9 @@ msgstr "Özet" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Toplam çalışılan" @@ -5723,9 +5722,9 @@ msgstr "Toplam çalışılan" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "Toplam onaylanan" @@ -5795,9 +5794,9 @@ msgstr "DOK + SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Çalışıldı / Onaylandı" @@ -5808,9 +5807,9 @@ msgstr "Çalışıldı / Onaylandı" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Her bant" @@ -5819,14 +5818,14 @@ msgstr "Her bant" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -6483,159 +6482,163 @@ msgid "" ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:73 +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" +msgstr "" + +#: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" msgstr "" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" msgstr "" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" msgstr "" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" msgstr "" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" msgstr "" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" msgstr "" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "Kod" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" msgstr "" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" msgstr "" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" msgstr "" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" msgstr "" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" msgstr "" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" msgstr "" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" msgstr "" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" @@ -6693,7 +6696,7 @@ msgid "Province" msgstr "Şehir" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "Fareyi kullanarak bir şehrin üzerine gelin" @@ -7005,16 +7008,16 @@ msgstr "WAJA Haritasını Göster" msgid "Prefecture" msgstr "Şehir" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "Şehir" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "VRZA WAP Ödülü" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -7032,7 +7035,7 @@ msgstr "" "etkinlikler, yarışmalar ve eğitimler düzenlemede aktif olup, Hollandalı " "amatörleri ulusal ve uluslararası düzeyde temsil eder." -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -7046,13 +7049,13 @@ msgstr "" "operatörleri ülke çapında çeşitli istasyonlarla etkileşime girerek hem " "ulusal bağlantıyı hem de operasyonel beceriyi teşvik etmeye yönlendirir." -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "WAP Ödülleri ve kuralları hakkında bilgi %s bulunabilir." -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" @@ -7060,11 +7063,11 @@ msgstr "" "Bu Ödül için Dikkate Alınan Alanlar: DXCC (Hollanda olmalı) ve Şehir " "(Geçerli bir Şehir kısaltması içermelidir!)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "WAP Haritasını Göster" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "Şehir" @@ -7112,11 +7115,16 @@ msgstr "Eyalet" msgid "Hover over a state" msgstr "İmleci eyaletin üstüne getirin" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "WAS Ödülü" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -7128,7 +7136,7 @@ msgstr "" "ARRL, 101. yılında, ödül programını sadeleştirmek ve geliştirmek umuduyla " "sertifikaları ve programı yeniden tasarlamıştır." -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -7143,13 +7151,13 @@ msgstr "" "üyesi olmaları gerekmektedir. ABD dışından başvuranlar bu gereklilikten " "muaftır." -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "ARRL WAS Ödülü için tüm bilgiler ve kurallar %s bulunabilir." -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -7157,7 +7165,7 @@ msgstr "" "Bu Ödül için Dikkate Alınan Alanlar: DXCC (ABD, Alaska veya Hawaii'den biri " "olmalı) ve EYALET (Geçerli bir ABD eyalet kısaltması içermelidir!)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "WAS Haritasını Göster" @@ -9657,6 +9665,7 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Serinizi bozmayın – Son %s gündür her gün en az bir QSO gerçekleştirdiniz." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -11029,10 +11038,10 @@ msgid "QSL Date" msgstr "QSL Tarihi" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11499,79 +11508,79 @@ msgstr "Sürüm Bilgisi" msgid "Failed to load the modal. Please try again." msgstr "Modal yüklenemedi. Lütfen tekrar deneyin." -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "Açıklama:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "Sorgu Açıklaması" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "Sorgunuz kaydedildi!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Sorguları Düzenle" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "Kaydedilmiş sorgular:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Sorguyu Çalıştır" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "Kaydedilmiş sorgular" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "Arama yapmadan önce bir sorgu oluşturmanız gerekiyor!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "ADIF'e aktar" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Gelişmiş Logbook’ta Aç" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Uyarı! Bu kayıtlı sorguyu silmek istediğinizden emin misiniz?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "Kaydedilmiş sorgu silindi!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "Kaydedilmiş sorgu silinemedi. Lütfen tekrar deneyin!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "Sorgu açıklaması güncellendi!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "" "Kaydetme işlemi sırasında bir şeyler yanlış gitti. Lütfen tekrar deneyin!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11581,20 +11590,20 @@ msgstr "" "için doğru DXCC’yi kontrol edin. Eğer eminseniz, bu uyarıyı yok " "sayabilirsiniz." -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "Çağrı işareti: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "Adet: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "Grid: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11602,57 +11611,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Grid Karesi" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "grid" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "Toplam Sayı" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSL Kartın Alıcısı: " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Uyarı! Bu QSL kartını silmek istediğinizden emin misiniz?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL Kartı" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL Kartın Alıcısı: " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL kart görüntüsü" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "QSL Kartın Ön Yüzü:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "QSL Kartın Arka Yüzü:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "QSL Kartına ek QSO ekle" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin!" @@ -12230,6 +12239,18 @@ msgstr "Teşekkür mesajı eklensin mi?" msgid "Start printing at?" msgstr "Etiketin kağıttaki konumu" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 695a77f92..d0234ee5f 100644 Binary files a/application/locale/zh_CN/LC_MESSAGES/messages.mo and b/application/locale/zh_CN/LC_MESSAGES/messages.mo differ diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index 7b15c7681..20fc30a56 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -20,12 +20,13 @@ # Yoshida Kanae , 2025. # ShenRQ , 2025. # "ShenRQ(BH4FJN)" , 2025. +# Jerry , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-11-30 17:22+0000\n" -"PO-Revision-Date: 2025-11-24 07:14+0000\n" -"Last-Translator: BG9JDI \n" +"POT-Creation-Date: 2025-12-02 09:00+0000\n" +"PO-Revision-Date: 2025-12-01 07:02+0000\n" +"Last-Translator: YuanRetro \n" "Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" @@ -94,7 +95,7 @@ msgstr "" #: application/controllers/Qrz.php:287 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 -#: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 +#: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:201 #: application/controllers/Qso.php:332 application/controllers/Qso.php:353 #: application/controllers/Qso.php:376 application/controllers/Qso.php:676 @@ -152,8 +153,8 @@ msgid "Activated Gridsquare Map" msgstr "已激活网格地图" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1045 +#: application/controllers/Awards.php:1081 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -320,20 +321,20 @@ msgstr "奖项" #: application/controllers/Awards.php:631 #: application/controllers/Awards.php:707 #: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:832 -#: application/controllers/Awards.php:895 -#: application/controllers/Awards.php:980 -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1068 -#: application/controllers/Awards.php:1274 -#: application/controllers/Awards.php:1426 -#: application/controllers/Awards.php:1905 -#: application/controllers/Awards.php:2046 -#: application/controllers/Awards.php:2176 -#: application/controllers/Awards.php:2255 -#: application/controllers/Awards.php:2268 -#: application/controllers/Awards.php:2343 -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:831 +#: application/controllers/Awards.php:893 +#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1423 +#: application/controllers/Awards.php:1902 +#: application/controllers/Awards.php:2043 +#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2482 #, php-format msgid "Awards - %s" msgstr "奖项 - %s" @@ -523,58 +524,58 @@ msgstr "CQ WAZ(通联所有分区)" msgid "Worked All States (WAS)" msgstr "通联全部美国州奖(WAS)" -#: application/controllers/Awards.php:832 application/views/bands/index.php:55 +#: application/controllers/Awards.php:831 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:895 application/views/bands/index.php:51 +#: application/controllers/Awards.php:893 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:980 +#: application/controllers/Awards.php:978 msgid "IOTA (Island On The Air)" msgstr "IOTA(空中之岛)" -#: application/controllers/Awards.php:992 -#: application/controllers/Awards.php:1007 +#: application/controllers/Awards.php:990 +#: application/controllers/Awards.php:1005 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "美国县奖" -#: application/controllers/Awards.php:1022 +#: application/controllers/Awards.php:1020 msgid "Log View - Counties" msgstr "日志视图 - 县(美国)" -#: application/controllers/Awards.php:1029 +#: application/controllers/Awards.php:1027 msgid "Awards - " msgstr "奖项 - " -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1046 +#: application/controllers/Awards.php:1082 msgid "Gridsquares worked" msgstr "已通联网格" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1047 +#: application/controllers/Awards.php:1083 msgid "Gridsquares confirmed on LoTW" msgstr "LoTW 已确认网格" -#: application/controllers/Awards.php:1050 -#: application/controllers/Awards.php:1086 +#: application/controllers/Awards.php:1048 +#: application/controllers/Awards.php:1084 msgid "Gridsquares confirmed by paper QSL" msgstr "通过纸质QSL已确认网格" -#: application/controllers/Awards.php:1051 -#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1049 +#: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" -msgstr "" +msgstr "已确认网格的总数" -#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" msgstr "弗雷德·菲什纪念奖(FFMA)" -#: application/controllers/Awards.php:1274 +#: application/controllers/Awards.php:1272 #: application/views/interface_assets/header.php:196 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:321 @@ -584,44 +585,44 @@ msgstr "弗雷德·菲什纪念奖(FFMA)" msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1291 msgid "Awards - SIG - " msgstr "奖项 - SIG - " -#: application/controllers/Awards.php:1426 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2046 +#: application/controllers/Awards.php:2043 #: application/views/awards/itu/index.php:23 msgid "ITU Zones" msgstr "ITU 分区" -#: application/controllers/Awards.php:2176 +#: application/controllers/Awards.php:2173 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "通联世界大洲奖(WAC)" -#: application/controllers/Awards.php:2255 +#: application/controllers/Awards.php:2252 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2268 +#: application/controllers/Awards.php:2265 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2343 +#: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2487 +#: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" -msgstr "" +msgstr "“波兰”奖项" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:336 @@ -770,7 +771,7 @@ msgstr "未找到配置 Clublog 的用户。" #: application/views/awards/dxcc/index.php:132 #: application/views/awards/iota/index.php:80 #: application/views/awards/jcc/index.php:70 -#: application/views/awards/pl_polska/index.php:95 +#: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 #: application/views/awards/wae/index.php:71 #: application/views/awards/waja/index.php:75 @@ -1276,15 +1277,15 @@ msgstr "日志簿" #: application/views/awards/dxcc/index.php:116 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 -#: application/views/awards/pl_polska/index.php:79 +#: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 #: application/views/awards/wae/index.php:55 #: application/views/awards/waja/index.php:59 -#: application/views/awards/wap/index.php:56 +#: application/views/awards/wap/index.php:57 #: application/views/awards/wapc/index.php:44 -#: application/views/awards/was/index.php:60 +#: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 @@ -1309,16 +1310,16 @@ msgstr "QSL" #: application/views/awards/iota/index.php:68 #: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:58 -#: application/views/awards/pl_polska/index.php:83 +#: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 #: application/views/awards/wac/index.php:49 #: application/views/awards/wae/index.php:59 #: application/views/awards/waja/index.php:63 -#: application/views/awards/wap/index.php:60 +#: application/views/awards/wap/index.php:61 #: application/views/awards/wapc/index.php:48 -#: application/views/awards/was/index.php:64 +#: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:179 @@ -1348,15 +1349,15 @@ msgstr "LoTW" #: application/views/awards/iota/index.php:72 #: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:62 -#: application/views/awards/pl_polska/index.php:87 +#: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 #: application/views/awards/wac/index.php:53 #: application/views/awards/wae/index.php:63 #: application/views/awards/waja/index.php:67 -#: application/views/awards/wap/index.php:64 +#: application/views/awards/wap/index.php:65 #: application/views/awards/wapc/index.php:52 -#: application/views/awards/was/index.php:68 +#: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:187 @@ -1395,9 +1396,9 @@ msgstr "eQSL" #: application/views/awards/wac/index.php:111 #: application/views/awards/wae/index.php:122 #: application/views/awards/waja/index.php:95 -#: application/views/awards/wap/index.php:88 +#: application/views/awards/wap/index.php:89 #: application/views/awards/wapc/index.php:80 -#: application/views/awards/was/index.php:92 +#: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 @@ -1579,7 +1580,7 @@ msgstr "IOTA" #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 -#: application/views/awards/was/index.php:156 +#: application/views/awards/was/index.php:157 #: application/views/contesting/index.php:66 #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 @@ -1700,9 +1701,9 @@ msgstr "距离" #: application/views/awards/wac/index.php:64 #: application/views/awards/wae/index.php:77 #: application/views/awards/waja/index.php:81 -#: application/views/awards/wap/index.php:74 +#: application/views/awards/wap/index.php:75 #: application/views/awards/wapc/index.php:66 -#: application/views/awards/was/index.php:78 +#: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 @@ -1823,7 +1824,7 @@ msgstr "操作员" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:794 +#: application/views/interface_assets/footer.php:819 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:317 #: application/views/lookup/index.php:47 @@ -2329,8 +2330,8 @@ msgstr "默认(点击释放)" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:654 -#: application/views/interface_assets/footer.php:663 +#: application/views/interface_assets/footer.php:679 +#: application/views/interface_assets/footer.php:688 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:808 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2350,10 +2351,10 @@ msgstr "编辑" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2733 -#: application/views/interface_assets/footer.php:2751 -#: application/views/interface_assets/footer.php:2772 -#: application/views/interface_assets/footer.php:2790 +#: application/views/interface_assets/footer.php:2758 +#: application/views/interface_assets/footer.php:2776 +#: application/views/interface_assets/footer.php:2797 +#: application/views/interface_assets/footer.php:2815 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:824 #: application/views/lotw_views/index.php:134 @@ -2446,9 +2447,9 @@ msgstr "你尚未创建台站地址,请前往 %s 创建!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #: application/views/awards/wapc/index.php:10 -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" msgstr "这里" @@ -2522,9 +2523,8 @@ msgstr "创建台站地址" msgid "Edit Station Location: " msgstr "修改台站地址: " -#: application/controllers/Station.php:93 -#: application/views/awards/pl_polska/index.php:54 -#: application/views/csv/index.php:19 application/views/dxatlas/index.php:19 +#: application/controllers/Station.php:93 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:373 @@ -3217,15 +3217,15 @@ msgstr "QRZCQ 错误" #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" -msgstr "" +msgstr "损坏的 CBR 文件 - 未找到有效的交换信息或呼号" #: application/libraries/Cbr_parser.php:137 msgid "Broken CBR file - no QSO data found." -msgstr "" +msgstr "损坏的 CBR 文件 - 未发现QSO数据。" #: application/libraries/Cbr_parser.php:147 msgid "Broken CBR file - incomplete header found." -msgstr "" +msgstr "损坏的 CBR 文件 - 文件头不完整。" #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." @@ -3371,29 +3371,29 @@ msgstr "未提供呼号" msgid "DXCC has to be Numeric" msgstr "DXCC 应该是数字" -#: application/models/Logbook_model.php:4639 +#: application/models/Logbook_model.php:4642 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "导入 QSO 时出现错误:本台呼号 %s 对方呼号 %s %s,已跳过" -#: application/models/Logbook_model.php:4649 -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4652 +#: application/models/Logbook_model.php:4661 msgid "QSO on" msgstr "QSO 时间" -#: application/models/Logbook_model.php:4649 +#: application/models/Logbook_model.php:4652 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "导入QSO时使用了无效日期,该QSO未被导入。这是无效的" -#: application/models/Logbook_model.php:4658 +#: application/models/Logbook_model.php:4661 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" msgstr "试图导入的 QSO 不存在对方呼号(CALL)。此 QSO 无效,未导入" -#: application/models/Logbook_model.php:4707 +#: application/models/Logbook_model.php:4710 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3401,64 +3401,64 @@ msgid "" msgstr "" "在 %s 上的 QSO:你尝试导入一个未指定频段的 QSO。该 QSO 未被导入。此 QSO 无效" -#: application/models/Logbook_model.php:4972 +#: application/models/Logbook_model.php:4975 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4983 +#: application/models/Logbook_model.php:4986 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:5044 +#: application/models/Logbook_model.php:5047 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date 字段错误( YYYYMMDD)" -#: application/models/Logbook_model.php:5419 +#: application/models/Logbook_model.php:5422 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "内容重复" -#: application/models/Logbook_model.php:5484 -#: application/models/Logbook_model.php:5579 +#: application/models/Logbook_model.php:5487 +#: application/models/Logbook_model.php:5582 msgid "QSO could not be matched" msgstr "QSO 无法匹配" -#: application/models/Logbook_model.php:5492 +#: application/models/Logbook_model.php:5495 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" -#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5501 msgid "confirmed by award manager" msgstr "已经通过奖项管理员确认" -#: application/models/Logbook_model.php:5502 +#: application/models/Logbook_model.php:5505 msgid "confirmed by cross-check of DCL data" msgstr "已经通过 DCL 数据交叉检查确认" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5509 msgid "confirmation pending" msgstr "等待确认" -#: application/models/Logbook_model.php:5509 +#: application/models/Logbook_model.php:5512 msgid "unconfirmed" msgstr "未确认" -#: application/models/Logbook_model.php:5512 +#: application/models/Logbook_model.php:5515 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "未知" -#: application/models/Logbook_model.php:5582 +#: application/models/Logbook_model.php:5585 msgid "POTA reference already in log" msgstr "日志中已存在POTA数据" -#: application/models/Logbook_model.php:5585 +#: application/models/Logbook_model.php:5588 msgid "QSO updated" msgstr "QSO已上传" -#: application/models/Logbook_model.php:6392 +#: application/models/Logbook_model.php:6395 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3626,9 +3626,9 @@ msgstr "差异" #: application/views/awards/wae/index.php:110 #: application/views/awards/wae/index.php:125 #: application/views/awards/waja/index.php:98 -#: application/views/awards/wap/index.php:91 +#: application/views/awards/wap/index.php:92 #: application/views/awards/wapc/index.php:83 -#: application/views/awards/was/index.php:95 +#: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 @@ -3666,8 +3666,8 @@ msgstr "差异" #: application/views/gridmap/index.php:137 #: application/views/gridmap/index.php:151 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1618 -#: application/views/interface_assets/footer.php:1757 +#: application/views/interface_assets/footer.php:1643 +#: application/views/interface_assets/footer.php:1782 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -4045,14 +4045,14 @@ msgstr "Tropospheric ducting" #: application/views/awards/iota/index.php:159 #: application/views/awards/itu/index.php:117 #: application/views/awards/jcc/index.php:115 -#: application/views/awards/pl_polska/index.php:104 +#: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 #: application/views/awards/wac/index.php:136 #: application/views/awards/wae/index.php:147 #: application/views/awards/waja/index.php:120 -#: application/views/awards/wap/index.php:113 +#: application/views/awards/wap/index.php:114 #: application/views/awards/wapc/index.php:105 -#: application/views/awards/was/index.php:117 +#: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 #: application/views/distances/index.php:79 @@ -4134,15 +4134,15 @@ msgstr "确认" #: application/views/awards/iota/index.php:76 #: application/views/awards/itu/index.php:72 #: application/views/awards/jcc/index.php:66 -#: application/views/awards/pl_polska/index.php:91 +#: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 #: application/views/awards/wac/index.php:57 #: application/views/awards/wae/index.php:67 #: application/views/awards/waja/index.php:71 -#: application/views/awards/wap/index.php:68 +#: application/views/awards/wap/index.php:69 #: application/views/awards/wapc/index.php:56 -#: application/views/awards/was/index.php:72 +#: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 #: application/views/gridmap/index.php:195 application/views/user/edit.php:842 msgid "QRZ.com" @@ -4194,7 +4194,7 @@ msgstr "最低数量" #: application/views/awards/iota/index.php:302 #: application/views/awards/itu/index.php:202 #: application/views/awards/jcc/index.php:238 -#: application/views/awards/pl_polska/index.php:388 +#: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 #: application/views/awards/rac/index.php:195 #: application/views/awards/sig/index.php:45 @@ -4204,9 +4204,9 @@ msgstr "最低数量" #: application/views/awards/wac/index.php:200 #: application/views/awards/wae/index.php:217 #: application/views/awards/waja/index.php:206 -#: application/views/awards/wap/index.php:201 +#: application/views/awards/wap/index.php:202 #: application/views/awards/wapc/index.php:168 -#: application/views/awards/was/index.php:205 +#: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 #: application/views/callstats/index.php:128 @@ -4539,8 +4539,8 @@ msgstr "如果不选择,Wavelog 将会自动判断 QSO 的 DXCC。" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:614 -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:639 +#: application/views/interface_assets/footer.php:2515 msgid "DANGER" msgstr "警告" @@ -4774,6 +4774,7 @@ msgid "" "The CBR file contains a TRX number at the end of each QSO line (for multi-op " "stations)" msgstr "" +"CBR 文件中,在每条 QSO 行的末尾都有一个 TRX 编号(对于多操作员的站点而言)" #: application/views/adif/import.php:419 msgid "" @@ -4933,7 +4934,7 @@ msgstr "如用于描述用途的名字。" #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:674 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 @@ -5044,7 +5045,7 @@ msgid "Permissions" msgstr "权限" #: application/views/api/index.php:38 -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/club/permissions.php:226 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 @@ -5124,12 +5125,12 @@ msgstr "创建 只读 权限的 API Key" #: application/views/awards/wae/index.php:14 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 -#: application/views/awards/wap/index.php:19 -#: application/views/awards/wap/index.php:27 +#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:28 #: application/views/awards/wapc/index.php:6 #: application/views/awards/wapc/index.php:14 -#: application/views/awards/was/index.php:23 -#: application/views/awards/was/index.php:31 +#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:14 msgid "Award Info" @@ -5246,9 +5247,9 @@ msgstr "已确认的县" #: application/views/awards/wac/index.php:178 #: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 -#: application/views/awards/wap/index.php:180 +#: application/views/awards/wap/index.php:181 #: application/views/awards/wapc/index.php:145 -#: application/views/awards/was/index.php:184 +#: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 #: application/views/simplefle/index.php:27 @@ -5352,7 +5353,7 @@ msgstr "查看 CQ 分区地图" #: application/views/gridmap/index.php:28 #: application/views/logbookadvanced/index.php:276 msgid "Date Presets" -msgstr "" +msgstr "预设日期" #: application/views/awards/cq/index.php:57 #: application/views/awards/dxcc/index.php:53 @@ -5371,48 +5372,48 @@ msgstr "今天" #: application/views/gridmap/index.php:32 #: application/views/logbookadvanced/index.php:279 msgid "Yesterday" -msgstr "" +msgstr "昨日" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 #: application/views/logbookadvanced/index.php:280 msgid "Last 7 Days" -msgstr "" +msgstr "过去7天" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 #: application/views/logbookadvanced/index.php:281 msgid "Last 30 Days" -msgstr "" +msgstr "过去30天" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 #: application/views/logbookadvanced/index.php:282 msgid "This Month" -msgstr "" +msgstr "这个月" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 #: application/views/logbookadvanced/index.php:283 msgid "Last Month" -msgstr "" +msgstr "上个月" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 #: application/views/logbookadvanced/index.php:284 msgid "This Year" -msgstr "" +msgstr "今年" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 #: application/views/logbookadvanced/index.php:285 msgid "Last Year" -msgstr "" +msgstr "去年" #: application/views/awards/cq/index.php:65 #: application/views/awards/dxcc/index.php:61 @@ -5473,9 +5474,9 @@ msgstr "已通联" #: application/views/awards/wac/index.php:27 #: application/views/awards/wae/index.php:37 #: application/views/awards/waja/index.php:41 -#: application/views/awards/wap/index.php:38 +#: application/views/awards/wap/index.php:39 #: application/views/awards/wapc/index.php:26 -#: application/views/awards/was/index.php:42 +#: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "显示已通联" @@ -5490,9 +5491,9 @@ msgstr "显示已通联" #: application/views/awards/wac/index.php:31 #: application/views/awards/wae/index.php:41 #: application/views/awards/waja/index.php:45 -#: application/views/awards/wap/index.php:42 +#: application/views/awards/wap/index.php:43 #: application/views/awards/wapc/index.php:30 -#: application/views/awards/was/index.php:46 +#: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "显示已确认" @@ -5506,9 +5507,9 @@ msgstr "显示已确认" #: application/views/awards/wac/index.php:35 #: application/views/awards/wae/index.php:45 #: application/views/awards/waja/index.php:49 -#: application/views/awards/wap/index.php:46 +#: application/views/awards/wap/index.php:47 #: application/views/awards/wapc/index.php:34 -#: application/views/awards/was/index.php:50 +#: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "显示未通联" @@ -5523,9 +5524,9 @@ msgstr "显示未通联" #: application/views/awards/wac/index.php:41 #: application/views/awards/wae/index.php:51 #: application/views/awards/waja/index.php:55 -#: application/views/awards/wap/index.php:52 +#: application/views/awards/wap/index.php:53 #: application/views/awards/wapc/index.php:40 -#: application/views/awards/was/index.php:56 +#: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" msgstr "显示 QSL 分类下的 QSO" @@ -5534,7 +5535,7 @@ msgstr "显示 QSL 分类下的 QSO" #: application/views/awards/iota/index.php:64 #: application/views/awards/itu/index.php:60 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2494 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 @@ -5548,8 +5549,8 @@ msgstr "QSL 卡片" #: application/views/awards/itu/index.php:128 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 -#: application/views/awards/wap/index.php:125 -#: application/views/awards/was/index.php:129 +#: application/views/awards/wap/index.php:126 +#: application/views/awards/was/index.php:130 msgid "Table" msgstr "表格" @@ -5560,12 +5561,12 @@ msgstr "表格" #: application/views/awards/iota/index.php:174 #: application/views/awards/itu/index.php:131 #: application/views/awards/jcc/index.php:131 -#: application/views/awards/pl_polska/index.php:199 +#: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 -#: application/views/awards/wap/index.php:128 -#: application/views/awards/was/index.php:132 +#: application/views/awards/wap/index.php:129 +#: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/index.php:813 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" @@ -5582,9 +5583,9 @@ msgstr "地图" #: application/views/awards/wac/index.php:169 #: application/views/awards/wae/index.php:185 #: application/views/awards/waja/index.php:174 -#: application/views/awards/wap/index.php:171 +#: application/views/awards/wap/index.php:172 #: application/views/awards/wapc/index.php:136 -#: application/views/awards/was/index.php:175 +#: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "概览" @@ -5600,9 +5601,9 @@ msgstr "概览" #: application/views/awards/wac/index.php:182 #: application/views/awards/wae/index.php:199 #: application/views/awards/waja/index.php:188 -#: application/views/awards/wap/index.php:184 +#: application/views/awards/wap/index.php:185 #: application/views/awards/wapc/index.php:150 -#: application/views/awards/was/index.php:188 +#: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "共通联" @@ -5618,9 +5619,9 @@ msgstr "共通联" #: application/views/awards/wac/index.php:189 #: application/views/awards/wae/index.php:206 #: application/views/awards/waja/index.php:195 -#: application/views/awards/wap/index.php:191 +#: application/views/awards/wap/index.php:192 #: application/views/awards/wapc/index.php:157 -#: application/views/awards/was/index.php:195 +#: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" msgstr "共确认" @@ -5686,9 +5687,9 @@ msgstr "DOK + SDOK" #: application/views/awards/rac/index.php:28 #: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:37 -#: application/views/awards/wap/index.php:34 +#: application/views/awards/wap/index.php:35 #: application/views/awards/wapc/index.php:22 -#: application/views/awards/was/index.php:38 +#: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "通联过 / 已确认" @@ -5699,9 +5700,9 @@ msgstr "通联过 / 已确认" #: application/views/awards/wac/index.php:67 #: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 -#: application/views/awards/wap/index.php:77 +#: application/views/awards/wap/index.php:78 #: application/views/awards/wapc/index.php:69 -#: application/views/awards/was/index.php:81 +#: application/views/awards/was/index.php:82 msgid "Every band" msgstr "各个频段" @@ -5710,14 +5711,14 @@ msgstr "各个频段" #: application/views/awards/iota/index.php:158 #: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 -#: application/views/awards/pl_polska/index.php:103 +#: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 #: application/views/awards/wac/index.php:135 #: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 -#: application/views/awards/wap/index.php:112 +#: application/views/awards/wap/index.php:113 #: application/views/awards/wapc/index.php:104 -#: application/views/awards/was/index.php:116 +#: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 #: application/views/logbookadvanced/index.php:828 @@ -5930,7 +5931,7 @@ msgstr "前缀" #: application/views/awards/dxcc/index.php:378 msgid "No results found for your search criteria. Please try again." -msgstr "" +msgstr "根据您的搜索条件,未找到相关结果。请再试一次。" #: application/views/awards/ffma/index.php:11 #: application/views/interface_assets/header.php:294 @@ -6296,11 +6297,11 @@ msgstr "卫星" #: application/views/awards/pl_polska/index.php:3 msgid "Polish Voivodeships" -msgstr "" +msgstr "波兰省(或州)" #: application/views/awards/pl_polska/index.php:4 msgid "Hover over a voivodeship" -msgstr "" +msgstr "悬停在一个省(波兰)上" #: application/views/awards/pl_polska/index.php:38 msgid "" @@ -6308,6 +6309,8 @@ msgid "" "contacts with stations operating from all 16 Polish voivodeships " "(provinces). Valid from January 1, 1999." msgstr "" +"Polska Award(波兰奖)由波兰业余无线电联盟(PZK)颁发,旨在表彰与来自波兰所" +"有 16 个省(地区)的电台进行的通信活动。该奖项自 1999 年 1 月 1 日起生效。" #: application/views/awards/pl_polska/index.php:39 msgid "" @@ -6315,177 +6318,191 @@ msgid "" "(RTTY/PSK/FSK), and individual bands (160M-2M). Classes: Basic (1 QSO/voiv), " "Bronze (3), Silver (7), Gold (12). All 16 voivodeships required." msgstr "" +"奖项类别:混合类(所有模式/频段)、话务类(SSB/AM/FM/SSTV),CW,数字模式" +"(RTTY/波PSK/FSK),以及单个频段(160M - 2M)。等级:基础级(1 次通话/省)," +"铜牌级(3 次),银牌级(7 次),金牌级(12 次)。所有 16 个省均需参加。" #: application/views/awards/pl_polska/index.php:40 #, php-format msgid "Official rules and information: %s" -msgstr "" +msgstr "官方规则及信息:%s" #: application/views/awards/pl_polska/index.php:40 msgid "PZK Polska Award Rules" -msgstr "" +msgstr "PZK 波兰奖规则" #: application/views/awards/pl_polska/index.php:41 msgid "" "Requirements: COL_STATE (voivodeship code), COL_DXCC=269 (Poland), QSO date " ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" +"要求:COL_STATE(省代码)、COL_DXCC=269(波兰)、QSO 日期 >= 1999 年 1 月 1 " +"日。不得包含跨频段/跨模式/中继站的通联。" -#: application/views/awards/pl_polska/index.php:73 -msgid "Confirmation methods" +#: application/views/awards/pl_polska/index.php:54 +msgid "Station Logbook" msgstr "" -#: application/views/awards/pl_polska/index.php:74 +#: application/views/awards/pl_polska/index.php:62 +msgid "Confirmation methods" +msgstr "确认方式" + +#: application/views/awards/pl_polska/index.php:63 msgid "" "According to official award rules, paper QSL cards or LoTW confirmations are " "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" +"根据官方的奖励规定,纸质的 QSL 卡或 LOTW 确认可用于申请奖励。其他数字确认函仅" +"在此处列出仅供追踪之用。" -#: application/views/awards/pl_polska/index.php:117 +#: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" -msgstr "" +msgstr "奖项类别" -#: application/views/awards/pl_polska/index.php:119 +#: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" +"波兰奖项的类别是根据与所有 16 个省中每个省的确认通联次数的最低值来确定的:" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" -msgstr "" +msgstr "1 QSO 来自省内" -#: application/views/awards/pl_polska/index.php:123 +#: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" -msgstr "" +msgstr "基础级" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" -msgstr "" +msgstr "3 QSOs 来自省内" -#: application/views/awards/pl_polska/index.php:124 +#: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" -msgstr "" +msgstr "铜级(3rd)" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" -msgstr "" +msgstr "7 QSOs 来自省内" -#: application/views/awards/pl_polska/index.php:129 +#: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" -msgstr "" +msgstr "白银级(2nd)" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" -msgstr "" +msgstr "12 QSOs 来自省内" -#: application/views/awards/pl_polska/index.php:130 +#: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" -msgstr "" +msgstr "黄金级(1st)" -#: application/views/awards/pl_polska/index.php:155 +#: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" -msgstr "" +msgstr "恭喜🎉!" -#: application/views/awards/pl_polska/index.php:156 +#: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" -msgstr "" +msgstr "您有权获得以下奖项类别奖项" -#: application/views/awards/pl_polska/index.php:189 +#: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" -msgstr "" +msgstr "按模式分类QSO" -#: application/views/awards/pl_polska/index.php:194 +#: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" -msgstr "" +msgstr "按频段分类QSO" -#: application/views/awards/pl_polska/index.php:213 -#: application/views/awards/pl_polska/index.php:284 +#: application/views/awards/pl_polska/index.php:202 +#: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" -msgstr "" +msgstr "省(或州)" -#: application/views/awards/pl_polska/index.php:214 -#: application/views/awards/pl_polska/index.php:285 +#: application/views/awards/pl_polska/index.php:203 +#: application/views/awards/pl_polska/index.php:274 #: application/views/awards/wapc/index.php:119 msgid "Code" msgstr "代码" -#: application/views/awards/pl_polska/index.php:215 -#: application/views/awards/pl_polska/index.php:356 +#: application/views/awards/pl_polska/index.php:204 +#: application/views/awards/pl_polska/index.php:345 msgid "MIXED" -msgstr "" +msgstr "MIXED(混合)" -#: application/views/awards/pl_polska/index.php:216 -#: application/views/awards/pl_polska/index.php:357 +#: application/views/awards/pl_polska/index.php:205 +#: application/views/awards/pl_polska/index.php:346 msgid "PHONE" -msgstr "" +msgstr "PHONE(话务)" -#: application/views/awards/pl_polska/index.php:217 -#: application/views/awards/pl_polska/index.php:358 +#: application/views/awards/pl_polska/index.php:206 +#: application/views/awards/pl_polska/index.php:347 #: application/views/bandmap/list.php:270 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" -#: application/views/awards/pl_polska/index.php:218 -#: application/views/awards/pl_polska/index.php:359 +#: application/views/awards/pl_polska/index.php:207 +#: application/views/awards/pl_polska/index.php:348 msgid "DIGI" -msgstr "" +msgstr "DIGI(数字)" -#: application/views/awards/pl_polska/index.php:249 -#: application/views/awards/pl_polska/index.php:321 +#: application/views/awards/pl_polska/index.php:238 +#: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" -msgstr "" +msgstr "全部省区" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" -msgstr "" +msgstr "Bravo! 你可以申请" -#: application/views/awards/pl_polska/index.php:263 -#: application/views/awards/pl_polska/index.php:335 +#: application/views/awards/pl_polska/index.php:252 +#: application/views/awards/pl_polska/index.php:324 msgid "category award!" -msgstr "" +msgstr "类别奖状!" -#: application/views/awards/pl_polska/index.php:353 +#: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" -msgstr "" +msgstr "奖项类别:" -#: application/views/awards/pl_polska/index.php:355 +#: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" -msgstr "" +msgstr "模式类别" -#: application/views/awards/pl_polska/index.php:361 +#: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" -msgstr "" +msgstr "频段分类" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 msgid "Fix State" -msgstr "" +msgstr "修正省/州" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" -msgstr "" +msgstr "日志簿高级设置" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" +"此奖项会使用您日志簿中的“国家”栏信息。请确保所有与波兰相关的 SP(Poland)通联" +"都填写了这一栏的内容。" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Tip:" -msgstr "" +msgstr "Tip:" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "Use" -msgstr "" +msgstr "使用" -#: application/views/awards/pl_polska/index.php:383 +#: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." -msgstr "" +msgstr "从梅登黑德的定位信息中自动填充省(或州)名。" #: application/views/awards/pota/index.php:7 msgid "POTA Awards" @@ -6537,7 +6554,7 @@ msgid "Province" msgstr "省" #: application/views/awards/rac/index.php:4 -#: application/views/awards/wap/index.php:4 +#: application/views/awards/wap/index.php:5 msgid "Hover over a province" msgstr "鼠标停留到一个省" @@ -6826,16 +6843,16 @@ msgstr "显示 WAJA 地图" msgid "Prefecture" msgstr "县" -#: application/views/awards/wap/index.php:3 +#: application/views/awards/wap/index.php:4 msgctxt "The Netherlands Province" msgid "Province" msgstr "省份" -#: application/views/awards/wap/index.php:20 +#: application/views/awards/wap/index.php:21 msgid "VRZA WAP Award" msgstr "荷兰业余无线电协会通联各省奖状" -#: application/views/awards/wap/index.php:21 +#: application/views/awards/wap/index.php:22 msgid "" "The Netherlands spans approximately 300 km from North to South and about 200 " "km from East to West. Of the country's 18 million inhabitants, around 11,500 " @@ -6850,7 +6867,7 @@ msgstr "" "究协会)和 VRZA(荷兰业余无线电爱好者协会)。这两个组织都积极组织活动、比赛和" "培训,并在国内和国际上代表荷兰业余爱好者。" -#: application/views/awards/wap/index.php:22 +#: application/views/awards/wap/index.php:23 msgid "" "The VRZA (Vereniging voor Radio Zend Amateurs) offers the Worked All " "Provinces (WAP) award to amateur radio operators who have confirmed contacts " @@ -6862,23 +6879,23 @@ msgstr "" "联各省(WAP)奖状。这个奖状鼓励操作员与荷兰各地的电台通联,并促进全国连通和运" "营技能。" -#: application/views/awards/wap/index.php:23 +#: application/views/awards/wap/index.php:24 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "关于 WAP 奖项及其规则的信息可以在 %s 找到。" -#: application/views/awards/wap/index.php:24 +#: application/views/awards/wap/index.php:25 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "本奖项所需要的字段:DXCC(必须是荷兰)和州(必须包含有效的省简称)" -#: application/views/awards/wap/index.php:115 +#: application/views/awards/wap/index.php:116 msgid "Show WAP Map" msgstr "显示 WAP 地图" -#: application/views/awards/wap/index.php:152 +#: application/views/awards/wap/index.php:153 #: application/views/awards/wapc/index.php:120 msgid "Province" msgstr "省份" @@ -6921,11 +6938,16 @@ msgstr "州" msgid "Hover over a state" msgstr "鼠标停留到一个州" -#: application/views/awards/was/index.php:24 +#: application/views/awards/was/index.php:5 +#: application/views/awards/was/index.php:166 +msgid "inc." +msgstr "" + +#: application/views/awards/was/index.php:25 msgid "WAS Award" msgstr "WAS 奖状" -#: application/views/awards/was/index.php:25 +#: application/views/awards/was/index.php:26 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -6936,7 +6958,7 @@ msgstr "" "千计的奖项。在 ARRL 成立 101 周年之际,他们重新设计了证书和项目,希望能够精简" "和完善奖励项目。" -#: application/views/awards/was/index.php:26 +#: application/views/awards/was/index.php:27 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -6948,13 +6970,13 @@ msgstr "" "联系的业余爱好者 美国及其属地的业余爱好者必须是 ARRL 的成员才能申请 WAS 来自" "美国境外的申请人不受此要求的约束。" -#: application/views/awards/was/index.php:27 +#: application/views/awards/was/index.php:28 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "ARRL WAS奖项的所有信息和规则可以在 %s 找到。" -#: application/views/awards/was/index.php:28 +#: application/views/awards/was/index.php:29 msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" @@ -6962,7 +6984,7 @@ msgstr "" "本奖项所需要的字段:DXCC(必须是美国本土,阿拉斯加或夏威夷)和州(必须包含有" "效的州简称)" -#: application/views/awards/was/index.php:119 +#: application/views/awards/was/index.php:120 msgid "Show WAS Map" msgstr "显示WAS地图" @@ -7199,7 +7221,7 @@ msgstr "秒" #: application/views/bandmap/list.php:51 msgid "spots fetched" -msgstr "" +msgstr "spot 已获取" #: application/views/bandmap/list.php:52 msgid "showing" @@ -7739,7 +7761,7 @@ msgstr "切换 Geo 猎人(POTA/SOTA/IOTA/WWFF)" #: application/views/bandmap/list.php:462 msgid "Referenced" -msgstr "" +msgstr "已参考" #: application/views/bandmap/list.php:468 msgid "Open DX Map view" @@ -8801,7 +8823,7 @@ msgstr "由:" #: application/views/components/dxwaterfall.php:57 #, php-format msgid "Please wait %s second(s) before toggling DX Waterfall again." -msgstr "" +msgstr "请等待 %s 秒再重新开启 DX 瀑布图。" #: application/views/components/dxwaterfall.php:81 #: application/views/components/dxwaterfall.php:87 @@ -9384,7 +9406,7 @@ msgstr[0] "你今天有 %d 个 QSO" msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." -msgstr "" +msgstr "不要中断连续纪录 - 你已经连续 %s 天至少有一个 QSO 了。" #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -10714,10 +10736,10 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2734 -#: application/views/interface_assets/footer.php:2752 -#: application/views/interface_assets/footer.php:2773 -#: application/views/interface_assets/footer.php:2791 +#: application/views/interface_assets/footer.php:2759 +#: application/views/interface_assets/footer.php:2777 +#: application/views/interface_assets/footer.php:2798 +#: application/views/interface_assets/footer.php:2816 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -11171,78 +11193,78 @@ msgstr "版本信息" msgid "Failed to load the modal. Please try again." msgstr "加载模式失败。请重试。" -#: application/views/interface_assets/footer.php:504 +#: application/views/interface_assets/footer.php:529 msgid "Description:" msgstr "说明:" -#: application/views/interface_assets/footer.php:507 +#: application/views/interface_assets/footer.php:532 msgid "Query description" msgstr "查询说明" -#: application/views/interface_assets/footer.php:523 +#: application/views/interface_assets/footer.php:548 msgid "Your query has been saved!" msgstr "查询已储存!" -#: application/views/interface_assets/footer.php:525 +#: application/views/interface_assets/footer.php:550 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "编辑查询" -#: application/views/interface_assets/footer.php:527 +#: application/views/interface_assets/footer.php:552 msgid "Stored queries:" msgstr "存储的查询:" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "执行查询" -#: application/views/interface_assets/footer.php:544 -#: application/views/interface_assets/footer.php:680 -#: application/views/interface_assets/footer.php:750 +#: application/views/interface_assets/footer.php:569 +#: application/views/interface_assets/footer.php:705 +#: application/views/interface_assets/footer.php:775 msgid "Stored Queries" msgstr "存储的查询" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:755 +#: application/views/interface_assets/footer.php:574 +#: application/views/interface_assets/footer.php:780 msgid "You need to make a query before you search!" msgstr "你需要创建查询来进行搜索!" -#: application/views/interface_assets/footer.php:570 -#: application/views/interface_assets/footer.php:707 +#: application/views/interface_assets/footer.php:595 +#: application/views/interface_assets/footer.php:732 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "导出 ADIF" -#: application/views/interface_assets/footer.php:571 -#: application/views/interface_assets/footer.php:708 +#: application/views/interface_assets/footer.php:596 +#: application/views/interface_assets/footer.php:733 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "在详细日志中打开" -#: application/views/interface_assets/footer.php:615 +#: application/views/interface_assets/footer.php:640 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告!确定要删除存储的查询?" -#: application/views/interface_assets/footer.php:629 +#: application/views/interface_assets/footer.php:654 msgid "The stored query has been deleted!" msgstr "存储的查询已删除!" -#: application/views/interface_assets/footer.php:638 +#: application/views/interface_assets/footer.php:663 msgid "The stored query could not be deleted. Please try again!" msgstr "无法删除存储的查询,请重试!" -#: application/views/interface_assets/footer.php:664 +#: application/views/interface_assets/footer.php:689 msgid "The query description has been updated!" msgstr "查询说明已更新!" -#: application/views/interface_assets/footer.php:668 +#: application/views/interface_assets/footer.php:693 msgid "Something went wrong with the save. Please try again!" msgstr "存储出错,请重试!" -#: application/views/interface_assets/footer.php:797 +#: application/views/interface_assets/footer.php:822 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11251,20 +11273,20 @@ msgstr "" "请稍等,你选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果你十分确认,请忽" "略该警告。" -#: application/views/interface_assets/footer.php:850 +#: application/views/interface_assets/footer.php:875 #: application/views/logbookadvanced/index.php:792 msgid "Callsign: " msgstr "呼号: " -#: application/views/interface_assets/footer.php:851 +#: application/views/interface_assets/footer.php:876 msgid "Count: " msgstr "总数: " -#: application/views/interface_assets/footer.php:852 +#: application/views/interface_assets/footer.php:877 msgid "Grids: " msgstr "网格: " -#: application/views/interface_assets/footer.php:1170 +#: application/views/interface_assets/footer.php:1195 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -11272,57 +11294,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "网格" -#: application/views/interface_assets/footer.php:1545 -#: application/views/interface_assets/footer.php:1549 -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1689 -#: application/views/interface_assets/footer.php:1693 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1570 +#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1714 +#: application/views/interface_assets/footer.php:1718 +#: application/views/interface_assets/footer.php:1721 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1552 -#: application/views/interface_assets/footer.php:1696 +#: application/views/interface_assets/footer.php:1577 +#: application/views/interface_assets/footer.php:1721 msgid "Total count" msgstr "总数" -#: application/views/interface_assets/footer.php:2471 +#: application/views/interface_assets/footer.php:2496 msgid "QSL Card for " msgstr "QSL 卡片至 " -#: application/views/interface_assets/footer.php:2491 +#: application/views/interface_assets/footer.php:2516 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告!确定要删除这个 QSL 卡片吗?" -#: application/views/interface_assets/footer.php:2531 +#: application/views/interface_assets/footer.php:2556 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "电子 QSL 卡片" -#: application/views/interface_assets/footer.php:2533 +#: application/views/interface_assets/footer.php:2558 msgid "eQSL Card for " msgstr "eQSL 卡片至 " -#: application/views/interface_assets/footer.php:2745 -#: application/views/interface_assets/footer.php:2784 +#: application/views/interface_assets/footer.php:2770 +#: application/views/interface_assets/footer.php:2809 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL 图片文件" -#: application/views/interface_assets/footer.php:2764 +#: application/views/interface_assets/footer.php:2789 msgid "Front QSL Card:" msgstr "QSL 卡片正面:" -#: application/views/interface_assets/footer.php:2802 +#: application/views/interface_assets/footer.php:2827 msgid "Back QSL Card:" msgstr "QSL 卡片背面:" -#: application/views/interface_assets/footer.php:2813 #: application/views/interface_assets/footer.php:2838 +#: application/views/interface_assets/footer.php:2863 msgid "Add additional QSOs to a QSL Card" msgstr "向一张卡片添加额外的 QSO" -#: application/views/interface_assets/footer.php:2849 +#: application/views/interface_assets/footer.php:2874 msgid "Something went wrong. Please try again!" msgstr "出现了错误,请重试!" @@ -11449,7 +11471,7 @@ msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" -msgstr "" +msgstr "波兰" #: application/views/interface_assets/header.php:274 msgid "Switzerland" @@ -11893,6 +11915,18 @@ msgstr "是否包含 TNX 信息?" msgid "Start printing at?" msgstr "开始打印编号?" +#: application/views/logbookadvanced/callbookdialog.php:5 +msgid "" +"If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " +"data." +msgstr "" + +#: application/views/logbookadvanced/callbookdialog.php:6 +msgid "" +"We’ll keep the original value and add a more precise locator (e.g., JO90AB " +"or JO90AB12) when a match is confident." +msgstr "" + #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." @@ -12302,51 +12336,51 @@ msgstr "你需要选择至少 1 行来修正 CQ 分区!" #: application/views/logbookadvanced/index.php:31 msgid "You need to select at least 1 row to fix State!" -msgstr "" +msgstr "你需要选择至少一行来修正省/州!" #: application/views/logbookadvanced/index.php:32 msgid "State updated successfully!" -msgstr "" +msgstr "省/州更新成功!" #: application/views/logbookadvanced/index.php:33 msgid "There was a problem fixing State." -msgstr "" +msgstr "修正省/州时出现问题。" #: application/views/logbookadvanced/index.php:34 msgid "Fixing State" -msgstr "" +msgstr "修正省/州" #: application/views/logbookadvanced/index.php:35 #, php-format msgid "Fixing State (%s QSOs)" -msgstr "" +msgstr "修正省/州(%s 个QSO)" #: application/views/logbookadvanced/index.php:36 #, php-format msgid "Fixing State: %s remaining" -msgstr "" +msgstr "修正省/州:剩余 %s 个" #: application/views/logbookadvanced/index.php:37 msgid "Fixed" -msgstr "" +msgstr "已修正" #: application/views/logbookadvanced/index.php:38 #, php-format msgid "Fixed: %s" -msgstr "" +msgstr "已修正:%s 个" #: application/views/logbookadvanced/index.php:39 msgid "Skipped" -msgstr "" +msgstr "已跳过" #: application/views/logbookadvanced/index.php:40 #, php-format msgid "Skipped: %s, see details for skipped rows below" -msgstr "" +msgstr "已跳过:%s,下面是跳过行的详细信息" #: application/views/logbookadvanced/index.php:41 msgid "State Fix Complete" -msgstr "" +msgstr "省/州修正完毕" #: application/views/logbookadvanced/index.php:42 #, php-format @@ -12355,6 +12389,8 @@ msgid "" "countries, please create a ticket at %s with the GeoJSON file and desired " "letter coding for your country." msgstr "" +"并非所有的 DXCC 实体都有省/州支持。如果需要对其他国家的支持,请在 %s 处创建一" +"个工单,并附上 GeoJSON 文件和您所需的国家字母编码。" #: application/views/logbookadvanced/index.php:45 msgid "Only 1 row can be selected for Quickfilter!" @@ -12884,33 +12920,33 @@ msgstr "包含 TNX 信息" msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " "country." -msgstr "" +msgstr "根据网格定位和 DXCC 实体更新 QSO 的省/州信息。" #: application/views/logbookadvanced/statedialog.php:3 msgid "" "This feature uses GeoJSON boundary data to determine the state/province from " "the gridsquare locator." -msgstr "" +msgstr "此功能使用 GeoJSON 边界数据以从网格定位确定省/州。" #: application/views/logbookadvanced/statedialog.php:4 msgid "Update will only set the state for QSOs where:" -msgstr "" +msgstr "更新将仅给符合以下条件的 QSO 设置省/州:" #: application/views/logbookadvanced/statedialog.php:6 msgid "The state field is empty" -msgstr "" +msgstr "省/州字段为空" #: application/views/logbookadvanced/statedialog.php:7 msgid "A gridsquare is present (at least 6 characters)" -msgstr "" +msgstr "网格定位存在(至少6个字符)" #: application/views/logbookadvanced/statedialog.php:8 msgid "The DXCC country supports state lookup" -msgstr "" +msgstr "DXCC 实体支持省/州查询" #: application/views/logbookadvanced/statedialog.php:10 msgid "Currently supported countries" -msgstr "" +msgstr "当前支持的国家" #: application/views/logbookadvanced/useroptions.php:16 msgid "Column" @@ -13044,15 +13080,15 @@ msgstr "最后一次上传是" #: application/views/lotw_views/index.php:95 msgid "Last change:" -msgstr "" +msgstr "最后更改:" #: application/views/lotw_views/index.php:95 msgid "Serial number:" -msgstr "" +msgstr "序号:" #: application/views/lotw_views/index.php:97 msgid "Certificate superseded" -msgstr "" +msgstr "证书已被取代" #: application/views/lotw_views/index.php:100 msgid "Certificate expired" @@ -14437,7 +14473,7 @@ msgstr "无效的天线海拔高度:" #: application/views/qso/index.php:38 msgid "Please wait before saving another QSO" -msgstr "" +msgstr "请等待再保存另一个 QSO" #: application/views/qso/index.php:86 msgid "LIVE" diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 0819512a5..5a02ae264 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -2162,7 +2162,10 @@ class Logbook_model extends CI_Model { COL_RST_SENT, COL_SAT_NAME, COL_SAT_MODE, + COL_PROP_MODE, COL_QSL_RCVD, + COL_GRIDSQUARE, + COL_MY_GRIDSQUARE, COL_COMMENT, (select adif from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ADIF, (select entity from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ENTITY, diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index a059019a5..f283af058 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -472,14 +472,16 @@ class Logbookadvanced_model extends CI_Model { $where = "AND $where"; } - $limit = $searchCriteria['qsoresults']; - // Ensure limit has a valid value, default to 250 if empty or invalid - if (empty($limit) || !is_numeric($limit) || $limit <= 0) { - $limit = 250; + $where = trim(implode(" AND ", $conditions)); + if ($where != "") { + $where = "AND $where"; } - // Create a version of $where for the inner subquery with proper table alias - $whereInner = str_replace('qsos.', 'qsos_inner.', $where); + $limit = ''; + + if ($searchCriteria['qsoresults'] != 'All') { + $limit = 'limit ' . $searchCriteria['qsoresults']; + } $where2 = ''; @@ -494,25 +496,18 @@ class Logbookadvanced_model extends CI_Model { $sql = " SELECT qsos.*, dxcc_entities.*, lotw_users.*, station_profile.*, satellite.*, dxcc_entities.name as dxccname, mydxcc.name AS station_country, exists(select 1 from qsl_images where qsoid = qsos.COL_PRIMARY_KEY) as qslcount, coalesce(contest.name, qsos.col_contest_id) as contestname - FROM ( - SELECT qsos_inner.COL_PRIMARY_KEY - FROM " . $this->config->item('table_name') . " qsos_inner - INNER JOIN station_profile sp_inner ON qsos_inner.station_id = sp_inner.station_id - WHERE sp_inner.user_id = ? - $whereInner - ORDER BY qsos_inner.COL_TIME_ON desc, qsos_inner.COL_PRIMARY_KEY desc - LIMIT $limit - ) AS FilteredIDs - INNER JOIN " . $this->config->item('table_name') . " qsos ON qsos.COL_PRIMARY_KEY = FilteredIDs.COL_PRIMARY_KEY + FROM " . $this->config->item('table_name') . " qsos INNER JOIN station_profile ON qsos.station_id=station_profile.station_id LEFT OUTER JOIN satellite ON qsos.col_prop_mode='SAT' and qsos.COL_SAT_NAME = COALESCE(NULLIF(satellite.name, ''), NULLIF(satellite.displayname, '')) LEFT OUTER JOIN dxcc_entities ON qsos.col_dxcc = dxcc_entities.adif left outer join dxcc_entities mydxcc on qsos.col_my_dxcc = mydxcc.adif LEFT OUTER JOIN lotw_users ON qsos.col_call = lotw_users.callsign LEFT OUTER JOIN contest ON qsos.col_contest_id = contest.adifname - where 1 = 1 + WHERE station_profile.user_id = ? + $where $where2 ORDER BY qsos.COL_TIME_ON desc, qsos.COL_PRIMARY_KEY desc + $limit "; return $this->db->query($sql, $binding); @@ -675,32 +670,50 @@ class Logbookadvanced_model extends CI_Model { } } - public function updateQsoWithCallbookInfo($qsoID, $qso, $callbook, $station_gridsquare = null) { + public function updateQsoWithCallbookInfo($qsoID, $qso, $callbook, $gridsquareAccuracyCheck, $station_gridsquare = null) { $updatedData = array(); $updated = false; if (!empty($callbook['name']) && empty($qso['COL_NAME'])) { $updatedData['COL_NAME'] = $callbook['name']; $updated = true; } - if (!empty($callbook['gridsquare']) && empty($qso['COL_GRIDSQUARE']) && empty($qso['COL_VUCC_GRIDS'] )) { - if (strpos(trim($callbook['gridsquare']), ',') === false) { - $updatedData['COL_GRIDSQUARE'] = strtoupper(trim($callbook['gridsquare'])); - if ($station_gridsquare != null && $station_gridsquare != '') { - if (!$this->load->is_loaded('Qra')) { - $this->load->library('Qra'); + if (!empty($callbook['gridsquare']) && $callbook['geoloc'] != 'grid') { + if (empty($qso['COL_GRIDSQUARE']) && empty($qso['COL_VUCC_GRIDS'] )) { + if (strpos(trim($callbook['gridsquare']), ',') === false) { + $updatedData['COL_GRIDSQUARE'] = strtoupper(trim($callbook['gridsquare'])); + if ($station_gridsquare != null && $station_gridsquare != '') { + if (!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + $updatedData['COL_DISTANCE'] = $this->qra->distance($station_gridsquare, strtoupper(trim($callbook['gridsquare'])), 'K'); + } + } else { + $updatedData['COL_VUCC_GRIDS'] = strtoupper(trim($callbook['gridsquare'])); + if ($station_gridsquare != null && $station_gridsquare != '') { + if (!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + $updatedData['COL_DISTANCE'] = $this->qra->distance($station_gridsquare, strtoupper(trim($callbook['gridsquare'])), 'K'); } - $updatedData['COL_DISTANCE'] = $this->qra->distance($station_gridsquare, strtoupper(trim($callbook['gridsquare'])), 'K'); } - } else { - $updatedData['COL_VUCC_GRIDS'] = strtoupper(trim($callbook['gridsquare'])); - if ($station_gridsquare != null && $station_gridsquare != '') { - if (!$this->load->is_loaded('Qra')) { - $this->load->library('Qra'); + $updated = true; + } else if (!empty($qso['COL_GRIDSQUARE']) && $gridsquareAccuracyCheck == true) { + $existingGridsquare = $qso['COL_GRIDSQUARE']; + //Check if existing gridsquare is less accurate than callbook gridsquare + if (strlen(trim($callbook['gridsquare'])) > strlen(trim($existingGridsquare))) { + if ($existingGridsquare == substr($callbook['gridsquare'], 0, strlen($existingGridsquare))) { + //Callbook gridsquare is more accurate, update it + $updatedData['COL_GRIDSQUARE'] = strtoupper(trim($callbook['gridsquare'])); + if ($station_gridsquare != null && $station_gridsquare != '') { + if (!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + $updatedData['COL_DISTANCE'] = $this->qra->distance($station_gridsquare, strtoupper(trim($callbook['gridsquare'])), 'K'); + } + $updated = true; } - $updatedData['COL_DISTANCE'] = $this->qra->distance($station_gridsquare, strtoupper(trim($callbook['gridsquare'])), 'K'); } } - $updated = true; } if (!empty($callbook['city']) && empty($qso['COL_QTH'])) { $updatedData['COL_QTH'] = $callbook['city']; diff --git a/application/models/Was.php b/application/models/Was.php index c840be292..7a868f6cd 100644 --- a/application/models/Was.php +++ b/application/models/Was.php @@ -36,15 +36,17 @@ class was extends CI_Model { if ($postdata['worked'] != NULL) { $wasBand = $this->getWasWorked($location_list, $band, $postdata); foreach ($wasBand as $line) { - $bandWas[$line->col_state][$band] = ''; - $states[$line->col_state]['count']++; + $state = $this->normalizeState($line->col_state); // DC counts as MD + $bandWas[$state][$band] = ''; + $states[$state]['count']++; } } if ($postdata['confirmed'] != NULL) { $wasBand = $this->getWasConfirmed($location_list, $band, $postdata); foreach ($wasBand as $line) { - $bandWas[$line->col_state][$band] = ''; - $states[$line->col_state]['count']++; + $state = $this->normalizeState($line->col_state); // DC counts as MD + $bandWas[$state][$band] = ''; + $states[$state]['count']++; } } } @@ -112,7 +114,8 @@ class was extends CI_Model { function getSummaryByBand($band, $postdata, $location_list) { $bindings=[]; - $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; + // DC is combined with MD, so we use CASE to normalize + $sql = "SELECT count(distinct CASE WHEN thcv.col_state = 'DC' THEN 'MD' ELSE thcv.col_state END) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { @@ -148,7 +151,8 @@ class was extends CI_Model { function getSummaryByBandConfirmed($band, $postdata, $location_list) { $bindings=[]; - $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; + // DC is combined with MD, so we use CASE to normalize + $sql = "SELECT count(distinct CASE WHEN thcv.col_state = 'DC' THEN 'MD' ELSE thcv.col_state END) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { @@ -255,8 +259,16 @@ class was extends CI_Model { function addStateToQuery() { $sql = ''; $sql .= " and COL_DXCC in ('291', '6', '110')"; - $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; + // DC is combined with MD for WAS award + $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DC','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; return $sql; } + + /** + * Normalize state code - DC counts as MD for WAS award + */ + function normalizeState($state) { + return ($state === 'DC') ? 'MD' : $state; + } } ?> diff --git a/application/views/awards/pl_polska/index.php b/application/views/awards/pl_polska/index.php index d4d04e1e0..ce0181c67 100644 --- a/application/views/awards/pl_polska/index.php +++ b/application/views/awards/pl_polska/index.php @@ -51,20 +51,9 @@
- +
- result() as $station) { - if ($station->station_id == $active_station_id) { - $active_station = $station; - break; - } - } - if ($active_station) { - echo '' . htmlspecialchars($active_station->station_profile_name) . ''; - } - ?> +
diff --git a/application/views/awards/wap/index.php b/application/views/awards/wap/index.php index c8f3212a5..778dd73a2 100644 --- a/application/views/awards/wap/index.php +++ b/application/views/awards/wap/index.php @@ -1,5 +1,6 @@ diff --git a/application/views/awards/was/index.php b/application/views/awards/was/index.php index 70b1c1d50..b3496ee1c 100644 --- a/application/views/awards/was/index.php +++ b/application/views/awards/was/index.php @@ -2,6 +2,7 @@ var tileUrl="optionslib->get_option('option_map_tile_server');?>"; var lang_usa_state = ""; var lang_hover_over_a_state = ""; + var lang_inc = ""; +uri->segment(1) == "station") { ?> + + + + + + +uri->segment(1) == "logbooks") { ?> + + + uri->segment(1) == "debug") { ?>