diff --git a/application/controllers/Continents.php b/application/controllers/Continents.php index 53237f1b8..0d4886de2 100644 --- a/application/controllers/Continents.php +++ b/application/controllers/Continents.php @@ -7,9 +7,10 @@ class Continents extends CI_Controller { $this->load->model('user_model'); $this->load->model('bands'); $this->load->model('logbookadvanced_model'); + $this->load->model('gridmap_model'); $data['bands'] = $this->bands->get_worked_bands(); - $data['modes'] = $this->logbookadvanced_model->get_modes(); + $data['modes'] = $this->gridmap_model->get_worked_modes(); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { if($this->user_model->validate_session()) { @@ -18,7 +19,7 @@ class Continents extends CI_Controller { } else { redirect('user/login'); } - } + } // Render User Interface // Set Page Title @@ -29,7 +30,7 @@ class Continents extends CI_Controller { $this->load->view('continents/index'); $this->load->view('interface_assets/footer'); } - + public function get_continents() { diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 9ab424a85..b98d89b80 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -53,14 +53,14 @@ class Logbookadvanced extends CI_Controller { $pageData['modes'] = $this->logbookadvanced_model->get_modes(); $pageData['dxccarray'] = $this->logbook_model->fetchDxcc(); $pageData['iotaarray'] = $this->logbook_model->fetchIota(); - $pageData['sats'] = $this->bands->get_worked_sats(); + $pageData['sats'] = $this->logbookadvanced_model->get_worked_sats(); $pageData['orbits'] = $this->bands->get_worked_orbits(); $pageData['station_profile'] = $this->stations->all_of_user(); $pageData['active_station_info'] = $station_profile->row(); $pageData['homegrid'] = explode(',', $this->stations->find_gridsquare()); $pageData['active_station_id'] = $active_station_id; - $pageData['bands'] = $this->bands->get_worked_bands(); + $pageData['bands'] = $this->logbookadvanced_model->get_worked_bands(); // Get Date format if($this->session->userdata('user_date_format')) { diff --git a/application/controllers/Statistics.php b/application/controllers/Statistics.php index facb023c5..d19cc2080 100644 --- a/application/controllers/Statistics.php +++ b/application/controllers/Statistics.php @@ -110,6 +110,35 @@ class Statistics extends CI_Controller { echo json_encode($bandstats); } + public function get_operators() { + + //load logbook model + $this->load->model('logbook_model'); + + //define stats array + $operatorstats = array(); + + //get year if present + $yr = xss_clean($this->input->post('yr')) ?? 'All'; + + //load stats + $total_operators = $this->logbook_model->total_operators($yr); + + $i = 0; + + //convert to final form + if ($total_operators) { + foreach($total_operators->result() as $qso_numbers) { + $operatorstats[$i]['operator'] = $qso_numbers->operator; + $operatorstats[$i++]['count'] = $qso_numbers->count; + } + } + + //return as json + header('Content-Type: application/json'); + echo json_encode($operatorstats); + } + public function get_sat() { $this->load->model('logbook_model'); diff --git a/application/libraries/Qra.php b/application/libraries/Qra.php index 2df9a6521..acb5a3884 100644 --- a/application/libraries/Qra.php +++ b/application/libraries/Qra.php @@ -313,6 +313,7 @@ function qra2latlong($strQRA) { if ((strlen($strQRA) % 2 == 0) && (strlen($strQRA) <= 10)) { // Check if QRA is EVEN (the % 2 does that) and smaller/equal 8 $strQRA = strtoupper($strQRA); + if (strlen($strQRA) == 2) $strQRA .= "55"; // Only 2 Chars? Fill with center "55" if (strlen($strQRA) == 4) $strQRA .= "LL"; // Only 4 Chars? Fill with center "LL" as only A-R allowed if (strlen($strQRA) == 6) $strQRA .= "55"; // Only 6 Chars? Fill with center "55" if (strlen($strQRA) == 8) $strQRA .= "LL"; // Only 8 Chars? Fill with center "LL" as only A-R allowed diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 3ad771b8c..a47b955bc 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-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -585,7 +585,7 @@ msgstr "Notizen - Backup" #: application/views/bands/index.php:32 #: application/views/interface_assets/header.php:400 #: application/views/statistics/index.php:16 -#: application/views/statistics/index.php:65 +#: application/views/statistics/index.php:67 msgid "Bands" msgstr "Bänder" @@ -737,7 +737,7 @@ msgstr "Conteste" msgid "Update Contest" msgstr "Aktualisiere Contest" -#: application/controllers/Continents.php:25 +#: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 #: application/views/interface_assets/header.php:163 @@ -1310,8 +1310,8 @@ msgstr "Clublog" #: application/views/simplefle/index.php:157 #: application/views/statistics/antennaanalytics.php:31 #: application/views/statistics/index.php:15 -#: application/views/statistics/index.php:20 -#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:64 #: application/views/timeline/index.php:19 application/views/user/edit.php:244 #: application/views/user/edit.php:267 application/views/user/edit.php:290 #: application/views/user/edit.php:313 application/views/user/edit.php:337 @@ -1584,7 +1584,7 @@ msgstr "Distanz" #: application/views/simplefle/index.php:156 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/antennaanalytics.php:19 -#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:22 #: application/views/timeline/index.php:7 #: application/views/timeplotter/index.php:14 #: application/views/user/edit.php:242 application/views/user/edit.php:265 @@ -1631,6 +1631,7 @@ msgstr "Frequenz" #: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:116 +#: application/views/statistics/index.php:23 #: application/views/user/edit.php:255 application/views/user/edit.php:278 #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 @@ -2433,13 +2434,13 @@ msgstr "Bearbeite Export-Karte Optionen" msgid "Statistics" msgstr "Statistik" -#: application/controllers/Statistics.php:209 +#: application/controllers/Statistics.php:238 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "QSL-Statistiken" -#: application/controllers/Statistics.php:224 +#: application/controllers/Statistics.php:253 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" @@ -3002,23 +3003,23 @@ msgstr "HRDlog: Keine QSOs gefunden zum hochladen für Stationsrufzeichen: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Keine Stationsstandorte mit HRDlog Zugangsdaten gefunden." -#: application/models/Logbook_model.php:3875 +#: application/models/Logbook_model.php:3899 #, 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:3876 +#: application/models/Logbook_model.php:3900 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Schaue im %s für Tipps zu möglichen Fehlern in der ADIF-Datei." -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3026,62 +3027,62 @@ 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:4187 +#: application/models/Logbook_model.php:4211 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:4198 +#: application/models/Logbook_model.php:4222 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:4259 +#: application/models/Logbook_model.php:4283 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4279 +#: application/models/Logbook_model.php:4303 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Empfangs-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4300 +#: application/models/Logbook_model.php:4324 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Sende-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4581 +#: application/models/Logbook_model.php:4605 #: application/views/simplefle/index.php:40 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:4642 +#: application/models/Logbook_model.php:4666 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:4648 +#: application/models/Logbook_model.php:4672 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4653 +#: application/models/Logbook_model.php:4677 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:4656 +#: application/models/Logbook_model.php:4680 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:4659 +#: application/models/Logbook_model.php:4683 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:4662 +#: application/models/Logbook_model.php:4686 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:4665 +#: application/models/Logbook_model.php:4689 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5475 +#: application/models/Logbook_model.php:5499 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3164,8 +3165,8 @@ msgstr "Kumulierte Anzahl gearbeiteter WAJA" #: application/views/dashboard/index.php:296 #: application/views/dayswithqso/index.php:41 #: application/views/dayswithqso/index.php:81 -#: application/views/statistics/index.php:18 -#: application/views/statistics/index.php:36 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:38 #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" @@ -3648,7 +3649,7 @@ msgstr "Anzeigen" #: application/views/satellite/skedtable.php:7 #: application/views/satellite/skedtable.php:56 #: application/views/sattimers/index.php:38 -#: application/views/statistics/index.php:22 +#: application/views/statistics/index.php:24 msgid "Satellite" msgstr "Satellit" @@ -6255,6 +6256,8 @@ msgstr "Kategorie 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 "Operatoren" @@ -7033,7 +7036,7 @@ msgid "VUCC Gridsquare" msgstr "VUCC Locator" #: application/views/continents/index.php:63 -#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:20 msgid "# of QSO's worked" msgstr "# gearbeitete QSOs" @@ -8929,8 +8932,8 @@ msgstr "Globale Optionen" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 -#: application/views/statistics/index.php:48 -#: application/views/statistics/index.php:102 +#: application/views/statistics/index.php:50 +#: application/views/statistics/index.php:111 msgid "Satellites" msgstr "Satelliten" @@ -9274,8 +9277,8 @@ msgid "Label types" msgstr "Etiketten-Typen" #: application/views/labels/index.php:81 -#: application/views/statistics/index.php:68 -#: application/views/statistics/index.php:105 +#: application/views/statistics/index.php:70 +#: application/views/statistics/index.php:114 #: application/views/widgets/qsos.php:3 msgid "QSOs" msgstr "QSOs" @@ -10227,7 +10230,7 @@ msgid "Category" msgstr "Kategorie" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 -#: application/views/qso/index.php:31 application/views/statistics/index.php:44 +#: application/views/qso/index.php:31 application/views/statistics/index.php:46 #: application/views/user/edit.php:169 msgid "General" msgstr "Allgemeines" @@ -12922,25 +12925,25 @@ msgid "Elevation" msgstr "Elevation" #: application/views/statistics/index.php:14 -#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:61 msgid "Years" msgstr "Jahre" -#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" msgstr "Anzahl der QSOs gearbeitet pro Jahr" -#: application/views/statistics/index.php:29 +#: application/views/statistics/index.php:31 msgid "Explore the logbook." msgstr "Logbuch untersuchen." -#: application/views/statistics/index.php:33 +#: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" msgstr "Alle Jahre" -#: application/views/statistics/index.php:71 -#: application/views/statistics/index.php:108 +#: application/views/statistics/index.php:76 +#: application/views/statistics/index.php:117 msgid "Unique callsigns" msgstr "Eindeutige Rufzeichen" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 1299f9bd3..f04bf244a 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-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Italian \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian , 2024. # Fabian Berg , 2024. # PE1PQX , 2025. +# Alexander , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-23 16:03+0000\n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" +"PO-Revision-Date: 2025-01-27 09:19+0000\n" "Last-Translator: PE1PQX \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,7 +127,7 @@ msgstr "" #: application/controllers/User_options.php:9 #: application/controllers/Webadif.php:91 application/models/Club_model.php:52 msgid "You're not allowed to do that!" -msgstr "" +msgstr "Je mag dat niet doen!" #: application/controllers/Accumulated.php:19 #: application/views/interface_assets/header.php:159 @@ -136,7 +137,7 @@ msgstr "Opgetelde statistieken" #: application/controllers/Activated_gridmap.php:10 #: application/views/activated_gridmap/index.php:5 msgid "Activated Gridsquare Map" -msgstr "Geaktiveerde Gridsquare Kaart" +msgstr "Kaart met geactiveerde Gridsquares" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:922 @@ -154,47 +155,47 @@ msgstr "Gridsquares" #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" -msgstr "Gridsquares bevestigd" +msgstr "Bevestigde gridsquares" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" -msgstr "Gridsquares niet bevestigd" +msgstr "Niet bevestigde gridsquares" #: application/controllers/Activated_gridmap.php:34 msgid "Total gridsquares activated" -msgstr "Totaal Gridsquares geactiveerd" +msgstr "Totaal geactiveerde gridsquares" #: application/controllers/Activated_gridmap.php:36 #: application/controllers/Gridmap.php:36 #: application/controllers/Visitor.php:390 msgid "Fields" -msgstr "" +msgstr "Vakken" #: application/controllers/Activated_gridmap.php:37 #: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" -msgstr "" +msgstr "Bevestigde vakken" #: application/controllers/Activated_gridmap.php:38 #: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" -msgstr "" +msgstr "Onbevestigde vakken" #: application/controllers/Activated_gridmap.php:39 #: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:393 msgid "Total fields worked" -msgstr "" +msgstr "Totaal aantal gewerkte vakken" #: application/controllers/Activators.php:20 #: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:149 msgid "Gridsquare Activators" -msgstr "Gridsquares acticators" +msgstr "Geactiveerde gridsquares" #: application/controllers/Activatorsmap.php:17 #: application/views/activators/index.php:2 @@ -226,7 +227,7 @@ msgstr "File soorten niet ondersteund" #: application/controllers/Adif.php:260 #: application/views/adif/import_failed.php:12 msgid "ADIF Import failed!" -msgstr "" +msgstr "ADIF importeren gefaald!" #: application/controllers/Adif.php:274 msgid "Station Profile not valid for User" @@ -264,30 +265,30 @@ msgstr "Wijzig API beschrijving" #: application/controllers/Api.php:56 #, php-format msgid "API Key %s description has been updated." -msgstr "API leutel %s beschrijving is gewijzigd" +msgstr "API sleutel %s beschrijving is gewijzigd." #: application/controllers/Api.php:68 msgid "Invalid API rights" -msgstr "" +msgstr "Ongeldige API rechten" #: application/controllers/Api.php:82 msgid "API Key generated" -msgstr "" +msgstr "API sleutel gegenereerd" #: application/controllers/Api.php:84 msgid "API Key could not be generated" -msgstr "" +msgstr "API sleutel kon niet worden gegenereerd" #: application/controllers/Api.php:98 #, php-format msgid "API Key %s has been deleted" -msgstr "" +msgstr "API sleutel %s is verwijderd" #: application/controllers/Awards.php:22 #: application/views/interface_assets/header.php:169 #: application/views/qso/edit_ajax.php:35 msgid "Awards" -msgstr "" +msgstr "Awards" #: application/controllers/Awards.php:92 application/controllers/Awards.php:175 #: application/controllers/Awards.php:330 @@ -309,7 +310,7 @@ msgstr "" #: application/controllers/Awards.php:1992 #, php-format msgid "Awards - %s" -msgstr "" +msgstr "Awards - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 @@ -322,7 +323,7 @@ msgstr "" #: application/views/qso/index.php:562 application/views/user/edit.php:623 #: application/views/view_log/qso.php:460 msgid "DOK" -msgstr "" +msgstr "DOK" #: application/controllers/Awards.php:175 application/views/awards/index.php:7 #: application/views/bandmap/list.php:116 application/views/bands/index.php:48 @@ -349,21 +350,21 @@ msgstr "DXCC" #: application/controllers/Awards.php:254 msgid "Awards - WAJA" -msgstr "" +msgstr "Awards - WAJA" #: application/controllers/Awards.php:330 application/views/bands/index.php:51 #: application/views/interface_assets/header.php:225 msgid "JCC" -msgstr "" +msgstr "JCC" #: application/controllers/Awards.php:378 application/views/bands/index.php:57 #: application/views/interface_assets/header.php:181 msgid "VUCC" -msgstr "" +msgstr "VUCC" #: application/controllers/Awards.php:408 msgid "Log View - VUCC" -msgstr "" +msgstr "Logweergave - VUCC" #: application/controllers/Awards.php:456 #: application/controllers/Callstats.php:100 @@ -375,37 +376,37 @@ msgstr "" #: application/controllers/Timeline.php:138 #: application/controllers/Timeline.php:141 msgid "Log View" -msgstr "" +msgstr "Logweergave" #: application/controllers/Awards.php:457 #: application/controllers/Callstats.php:101 msgid " and band " -msgstr "" +msgstr " en band " #: application/controllers/Awards.php:460 #: application/controllers/Callstats.php:104 msgid " and sat " -msgstr "" +msgstr " en satelliet " #: application/controllers/Awards.php:463 #: application/controllers/Callstats.php:107 msgid " and orbit type " -msgstr "" +msgstr " en baansoort " #: application/controllers/Awards.php:467 #: application/controllers/Callstats.php:111 msgid " and propagation " -msgstr "" +msgstr " en propagatie " #: application/controllers/Awards.php:470 #: application/controllers/Callstats.php:114 msgid " and mode " -msgstr "" +msgstr " en mode " #: application/controllers/Awards.php:473 #: application/controllers/Callstats.php:117 msgid " and " -msgstr "" +msgstr " en " #: application/controllers/Awards.php:489 #: application/controllers/Logbook.php:1286 @@ -431,7 +432,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:9 #: application/views/visitor/index.php:21 msgid "SOTA" -msgstr "" +msgstr "SOTA" #: application/controllers/Awards.php:506 #: application/controllers/Logbook.php:1287 @@ -451,7 +452,7 @@ msgstr "" #: application/views/user/edit.php:343 #: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" -msgstr "" +msgstr "WWFF" #: application/controllers/Awards.php:523 #: application/controllers/Logbook.php:1288 @@ -471,117 +472,117 @@ msgstr "" #: application/views/user/edit.php:344 #: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" -msgstr "" +msgstr "POTA" #: application/controllers/Awards.php:594 msgid "CQ Magazine WAZ" -msgstr "" +msgstr "CQ Magazine WAZ" #: application/controllers/Awards.php:655 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" -msgstr "" +msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:717 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:203 msgid "RAC" -msgstr "" +msgstr "RAC" #: application/controllers/Awards.php:779 application/views/bands/index.php:49 msgid "H26" -msgstr "" +msgstr "H26" #: application/controllers/Awards.php:859 msgid "IOTA (Island On The Air)" -msgstr "" +msgstr "IOTA (Island On The Air)" #: application/controllers/Awards.php:870 #: application/controllers/Awards.php:884 #: application/views/interface_assets/header.php:245 msgid "US Counties" -msgstr "" +msgstr "US Counties" #: application/controllers/Awards.php:899 msgid "Log View - Counties" -msgstr "" +msgstr "Logweergave - Counties" #: application/controllers/Awards.php:906 msgid "Awards - " -msgstr "" +msgstr "Awards - " #: application/controllers/Awards.php:923 #: application/controllers/Awards.php:955 msgid "Gridsquares worked" -msgstr "" +msgstr "Gewerkte gridsquared" #: application/controllers/Awards.php:924 #: application/controllers/Awards.php:956 msgid "Gridsquares confirmed on LoTW" -msgstr "" +msgstr "Door LoTW bevestigde gridsquares" #: application/controllers/Awards.php:925 #: application/controllers/Awards.php:957 msgid "Gridsquares confirmed by paper QSL" -msgstr "" +msgstr "Door papieren QSL bevestigde gridsquares" #: application/controllers/Awards.php:942 msgid "Fred Fish Memorial Award (FFMA)" -msgstr "" +msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1143 #: application/views/interface_assets/header.php:179 #: application/views/logbookadvanced/useroptions.php:126 msgid "SIG" -msgstr "" +msgstr "SIG" #: application/controllers/Awards.php:1161 msgid "Awards - SIG - " -msgstr "" +msgstr "Awards - SIG - " #: application/controllers/Awards.php:1785 #: application/views/awards/itu/index.php:20 msgid "ITU Zones" -msgstr "" +msgstr "ITU Zones" #: application/controllers/Awards.php:1914 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:185 msgid "Worked All Continents (WAC)" -msgstr "" +msgstr "Worked All Continents (WAC)" #: application/controllers/Awards.php:1992 msgid "WAE" -msgstr "" +msgstr "WAE" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:293 msgid "Backup" -msgstr "" +msgstr "Back-up" #: application/controllers/Backup.php:50 msgid "ADIF - Backup" -msgstr "" +msgstr "ADIF - Back-up" #: application/controllers/Backup.php:84 msgid "Notes - Backup" -msgstr "" +msgstr "Notities - Back-up" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 #: application/views/interface_assets/header.php:400 #: application/views/statistics/index.php:16 -#: application/views/statistics/index.php:65 +#: application/views/statistics/index.php:67 msgid "Bands" -msgstr "" +msgstr "Banden" #: application/controllers/Band.php:39 application/controllers/Mode.php:41 msgid "Create Mode" -msgstr "" +msgstr "Maak modus" #: application/controllers/Band.php:64 application/views/bands/index.php:150 msgid "Edit Band" -msgstr "" +msgstr "Band bewerken" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 @@ -589,19 +590,20 @@ msgstr "" #: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" -msgstr "" +msgstr "DXCluster" #: application/controllers/Cabrillo.php:20 msgid "Export Cabrillo" -msgstr "" +msgstr "Exporteer Cabrillo" #: application/controllers/Cabrillo.php:150 msgid "Cabrillo Import" -msgstr "" +msgstr "Cabrillo importeren" #: application/controllers/Cabrillo.php:197 msgid "Broken CBR file - no QSO data or incomplete header found." msgstr "" +"Gebroken CBR-bestand - geen QSO-gegevens of onvolledige header gevonden." #: application/controllers/Cabrillo.php:243 #, php-format @@ -609,130 +611,133 @@ msgid "" "QSO %d not found or more than 1 QSO found that match the criteria of the CBR " "file. Skipping as a safety measure." msgstr "" +"QSO %d niet gevonden of meer dan 1 QSO gevonden die aan de criteria van het " +"CBR-bestand voldoen. Wordt overgeslagen als veiligheidsmaatregel." #: application/controllers/Cabrillo.php:301 msgid "CBR Data Imported" -msgstr "" +msgstr "CBR-gegevens geïmporteerd" #: application/controllers/Callstats.php:19 #: application/views/callstats/index.php:2 msgid "Callsign statistics" -msgstr "" +msgstr "Roepnaamstatistieken" #: application/controllers/Cfdexport.php:20 #: application/views/interface_assets/header.php:442 msgid "CFD Export" -msgstr "" +msgstr "CFD-export" #: application/controllers/Club.php:23 msgid "Club Officer" -msgstr "" +msgstr "Clubfunctionaris" #: application/controllers/Club.php:24 msgid "Club Member" -msgstr "" +msgstr "Club lid" #: application/controllers/Club.php:44 application/models/Club_model.php:75 #: application/models/Club_model.php:149 application/models/Club_model.php:191 msgid "Invalid User ID!" -msgstr "" +msgstr "Ongeldig gebruikers-ID!" #: application/controllers/Club.php:52 msgid "This user is not a club station." -msgstr "" +msgstr "Deze gebruiker is geen clubstation." #: application/controllers/Club.php:56 #: application/views/club/permissions.php:10 #: application/views/user/index.php:207 msgid "Club Permissions" -msgstr "" +msgstr "Clubrechten" #: application/controllers/Club.php:118 application/controllers/Club.php:147 #: application/controllers/Club.php:174 application/models/Club_model.php:22 #: application/models/Club_model.php:70 application/models/Club_model.php:144 #: application/models/Club_model.php:186 msgid "Invalid Club ID!" -msgstr "" +msgstr "Ongeldig club-ID!" #: application/controllers/Club.php:130 msgid "User could not be notified. Please check your email settings." msgstr "" +"Gebruiker kon niet worden geïnformeerd. Controleer je e-mailinstellingen." #: application/controllers/Club.php:134 msgid "Club member permissions have been updated." -msgstr "" +msgstr "De machtigingen van de clubleden zijn bijgewerkt." #: application/controllers/Club.php:156 msgid "User removed from club." -msgstr "" +msgstr "Gebruiker verwijderd uit de club." #: application/controllers/Club.php:158 msgid "User could not be removed from club." -msgstr "" +msgstr "Gebruiker kon niet uit de club worden verwijderd." #: application/controllers/Club.php:201 msgid "Invalid message type." -msgstr "" +msgstr "Ongeldig berichttype." #: application/controllers/Club.php:220 msgid "Email settings not configured." -msgstr "" +msgstr "E-mailinstellingen niet geconfigureerd." #: application/controllers/Club.php:227 application/views/api/index.php:62 #: application/views/satellite/index.php:64 msgid "Unknown" -msgstr "" +msgstr "Onbekend" #: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 #: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 #: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14 #: application/controllers/Update.php:16 msgid "Maintenance Mode is active. Try again later." -msgstr "" +msgstr "Onderhoudsmodus is actief. Probeer het later opnieuw." #: application/controllers/Clublog.php:44 #: application/controllers/Clublog.php:66 msgid "No user has configured Clublog." -msgstr "" +msgstr "Geen gebruiker heeft Clublog geconfigureerd." #: application/controllers/Contestcalendar.php:19 #: application/views/interface_assets/header.php:262 msgid "Contest Calendar" -msgstr "" +msgstr "Contestkalender" #: application/controllers/Contestcalendar.php:47 msgid "Contestcalendar not reachable. Try again later" -msgstr "" +msgstr "Contestkalender niet bereikbaar. Probeer het later opnieuw" #: application/controllers/Contesting.php:52 #: application/views/contesting/index.php:7 msgid "Contest Logging" -msgstr "" +msgstr "Wedstrijd loggen" #: application/controllers/Contesting.php:123 #: application/views/interface_assets/header.php:287 msgid "Contests" -msgstr "" +msgstr "Wedstrijden" #: application/controllers/Contesting.php:137 msgid "Update Contest" -msgstr "" +msgstr "Bijwerken inhoud" -#: application/controllers/Continents.php:25 +#: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 #: application/views/interface_assets/header.php:163 msgid "Continents" -msgstr "" +msgstr "Continenten" #: application/controllers/Cron.php:38 #: application/views/interface_assets/header.php:297 msgid "Cron Manager" -msgstr "" +msgstr "Cron Manager" #: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" -msgstr "" +msgstr "Cronjob bewerken" #: application/controllers/Cron.php:218 application/controllers/Cron.php:219 #: application/views/cron/index.php:83 application/views/cron/index.php:85 @@ -742,95 +747,100 @@ msgstr "" #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 msgid "never" -msgstr "" +msgstr "nooit" #: application/controllers/Cron.php:219 msgid "calculating..." -msgstr "" +msgstr "berekenen..." #: application/controllers/Cron.php:230 application/views/cron/index.php:70 msgid "healthy" -msgstr "" +msgstr "gezond" #: application/controllers/Cron.php:232 application/views/cron/index.php:72 msgid "failed" -msgstr "" +msgstr "mislukt" #: application/controllers/Cron.php:234 application/views/cron/index.php:74 msgid "pending" -msgstr "" +msgstr "in behandeling" #: application/controllers/Cron.php:239 application/views/cron/index.php:79 msgid "disabled" -msgstr "" +msgstr "uitgeschakeld" #: application/controllers/Cron.php:278 #: application/views/interface_assets/footer.php:39 msgid "OK" -msgstr "" +msgstr "Oké" #: application/controllers/Cron.php:282 -#, php-format +#, fuzzy, php-format msgid "" "Last run occurred more than %s seconds ago.%sPlease check your master cron! " "It should run every minute (* * * * *)." msgstr "" +"Laatste uitvoering vond meer dan %s seconden geleden plaats.%sControleer je " +"master cron! Het zou elke minuut moeten draaien (* * * * *)." #: application/controllers/Cron.php:285 -#, php-format +#, fuzzy, php-format msgid "" "Last run occurred more than %s minutes ago.%sSeems like your Mastercron " "isn't running!%sIt should run every minute (* * * * *)." msgstr "" +"De laatste uitvoering vond meer dan %s minuten geleden plaats.%s Het lijkt " +"erop dat je Mastercron niet draait!%s Het zou elke minuut moeten draaien (* " +"* * * *)." #: application/controllers/Cron.php:290 application/views/cron/index.php:29 msgctxt "Master Cron" msgid "Not running" -msgstr "" +msgstr "Draait niet" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 #: application/views/interface_assets/header.php:436 msgid "SOTA CSV Export" -msgstr "" +msgstr "SOTA CSV-export" #: application/controllers/Dashboard.php:123 #: application/controllers/Visitor.php:134 msgid "Dashboard" -msgstr "" +msgstr "Dashboard" #: application/controllers/Dayswithqso.php:17 #: application/views/dayswithqso/index.php:2 #: application/views/interface_assets/header.php:155 msgid "Days with QSOs" -msgstr "" +msgstr "Dagen met QSOs" #: application/controllers/Debug.php:115 msgid "Debug" -msgstr "" +msgstr "Debug" #: application/controllers/Debug.php:154 msgid "Migrate data now" -msgstr "" +msgstr "Gegevens nu migreren" #: application/controllers/Debug.php:157 msgid "Migration already done. Run again?" -msgstr "" +msgstr "Migratie al voltooid. Opnieuw uitvoeren?" #: application/controllers/Debug.php:161 msgid "No data to migrate" -msgstr "" +msgstr "Geen gegevens om te migreren" #: application/controllers/Debug.php:165 application/controllers/Debug.php:170 msgid "No migration possible" -msgstr "" +msgstr "Geen migratie mogelijk" #: application/controllers/Debug.php:235 msgid "Wavelog was updated successfully!" -msgstr "" +msgstr "Wavelog is succesvol bijgewerkt!" #: application/controllers/Debug.php:253 msgid "Selfupdate() not available. Check the Error Log." -msgstr "" +msgstr "Selfupdate() niet beschikbaar. Controleer het foutlogboek." #: application/controllers/Debug.php:297 msgid "" @@ -838,203 +848,206 @@ msgid "" "everything seems right you can delete the folders 'assets/qslcard' and " "'images/eqsl_card_images'." msgstr "" +"Bestandsoverdracht was succesvol, maar controleer ook handmatig. Als alles " +"goed lijkt, kun je de mappen 'assets/qslcard' en 'images/eqsl_card_images' " +"verwijderen." #: application/controllers/Debug.php:300 msgid "File Migration failed. Please check the Error Log." -msgstr "" +msgstr "Bestandsoverdracht mislukt. Controleer het foutlogboek." #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 #: application/views/interface_assets/header.php:153 msgid "Satellite Distance Records" -msgstr "" +msgstr "Satellietafstandrecords" #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 #: application/views/interface_assets/header.php:151 msgid "Distances Worked" -msgstr "" +msgstr "Afstanden gewerkt" #: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" -msgstr "" +msgstr "QSOs met" #: application/controllers/Distances.php:83 msgid "and band" -msgstr "" +msgstr "en band" #: application/controllers/Distances.php:83 msgid "and propagation" -msgstr "" +msgstr "en propagatie" #: application/controllers/Dxatlas.php:19 #: application/views/interface_assets/header.php:434 msgid "DX Atlas Gridsquare Export" -msgstr "" +msgstr "DX Atlas Gridsquare Exporteren" #: application/controllers/Dxcalendar.php:10 #: application/views/interface_assets/header.php:260 msgid "DX Calendar" -msgstr "" +msgstr "DX-kalender" #: application/controllers/Eqsl.php:34 #: application/views/dashboard/index.php:383 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" -msgstr "" +msgstr "eQSL-kaarten" #: application/controllers/Eqsl.php:127 msgid "eQSL Import" -msgstr "" +msgstr "eQSL importeren" #: application/controllers/Eqsl.php:137 msgid "eQSL Import Information" -msgstr "" +msgstr "eQSL importinformatie" #: application/controllers/Eqsl.php:154 msgid "eQSL Nicknames in Station Profiles aren't defined!" -msgstr "" +msgstr "eQSL-bijnamen in stationprofielen zijn niet gedefinieerd!" #: application/controllers/Eqsl.php:161 msgid "eQSL QSO Upload" -msgstr "" +msgstr "eQSL QSO Upload" #: application/controllers/Eqsl.php:173 msgid "You have not defined your eQSL.cc credentials!" -msgstr "" +msgstr "Je hebt je eQSL.cc gegevens nog niet ingesteld!" #: application/controllers/Eqsl.php:432 msgid "eQSL Tools" -msgstr "" +msgstr "eQSL-hulpmiddelen" #: application/controllers/Eqsl.php:480 msgid " / Errors: " -msgstr "" +msgstr " / Fouten: " #: application/controllers/Eqsl.php:480 msgid "Successfully downloaded: " -msgstr "" +msgstr "Succesvol gedownload: " #: application/controllers/Eqsl.php:489 msgid "eQSL Card Image Download" -msgstr "" +msgstr "eQSL-kaartafbeelding downloaden" #: application/controllers/Gridmap.php:10 #: application/views/interface_assets/header.php:145 msgid "Gridsquare Map" -msgstr "" +msgstr "Gridsquare-kaart" #: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" -msgstr "" +msgstr "Totaal aantal vakken gewerkt" #: application/controllers/Hamsat.php:59 msgid "Hamsat - Satellite Roving" -msgstr "" +msgstr "Hamsat - Satelliet Roving" #: application/controllers/Hrdlog.php:74 -#, php-format +#, fuzzy, php-format msgid "%d QSO is now uploaded to HRDlog" msgid_plural "%d QSOs are now uploaded to HRDlog" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d QSO is nu geüpload naar HRDlog" +msgstr[1] "%d QSO's zijn nu geüpload naar HRDlog" #: application/controllers/Hrdlog.php:79 msgid "No QSOs found to upload." -msgstr "" +msgstr "Geen QSOs gevonden om te uploaden." #: application/controllers/Kmlexport.php:24 #: application/views/interface_assets/header.php:432 #: application/views/kml/index.php:3 msgid "KML Export" -msgstr "" +msgstr "KML-export" #: application/controllers/Labels.php:40 application/views/labels/index.php:30 msgid "QSL Card Labels" -msgstr "" +msgstr "QSL-kaartlabels" #: application/controllers/Labels.php:71 msgid "Create Label Type" -msgstr "" +msgstr "Labeltype maken" #: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" -msgstr "" +msgstr "Labelnaam" #: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" -msgstr "" +msgstr "Papier Type" #: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" -msgstr "" +msgstr "Afmetingen" #: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" -msgstr "" +msgstr "Bovenmarge" #: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" -msgstr "" +msgstr "Linkermarge" #: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" -msgstr "" +msgstr "QSL's horizontaal" #: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" -msgstr "" +msgstr "QSL's verticaal" #: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" -msgstr "" +msgstr "Horizontale ruimte" #: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" -msgstr "" +msgstr "Verticale ruimte" #: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" -msgstr "" +msgstr "Labelbreedte" #: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" -msgstr "" +msgstr "Labelhoogte" #: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" -msgstr "" +msgstr "Lettergrootte" #: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" -msgstr "" +msgstr "Aantal QSOs op label" #: application/controllers/Labels.php:115 msgid "Create Paper Type" -msgstr "" +msgstr "Papier type maken" #: application/controllers/Labels.php:119 #: application/controllers/Labels.php:465 msgid "Paper Name" -msgstr "" +msgstr "Papiernaam" #: application/controllers/Labels.php:120 #: application/controllers/Labels.php:466 msgid "Paper Width" -msgstr "" +msgstr "Papierbreedte" #: application/controllers/Labels.php:121 #: application/controllers/Labels.php:467 msgid "Paper Height" -msgstr "" +msgstr "Papierhoogte" #: application/controllers/Labels.php:132 #: application/controllers/Labels.php:475 @@ -1042,16 +1055,18 @@ msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." msgstr "" +"Je document kon niet worden opgeslagen. Vergeet niet dat het niet dezelfde " +"naam mag hebben als bestaande documenttypen." #: application/controllers/Labels.php:205 #: application/controllers/Labels.php:208 msgid "You need to assign a paperType to the label before printing" -msgstr "" +msgstr "Je moet een papiertype aan het label toewijzen voordat je gaat printen" #: application/controllers/Labels.php:215 #: application/controllers/Labels.php:218 msgid "You need to create a label and set it to be used for print." -msgstr "" +msgstr "Je moet een label maken en instellen om te printen." #: application/controllers/Labels.php:225 #: application/controllers/Labels.php:228 @@ -1059,45 +1074,49 @@ msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." msgstr "" +"Er is iets misgegaan! Het label kon niet worden gegenereerd. Controleer de " +"labelgrootte en lettergrootte." #: application/controllers/Labels.php:251 msgid "0 QSOs found for print!" -msgstr "" +msgstr "Geen QSO's gevonden om te printen!" #: application/controllers/Labels.php:395 msgid "Edit Label" -msgstr "" +msgstr "Label bewerken" #: application/controllers/Labels.php:424 msgid "Label was saved." -msgstr "" +msgstr "Label is opgeslagen." #: application/controllers/Labels.php:432 msgid "Label was deleted." -msgstr "" +msgstr "Label is verwijderd." #: application/controllers/Labels.php:454 msgid "Edit Paper" -msgstr "" +msgstr "Papier bewerken" #: application/controllers/Labels.php:479 msgid "Paper was saved." -msgstr "" +msgstr "Papier is opgeslagen." #: application/controllers/Labels.php:492 msgid "Paper was deleted." -msgstr "" +msgstr "Papier is verwijderd." #: application/controllers/Logbook.php:37 msgid "" "No logbooks were found. You need to define a logbook under Station Logbooks! " "Do it here:" msgstr "" +"Er zijn geen logboeken gevonden. Je moet een logboek definiëren onder " +"Station Logboeken! Doe het hier:" #: application/controllers/Logbook.php:37 #: application/views/stationsetup/stationsetup.php:18 msgid "Station Logbooks" -msgstr "" +msgstr "Stationlogboeken" #: application/controllers/Logbook.php:60 #: application/views/interface_assets/header.php:100 @@ -1130,7 +1149,7 @@ msgstr "Logboek" #: application/views/timeline/index.php:56 application/views/user/edit.php:582 #: application/views/user/edit.php:669 msgid "QSL" -msgstr "" +msgstr "QSL" #: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:66 @@ -1163,7 +1182,7 @@ msgstr "" #: application/views/user/edit.php:679 application/views/view_log/qso.php:531 #: application/views/view_log/qso.php:536 msgid "LoTW" -msgstr "" +msgstr "LoTW" #: application/controllers/Logbook.php:666 #: application/views/activated_gridmap/index.php:74 @@ -1194,7 +1213,7 @@ msgstr "" #: application/views/timeline/index.php:64 application/views/user/edit.php:584 #: application/views/user/edit.php:687 application/views/user/edit.php:753 msgid "eQSL" -msgstr "" +msgstr "eQSL" #: application/controllers/Logbook.php:672 #: application/views/awards/dok/index.php:71 @@ -1214,7 +1233,7 @@ msgstr "" #: application/views/view_log/qso.php:565 #: application/views/view_log/qso.php:570 msgid "Clublog" -msgstr "" +msgstr "Clublog" #: application/controllers/Logbook.php:1281 #: application/controllers/Radio.php:46 @@ -1278,8 +1297,8 @@ msgstr "" #: application/views/simplefle/index.php:157 #: application/views/statistics/antennaanalytics.php:31 #: application/views/statistics/index.php:15 -#: application/views/statistics/index.php:20 -#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:64 #: application/views/timeline/index.php:19 application/views/user/edit.php:244 #: application/views/user/edit.php:267 application/views/user/edit.php:290 #: application/views/user/edit.php:313 application/views/user/edit.php:337 @@ -1288,7 +1307,7 @@ msgstr "" #: application/views/view_log/qso.php:108 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:30 msgid "Mode" -msgstr "" +msgstr "Modus" #: application/controllers/Logbook.php:1282 #: application/views/awards/pota/index.php:36 @@ -1315,7 +1334,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:5 #: application/views/view_log/qso.php:113 application/views/visitor/index.php:9 msgid "RST (S)" -msgstr "" +msgstr "RST (S)" #: application/controllers/Logbook.php:1283 #: application/views/awards/pota/index.php:37 @@ -1343,7 +1362,7 @@ msgstr "" #: application/views/view_log/qso.php:118 #: application/views/visitor/index.php:12 msgid "RST (R)" -msgstr "" +msgstr "RST (R)" #: application/controllers/Logbook.php:1284 #: application/views/dashboard/index.php:7 @@ -1391,7 +1410,7 @@ msgstr "Land" #: application/views/view_log/partial/log_ajax.php:8 #: application/views/visitor/index.php:18 msgid "IOTA" -msgstr "" +msgstr "IOTA" #: application/controllers/Logbook.php:1289 #: application/views/awards/counties/details.php:12 @@ -1419,7 +1438,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:12 #: application/views/visitor/index.php:24 msgid "State" -msgstr "" +msgstr "Staat" #: application/controllers/Logbook.php:1290 #: application/views/activated_gridmap/index.php:106 @@ -1487,7 +1506,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:14 #: application/views/visitor/index.php:30 msgid "Distance" -msgstr "" +msgstr "Afstand" #: application/controllers/Logbook.php:1292 #: application/views/accumulate/index.php:21 @@ -1552,7 +1571,7 @@ msgstr "" #: application/views/simplefle/index.php:156 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/antennaanalytics.php:19 -#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:22 #: application/views/timeline/index.php:7 #: application/views/timeplotter/index.php:14 #: application/views/user/edit.php:242 application/views/user/edit.php:265 @@ -1563,7 +1582,7 @@ msgstr "" #: application/views/view_log/qso.php:88 application/views/visitor/index.php:33 #: application/views/widgets/qsos.php:33 msgid "Band" -msgstr "" +msgstr "Band" #: application/controllers/Logbook.php:1293 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:114 @@ -1599,6 +1618,7 @@ msgstr "Frequentie" #: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:116 +#: application/views/statistics/index.php:23 #: application/views/user/edit.php:255 application/views/user/edit.php:278 #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 @@ -1606,7 +1626,7 @@ msgstr "Frequentie" #: application/views/view_log/qso.php:684 #: application/views/visitor/index.php:39 msgid "Operator" -msgstr "" +msgstr "Operator" #: application/controllers/Logbook.php:1315 #: application/controllers/Stationsetup.php:381 @@ -1638,11 +1658,11 @@ msgstr "Verwijderde DXCC" #: application/controllers/Logbookadvanced.php:31 msgid "Advanced logbook" -msgstr "" +msgstr "Geavanceerd logboek" #: application/controllers/Lookup.php:22 msgid "Quick Lookup" -msgstr "" +msgstr "Snel opzoeken" #: application/controllers/Lotw.php:53 application/controllers/Lotw.php:85 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 @@ -1651,19 +1671,19 @@ msgstr "" #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:725 application/views/visitor/index.php:328 msgid "Logbook of the World" -msgstr "" +msgstr "Logbook of The World" #: application/controllers/Lotw.php:150 msgid "Certificate Imported." -msgstr "" +msgstr "Certificaat geïmporteerd." #: application/controllers/Lotw.php:157 msgid "Certificate Updated." -msgstr "" +msgstr "Certificaat bijgewerkt." #: application/controllers/Lotw.php:383 msgid "Certificate Deleted." -msgstr "" +msgstr "Certificaat verwijderd." #: application/controllers/Lotw.php:412 #, php-format @@ -1671,65 +1691,68 @@ msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " "typically a certificate request which has not been processed by LoTW yet." msgstr "" +"Geen certificaat gevonden in bestand %s. Als de bestandsnaam 'key-only' " +"bevat, is dit meestal een certificaataanvraag die nog niet door LoTW is " +"verwerkt." #: application/controllers/Lotw.php:629 msgid "LoTW ADIF Information" -msgstr "" +msgstr "LoTW ADIF Informatie" #: application/controllers/Lotw.php:795 application/controllers/Lotw.php:798 #, php-format msgid "LoTW login failed for user %s: %s." -msgstr "" +msgstr "LoTW-login mislukt voor gebruiker %s: %s." #: application/controllers/Lotw.php:798 msgid "Username/password incorrect" -msgstr "" +msgstr "Gebruikersnaam/wachtwoord onjuist" #: application/controllers/Lotw.php:801 msgid "LoTW login OK!" -msgstr "" +msgstr "LoTW login oké!" #: application/controllers/Lotw.php:805 msgid "LoTW currently not available. Try again later." -msgstr "" +msgstr "LoTW momenteel niet beschikbaar. Probeer het later opnieuw." #: application/controllers/Lotw.php:810 msgid "No LoTW credentials provided." -msgstr "" +msgstr "Geen LoTW-gegevens verstrekt." #: application/controllers/Lotw.php:828 msgid "LoTW ADIF Import" -msgstr "" +msgstr "LoTW ADIF importeren" #: application/controllers/Lotw.php:854 application/controllers/Lotw.php:962 msgid "You have not defined your ARRL LoTW credentials!" -msgstr "" +msgstr "Je hebt je ARRL LoTW-gegevens niet gedefinieerd!" #: application/controllers/Lotw.php:929 msgid "LoTW .TQ8 Upload" -msgstr "" +msgstr "LoTW .TQ8 uploaden" #: application/controllers/Lotw.php:1007 msgid "Your ARRL username and/or password is incorrect." -msgstr "" +msgstr "Je ARRL-gebruikersnaam en/of wachtwoord is onjuist." #: application/controllers/Lotw.php:1026 application/controllers/Lotw.php:1031 msgid "LoTW .TQ8 Sent" -msgstr "" +msgstr "LoTW .TQ8 verzonden" #: application/controllers/Lotw.php:1038 msgid "LoTW .TQ8 Not Sent" -msgstr "" +msgstr "LoTW .TQ8 niet verzonden" #: application/controllers/Mode.php:25 #: application/views/interface_assets/header.php:285 #: application/views/mode/index.php:27 msgid "Modes" -msgstr "" +msgstr "Modi" #: application/controllers/Mode.php:62 msgid "Edit Mode" -msgstr "" +msgstr "Modus bewerken" #: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:133 @@ -1745,17 +1768,17 @@ msgstr "Aantekeningen" #: application/controllers/Notes.php:37 msgid "Add Notes" -msgstr "" +msgstr "Notities toevoegen" #: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" -msgstr "" +msgstr "Notitie" #: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" -msgstr "" +msgstr "Notitie bewerken" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 @@ -1773,13 +1796,13 @@ msgstr "" #: application/controllers/Options.php:489 #: application/controllers/Options.php:499 msgid "Wavelog Options" -msgstr "" +msgstr "Wavelog-opties" #: application/controllers/Options.php:42 #: application/controllers/Options.php:57 #: application/views/options/sidebar.php:4 msgid "Appearance" -msgstr "" +msgstr "Uiterlijk" #: application/controllers/Options.php:78 #: application/controllers/Options.php:86 @@ -1790,61 +1813,63 @@ msgstr "" #: application/controllers/Options.php:126 #: application/controllers/Options.php:134 msgid "Options saved" -msgstr "" +msgstr "Opties opgeslagen" #: application/controllers/Options.php:173 msgid "de continent changed to " -msgstr "" +msgstr "het continent veranderde in " #: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " -msgstr "" +msgstr "Maximale leeftijd van spots gewijzigd naar " #: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " -msgstr "" +msgstr "DXCluster Cache URL gewijzigd naar " #: application/controllers/Options.php:193 #: application/controllers/Options.php:204 msgid "Radio Settings" -msgstr "" +msgstr "Radio-instellingen" #: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " -msgstr "" +msgstr "Radio Time-out waarschuwing gewijzigd in " #: application/controllers/Options.php:237 #: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" -msgstr "" +msgstr "E-mail" #: application/controllers/Options.php:305 msgid "The settings were saved successfully." -msgstr "" +msgstr "De instellingen zijn succesvol opgeslagen." #: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" +"Er is iets misgegaan met het opslaan van de instellingen. Probeer het " +"opnieuw." #: application/controllers/Options.php:318 #: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" -msgstr "" +msgstr "OQRS-opties" #: application/controllers/Options.php:341 msgid "OQRS options have been saved." -msgstr "" +msgstr "OQRS-opties zijn opgeslagen." #: application/controllers/Options.php:381 #: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." -msgstr "" +msgstr "Testmail mislukt. Er is iets misgegaan." #: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." -msgstr "" +msgstr "Testmail verzonden. E-mailinstellingen lijken correct te zijn." #: application/controllers/Options.php:395 #: application/controllers/Options.php:414 @@ -1869,7 +1894,7 @@ msgstr "" #: application/controllers/Options.php:490 #: application/controllers/Options.php:500 msgid "Version Info Settings" -msgstr "" +msgstr "Versie-informatie-instellingen" #: application/controllers/Options.php:506 msgid "Version Info Header changed to" @@ -1898,94 +1923,96 @@ msgstr "" #: application/controllers/Oqrs.php:67 msgid "Invalid Station ID" -msgstr "" +msgstr "Ongeldige station-ID" #: application/controllers/Oqrs.php:134 #: application/views/interface_assets/header.php:459 msgid "OQRS Requests" -msgstr "" +msgstr "OQRS-verzoeken" #: application/controllers/Qrbcalc.php:17 msgid "QRB Calculator" -msgstr "" +msgstr "QRB Calculator" #: application/controllers/Qrbcalc.php:49 #: application/controllers/Qrbcalc.php:50 #, php-format msgid "Latitude: %s, Longitude: %s" -msgstr "" +msgstr "Breedtegraad: %s, Lengtegraad: %s" #: application/controllers/Qrbcalc.php:54 #, php-format msgid "The distance between %s and %s is %s mile." msgid_plural "The distance between %s and %s is %s miles." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "De afstand tussen %s en %s is %s mijl." +msgstr[1] "De afstand tussen %s en %s is %s mijlen." #: application/controllers/Qrbcalc.php:57 #, php-format msgid "The distance between %s and %s is %s nautical mile." msgid_plural "The distance between %s and %s is %s nautical miles." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "De afstand tussen %s en %s is %s zeemijl." +msgstr[1] "De afstand tussen %s en %s is %s zeemijlen." #: application/controllers/Qrbcalc.php:60 #, php-format msgid "The distance between %s and %s is %s kilometer." msgid_plural "The distance between %s and %s is %s kilometers." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "De afstand tussen %s en %s is %s kilometer." +msgstr[1] "De afstand tussen %s en %s is %s kilometer." #: application/controllers/Qrbcalc.php:66 #, php-format msgid "The bearing is %s." -msgstr "" +msgstr "De koers is %s." #: application/controllers/Qrbcalc.php:72 msgid "" "Negative latitudes are south of the equator, negative longitudes are west of " "Greenwich." msgstr "" +"Negatieve breedtegraden liggen ten zuiden van de evenaar, negatieve " +"lengtegraden liggen ten westen van Greenwich." #: application/controllers/Qrz.php:204 #: application/views/interface_assets/header.php:472 msgid "QRZ Logbook" -msgstr "" +msgstr "QRZ Logboek" #: application/controllers/Qrz.php:287 msgid "QRZ QSL Import" -msgstr "" +msgstr "QRZ QSL importeren" #: application/controllers/Qrz.php:344 msgid "QRZ ADIF Information" -msgstr "" +msgstr "QRZ ADIF Informatie" #: application/controllers/Qsl.php:25 application/views/dashboard/index.php:318 #: application/views/dashboard/index.php:335 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" -msgstr "QSL kaarten" +msgstr "QSL-kaarten" #: application/controllers/Qsl.php:35 msgid "Upload QSL Cards" -msgstr "" +msgstr "QSL-kaarten uploaden" #: application/controllers/Qslmanagement.php:14 msgid "QSL Card Management" -msgstr "" +msgstr "QSL-kaartbeheer" #: application/controllers/Qslprint.php:44 msgid "Print Requested QSLs" -msgstr "" +msgstr "Aangevraagde QSL's afdrukken" #: application/controllers/Qso.php:101 msgid "Add QSO" -msgstr "" +msgstr "QSO toevoegen" #: application/controllers/Qso.php:661 msgid "You have to be logged in to access this URL." -msgstr "" +msgstr "Je moet ingelogd zijn om deze URL te openen." #: application/controllers/Qso.php:667 msgid "Call Transfer" @@ -1993,23 +2020,23 @@ msgstr "" #: application/controllers/Qso.php:674 msgid "No callsign provided." -msgstr "" +msgstr "Geen roepnaam opgegeven." #: application/controllers/Radio.php:17 #: application/views/interface_assets/header.php:481 msgid "Hardware Interfaces" -msgstr "" +msgstr "Hardware-interfaces" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:64 #: application/views/contesting/index.php:152 #: application/views/qso/index.php:319 msgid "Radio" -msgstr "" +msgstr "Radio" #: application/controllers/Radio.php:47 msgid "Timestamp" -msgstr "" +msgstr "Tijdstempel" #: application/controllers/Radio.php:49 #: application/views/logbookadvanced/index.php:625 @@ -2018,30 +2045,30 @@ msgstr "" #: application/views/simplefle/index.php:184 #: application/views/stationsetup/exportmapoptions.php:5 msgid "Options" -msgstr "" +msgstr "Opties" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 #: application/views/qso/index.php:718 msgid "Settings" -msgstr "" +msgstr "Instellingen" #: application/controllers/Radio.php:63 msgid "UNKNOWN" -msgstr "" +msgstr "ONBEKEND" #: application/controllers/Radio.php:98 #: application/views/contesting/index.php:156 #: application/views/qso/index.php:323 msgid "last updated" -msgstr "" +msgstr "laatst bijgewerkt" #: application/controllers/Radio.php:106 application/controllers/Radio.php:109 msgid "Set as default radio" -msgstr "" +msgstr "Instellen als standaardradio" #: application/controllers/Radio.php:111 msgid "Default (click to release)" -msgstr "" +msgstr "Standaard (klik om vrij te geven)" #: application/controllers/Radio.php:115 #: application/controllers/Stationsetup.php:359 @@ -2060,7 +2087,7 @@ msgstr "" #: application/views/themes/index.php:104 application/views/user/index.php:95 #: application/views/user/index.php:195 msgid "Edit" -msgstr "" +msgstr "Bewerken" #: application/controllers/Radio.php:116 #: application/controllers/Stationsetup.php:372 @@ -2087,32 +2114,32 @@ msgstr "" #: application/views/themes/index.php:107 application/views/user/index.php:117 #: application/views/user/index.php:220 application/views/view_log/qso.php:762 msgid "Delete" -msgstr "" +msgstr "Verwijderen" #: application/controllers/Radio.php:122 msgid "No CAT interfaced radios found." -msgstr "" +msgstr "Geen CAT-gekoppelde radio's gevonden." #: application/controllers/Radio.php:137 application/views/radio/index.php:2 msgid "Edit CAT Settings" -msgstr "" +msgstr "CAT-instellingen bewerken" #: application/controllers/Reg1test.php:22 msgid "Export EDI" -msgstr "" +msgstr "EDI exporteren" #: application/controllers/Satellite.php:49 msgid "Create Satellite" -msgstr "" +msgstr "Nieuwe satelliet invoeren" #: application/controllers/Satellite.php:76 msgid "Edit Satellite" -msgstr "" +msgstr "Bewerk satelliet" #: application/controllers/Sattimers.php:41 -#, php-format +#, fuzzy, php-format msgid "You have no station locations. Go %s to create it!" -msgstr "" +msgstr "Je hebt geen stationlocaties. Ga %s om het te maken!" #: application/controllers/Sattimers.php:41 #: application/views/awards/counties/index.php:8 @@ -2121,7 +2148,7 @@ msgstr "" #: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" -msgstr "" +msgstr "hier" #: application/controllers/Sattimers.php:44 #: application/views/sattimers/index.php:13 @@ -2157,21 +2184,23 @@ msgstr "Zoeken" #: application/controllers/Search.php:28 msgid "Search & Filter Logbook" -msgstr "" +msgstr "Zoek & filter logboek" #: application/controllers/Search.php:58 msgid "Incorrectly logged CQ zones" -msgstr "" +msgstr "Onjuist gelogde CQ-zones" #: application/controllers/Search.php:70 msgid "Incorrectly logged ITU zones" -msgstr "" +msgstr "Onjuist geregistreerde ITU-zones" #: application/controllers/Search.php:82 msgid "" "QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " "date" msgstr "" +"QSOs niet bevestigd op LoTW, maar de roepnaam is geüpload naar LoTW na de " +"QSO-datum" #: application/controllers/Staticmap.php:20 #: application/controllers/Staticmap.php:25 @@ -2184,7 +2213,7 @@ msgstr "" #: application/controllers/Visitor.php:476 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." -msgstr "" +msgstr "Onbekende openbare pagina." #: application/controllers/Staticmap.php:150 #: application/controllers/Visitor.php:76 @@ -2193,16 +2222,16 @@ msgstr "" #: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" -msgstr "" +msgstr "Leeg logboek" #: application/controllers/Station.php:37 #: application/controllers/Stationsetup.php:226 msgid "Create Station Location" -msgstr "" +msgstr "Maak stationlocatie aan" #: application/controllers/Station.php:52 msgid "Edit Station Location: " -msgstr "" +msgstr "Bewerk stationlocatie: " #: application/controllers/Station.php:61 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 @@ -2221,7 +2250,7 @@ msgstr "Station Profiel" #: application/controllers/Station.php:80 msgid "Duplicate Station Location:" -msgstr "" +msgstr "Duplicaat stationlocatie:" #: application/controllers/Stationsetup.php:35 #: application/views/interface_assets/header.php:398 @@ -2234,7 +2263,7 @@ msgstr "" #: application/controllers/Stationsetup.php:395 #: application/controllers/Stationsetup.php:409 msgid "Not allowed" -msgstr "" +msgstr "Niet toegestaan" #: application/controllers/Stationsetup.php:72 #: application/controllers/Stationsetup.php:86 @@ -2245,28 +2274,28 @@ msgstr "" #: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:677 application/views/simplefle/index.php:38 msgid "Error" -msgstr "" +msgstr "Fout" #: application/controllers/Stationsetup.php:159 #: application/views/stationsetup/stationsetup.php:22 msgid "Create Station Logbook" -msgstr "" +msgstr "Maak stationlogboek aan" #: application/controllers/Stationsetup.php:166 msgid "Edit container name" -msgstr "" +msgstr "Containernaam bewerken" #: application/controllers/Stationsetup.php:181 msgid "Edit linked locations" -msgstr "" +msgstr "Gekoppelde locaties bewerken" #: application/controllers/Stationsetup.php:190 msgid "Edit visitor site" -msgstr "" +msgstr "Bezoekerssite bewerken" #: application/controllers/Stationsetup.php:212 msgid "Error. Link is already in use!" -msgstr "" +msgstr "Fout. Link is al in gebruik!" #: application/controllers/Stationsetup.php:253 #: application/views/options/appearance.php:57 @@ -2284,19 +2313,19 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:471 application/views/user/edit.php:480 msgid "Disabled" -msgstr "" +msgstr "Uitgeschakeld" #: application/controllers/Stationsetup.php:261 #: application/views/stationsetup/stationsetup.php:44 msgid "Set as Active Logbook" -msgstr "" +msgstr "Instellen als actief logboek" #: application/controllers/Stationsetup.php:263 #: application/views/interface_assets/header.php:542 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" -msgstr "" +msgstr "Actief logboek" #: application/controllers/Stationsetup.php:270 #: application/views/stationsetup/stationsetup.php:55 @@ -2304,31 +2333,35 @@ msgid "" "Are you sure you want to delete the following station logbook? You must re-" "link any locations linked here to another logbook.: " msgstr "" +"Weet je zeker dat je het volgende stationlogboek wilt verwijderen? Je moet " +"alle locaties die hieraan gekoppeld zijn opnieuw koppelen aan een ander " +"logboek. " #: application/controllers/Stationsetup.php:280 #: application/views/stationsetup/stationsetup.php:65 msgid "View Public Page for Logbook: " -msgstr "" +msgstr "Bekijk openbare pagina voor logboek: " #: application/controllers/Stationsetup.php:281 msgid "Are you sure you want to delete the public slug?" -msgstr "" +msgstr "Weet je zeker dat je de openbare slug wilt verwijderen?" #: application/controllers/Stationsetup.php:349 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" +"Weet je zeker dat je het volgende station als actief station wilt instellen: " #: application/controllers/Stationsetup.php:349 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" -msgstr "" +msgstr "Actief maken" #: application/controllers/Stationsetup.php:351 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" -msgstr "" +msgstr "Actief station" #: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:116 @@ -2338,24 +2371,25 @@ msgstr "" #: application/views/user/index.php:81 application/views/user/index.php:85 #: application/views/user/index.php:186 application/views/user/index.php:188 msgid "QSO" -msgstr "" +msgstr "QSO" #: application/controllers/Stationsetup.php:363 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" +"Weet je zeker dat je alle QSO's binnen dit stationprofiel wilt verwijderen?" #: application/controllers/Stationsetup.php:363 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" -msgstr "" +msgstr "Leeg logboek" #: application/controllers/Stationsetup.php:367 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" -msgstr "" +msgstr "Kopiëren" #: application/controllers/Stationsetup.php:372 #: application/views/stationsetup/stationsetup.php:191 @@ -2364,6 +2398,8 @@ msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " "within this station profile." msgstr "" +"Weet je zeker dat je het stationprofiel '%s' wilt verwijderen? Dit zal alle " +"QSO's binnen dit stationprofiel verwijderen." #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:236 @@ -2376,150 +2412,150 @@ msgstr "Kies er één" #: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" -msgstr "" +msgstr "Opties voor Exportkaart bewerken" #: application/controllers/Statistics.php:26 #: application/views/interface_assets/header.php:139 msgid "Statistics" -msgstr "" +msgstr "Statistieken" -#: application/controllers/Statistics.php:209 +#: application/controllers/Statistics.php:238 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" -msgstr "" +msgstr "QSL-statistieken" -#: application/controllers/Statistics.php:224 +#: application/controllers/Statistics.php:253 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" -msgstr "" +msgstr "Antenne-analyse" #: application/controllers/Themes.php:27 #: application/views/interface_assets/header.php:291 msgid "Themes" -msgstr "" +msgstr "Thema's" #: application/controllers/Themes.php:46 msgid "Create Theme" -msgstr "" +msgstr "Thema maken" #: application/controllers/Themes.php:65 msgid "Edit Theme" -msgstr "" +msgstr "Thema bewerken" #: application/controllers/Timeline.php:15 #: application/views/interface_assets/header.php:157 #: application/views/timeline/index.php:2 msgid "Timeline" -msgstr "" +msgstr "Tijdlijn" #: application/controllers/Timeplotter.php:17 #: application/views/interface_assets/header.php:161 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" -msgstr "" +msgstr "Tijdplotter" #: application/controllers/Update.php:26 msgid "Updates" -msgstr "" +msgstr "Updates" #: application/controllers/Update.php:71 msgid "Preparing DXCC-Entries: " -msgstr "" +msgstr "DXCC-items voorbereiden: " #: application/controllers/Update.php:136 msgid "Preparing DXCC Exceptions: " -msgstr "" +msgstr "DXCC uitzonderingen voorbereiden: " #: application/controllers/Update.php:187 msgid "Preparing DXCC Prefixes: " -msgstr "" +msgstr "DXCC-prefixen voorbereiden: " #: application/controllers/Update.php:275 msgid "DONE" -msgstr "" +msgstr "KLAAR" #: application/controllers/Update.php:289 msgid "Updating..." -msgstr "" +msgstr "Bijwerken..." #: application/controllers/Update.php:292 msgid "Dxcc Entities:" -msgstr "" +msgstr "Dxcc-entiteiten:" #: application/controllers/Update.php:293 msgid "Dxcc Exceptions:" -msgstr "" +msgstr "Dxcc uitzonderingen:" #: application/controllers/Update.php:294 msgid "Dxcc Prefixes:" -msgstr "" +msgstr "Dxcc-prefixen:" #: application/controllers/Update.php:365 msgid "SCP Update complete. Result: " -msgstr "" +msgstr "SCP-update voltooid. Resultaat: " #: application/controllers/Update.php:367 msgid "SCP Update failed. Result: " -msgstr "" +msgstr "SCP-update mislukt. Resultaat: " #: application/controllers/Update.php:385 msgid "LoTW Users Update complete. Result: " -msgstr "" +msgstr "LoTW-gebruikersupdate voltooid. Resultaat: " #: application/controllers/Update.php:387 msgid "LoTW Users Update failed. Result: " -msgstr "" +msgstr "LoTW-gebruikersupdate mislukt. Resultaat: " #: application/controllers/Update.php:404 msgid "DOK Update complete. Result: " -msgstr "" +msgstr "DOK-update voltooid. Resultaat: " #: application/controllers/Update.php:406 msgid "DOK Update failed. Result: " -msgstr "" +msgstr "DOK-update mislukt. Resultaat: " #: application/controllers/Update.php:423 msgid "SOTA Update complete. Result: " -msgstr "" +msgstr "SOTA-update voltooid. Resultaat: " #: application/controllers/Update.php:425 msgid "SOTA Update failed. Result: " -msgstr "" +msgstr "SOTA-update mislukt. Resultaat: " #: application/controllers/Update.php:442 msgid "WWFF Update complete. Result: " -msgstr "" +msgstr "WWFF-update voltooid. Resultaat: " #: application/controllers/Update.php:444 msgid "WWFF Update failed. Result: " -msgstr "" +msgstr "WWFF-update mislukt. Resultaat: " #: application/controllers/Update.php:458 msgid "POTA Update complete. Result: " -msgstr "" +msgstr "POTA-update voltooid. Resultaat: " #: application/controllers/Update.php:460 msgid "POTA Update failed. Result: " -msgstr "" +msgstr "POTA-update mislukt. Resultaat: " #: application/controllers/Update.php:473 msgid "TLE Update complete. Result: " -msgstr "" +msgstr "TLE-update voltooid. Resultaat: " #: application/controllers/Update.php:475 msgid "TLE Update failed. Result: " -msgstr "" +msgstr "TLE-update mislukt. Resultaat: " #: application/controllers/Update.php:486 msgid "LoTW SAT Update" -msgstr "" +msgstr "LoTW SAT update" #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:281 msgid "User Accounts" -msgstr "" +msgstr "Gebruikersaccounts" #: application/controllers/User.php:96 msgid "Invalid User ID or missing modal!" @@ -2527,93 +2563,99 @@ msgstr "" #: application/controllers/User.php:107 msgid "User unlocked!" -msgstr "" +msgstr "Gebruiker ontgrendeld!" #: application/controllers/User.php:110 msgid "Failed to unlock user!" -msgstr "" +msgstr "Gebruiker ontgrendelen mislukt!" #: application/controllers/User.php:114 msgid "User not found!" -msgstr "" +msgstr "Gebruiker niet gevonden!" #: application/controllers/User.php:127 msgid "Invalid Parameter!" -msgstr "" +msgstr "Ongeldige parameter!" #: application/controllers/User.php:183 #: application/views/club/permissions.php:155 msgid "Add User" -msgstr "" +msgstr "Gebruiker toevoegen" #: application/controllers/User.php:284 #, php-format msgid "Username %s already in use!" -msgstr "" +msgstr "Gebruikersnaam %s is al in gebruik!" #: application/controllers/User.php:287 #, php-format msgid "E-mail %s already in use!" -msgstr "" +msgstr "E-mail %s is al in gebruik!" #: application/controllers/User.php:290 msgid "Invalid Password!" -msgstr "" +msgstr "Ongeldig wachtwoord!" #: application/controllers/User.php:294 #, php-format msgid "User %s added!" -msgstr "" +msgstr "Gebruiker %s toegevoegd!" #: application/controllers/User.php:298 msgid "Users" -msgstr "" +msgstr "Gebruikers" #: application/controllers/User.php:378 application/controllers/User.php:811 #: application/views/club/permissions.php:253 msgid "Edit User" -msgstr "" +msgstr "Gebruiker bewerken" #: application/controllers/User.php:803 application/controllers/User.php:806 #, php-format msgid "User %s edited" -msgstr "" +msgstr "Gebruiker %s bewerkt" #: application/controllers/User.php:860 msgid "Profile" -msgstr "" +msgstr "Profiel" #: application/controllers/User.php:925 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" +"Gefeliciteerd! Wavelog is succesvol geïnstalleerd. Je kunt nu voor de eerste " +"keer inloggen." #: application/controllers/User.php:964 msgid "This is not allowed!" -msgstr "" +msgstr "Dit is niet toegestaan!" #: application/controllers/User.php:999 application/controllers/User.php:1010 msgid "Login failed. Try again." -msgstr "" +msgstr "Inloggen mislukt. Probeer het opnieuw." #: application/controllers/User.php:1017 #: application/views/interface_assets/header.php:369 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" -msgstr "" +msgstr "Inloggen" #: application/controllers/User.php:1055 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" +"Je kunt niet direct inloggen op een clubstation. Gebruik in plaats daarvan " +"je persoonlijke account." #: application/controllers/User.php:1058 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "" +"Je account is vergrendeld vanwege te veel mislukte inlogpogingen. Reset je " +"wachtwoord." #: application/controllers/User.php:1062 msgid "" @@ -2621,21 +2663,24 @@ msgid "" "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" +"Sorry. Deze instantie is momenteel in onderhoudsmodus. Als dit bericht " +"onverwacht verschijnt of blijft verschijnen, neem dan contact op met een " +"beheerder. Alleen beheerders mogen momenteel inloggen." #: application/controllers/User.php:1065 msgid "Incorrect username or password!" -msgstr "" +msgstr "Onjuiste gebruikersnaam of wachtwoord!" #: application/controllers/User.php:1088 #, php-format msgid "User %s logged out." -msgstr "" +msgstr "Gebruiker %s heeft zich afgemeld." #: application/controllers/User.php:1104 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" -msgstr "" +msgstr "Stationsnaam" #: application/controllers/User.php:1105 application/views/debug/index.php:584 #: application/views/public_search/result.php:17 @@ -2645,31 +2690,31 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:123 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" -msgstr "" +msgstr "Station roepnaam" #: application/controllers/User.php:1106 #: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:96 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" -msgstr "" +msgstr "Station DXCC" #: application/controllers/User.php:1107 msgid "Station CQ Zone" -msgstr "" +msgstr "Station CQ Zone" #: application/controllers/User.php:1108 msgid "Station ITU Zone" -msgstr "" +msgstr "Station ITU Zone" #: application/controllers/User.php:1109 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" -msgstr "" +msgstr "Station Locator" #: application/controllers/User.php:1124 msgid "Invalid Locator!" -msgstr "" +msgstr "Ongeldige locator!" #: application/controllers/User.php:1132 #, php-format @@ -2677,34 +2722,36 @@ msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " "setup, click %shere%s." msgstr "" +"Station succesvol aangemaakt! Welkom bij Wavelog! Om je station in te " +"stellen, klik %shier%s." #: application/controllers/User.php:1135 msgid "Station setup failed! Please set up your station manually." -msgstr "" +msgstr "Station installatie mislukt! Stel je station handmatig in." #: application/controllers/User.php:1152 msgid "Password Reset is disabled on the Demo!" -msgstr "" +msgstr "Wachtwoord resetten is uitgeschakeld in de demo!" #: application/controllers/User.php:1165 msgid "Forgot Password" -msgstr "" +msgstr "Wachtwoord vergeten" #: application/controllers/User.php:1216 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." -msgstr "" +msgstr "E-mailinstellingen zijn onjuist." #: application/controllers/User.php:1220 application/controllers/User.php:1225 msgid "Password Reset Processed." -msgstr "" +msgstr "Wachtwoordreset verwerkt." #: application/controllers/User.php:1326 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" -msgstr "" +msgstr "Wachtwoord opnieuw instellen" #: application/controllers/User.php:1386 #, php-format @@ -2712,6 +2759,8 @@ msgid "" "You currently can't impersonate another user. You need to set %s to %s in " "your config.php!" msgstr "" +"Je kunt momenteel geen andere gebruiker imiteren. Je moet %s instellen op %s " +"in je config.php!" #: application/controllers/User.php:1400 #: application/views/user/modals/admin_impersonate_modal.php:36 @@ -2719,10 +2768,12 @@ msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "" +"Je kunt momenteel geen andere gebruiker imiteren. Verander eerst de " +"encryption_key in je config.php-bestand!" #: application/controllers/User.php:1407 msgid "Invalid Hash" -msgstr "" +msgstr "Ongeldige hash" #: application/controllers/User.php:1420 msgid "The impersonation hash is too old. Please try again." @@ -2736,29 +2787,33 @@ msgstr "" #: application/controllers/User.php:1433 msgid "There was a problem with your session. Please try again." -msgstr "" +msgstr "Er was een probleem met je sessie. Probeer het opnieuw." #: application/controllers/User.php:1440 msgid "The requested user to impersonate does not exist" -msgstr "" +msgstr "De gevraagde gebruiker om te imiteren bestaat niet" #: application/controllers/User.php:1461 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "" +"Kon het juiste machtigingsniveau voor het clubstation niet bepalen. Probeer " +"het opnieuw na opnieuw inloggen." #: application/controllers/User.php:1506 application/controllers/User.php:1518 #: application/controllers/User.php:1524 application/controllers/User.php:1533 #: application/controllers/User.php:1541 msgid "Ups.. Something went wrong. Try to log back in." -msgstr "" +msgstr "Oeps.. Er is iets misgegaan. Probeer opnieuw in te loggen." #: application/controllers/User.php:1547 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "" +"De mogelijkheid om snel terug te keren is uitgeschakeld nadat de " +"beveiligingshash is verlopen. Log alstublieft opnieuw in." #: application/controllers/User.php:1563 #, php-format @@ -2766,6 +2821,8 @@ msgid "" "You have been logged out of the clubstation %s. Welcome back, %s, to your " "personal account!" msgstr "" +"Je bent uitgelogd bij het clubstation %s. Welkom terug, %s, op je " +"persoonlijke account!" #: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" @@ -2774,228 +2831,235 @@ msgstr "" #: application/controllers/Visitor.php:410 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" -msgstr "" +msgstr "Openbare zoekopdracht" #: application/controllers/Visitor.php:443 msgid "Export Map" -msgstr "" +msgstr "Kaart exporteren" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 #: application/views/interface_assets/header.php:473 msgid "QO-100 Dx Club Upload" -msgstr "" +msgstr "QO-100 Dx Club Upload" #: application/controllers/Widgets.php:21 msgid "Unknown Public Page, please make sure the public slug is correct." -msgstr "" +msgstr "Onbekende openbare pagina, controleer of de openbare slug correct is." #: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 msgid "No stations found that are using Wavelog OQRS." -msgstr "" +msgstr "Geen stations gevonden die Wavelog OQRS gebruiken." #: application/libraries/Callbook.php:86 msgid "QRZCQ Error" -msgstr "" +msgstr "QRZCQ Fout" #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." msgid "Province" -msgstr "" +msgstr "Provincie" #: application/libraries/Subdivisions.php:39 msgctxt "Division Name (States in various countries)." msgid "Oblast" -msgstr "" +msgstr "oblast" #: application/libraries/Subdivisions.php:41 #: application/libraries/Subdivisions.php:47 msgctxt "Division Name (States in various countries)." msgid "Region" -msgstr "" +msgstr "Regio" #: application/libraries/Subdivisions.php:45 msgctxt "Division Name (States in various countries)." msgid "Department" -msgstr "" +msgstr "Departement" #: application/libraries/Subdivisions.php:49 msgctxt "Division Name (States in various countries)." msgid "Municipality" -msgstr "" +msgstr "Gemeente" #: application/libraries/Subdivisions.php:51 msgctxt "Division Name (States in various countries)." msgid "Federal State" -msgstr "" +msgstr "Deelstaat" #: application/libraries/Subdivisions.php:56 #: application/libraries/Subdivisions.php:94 msgctxt "Division Name (States in various countries)." msgid "County" -msgstr "" +msgstr "County" #: application/libraries/Subdivisions.php:60 #: application/libraries/Subdivisions.php:85 msgctxt "Division Name (States in various countries)." msgid "District" -msgstr "" +msgstr "District" #: application/libraries/Subdivisions.php:62 msgctxt "Division Name (States in various countries)." msgid "Canton" -msgstr "" +msgstr "Kanton" #: application/libraries/Subdivisions.php:64 msgctxt "Division Name (States in various countries)." msgid "US State" -msgstr "" +msgstr "Amerikaanse staat" #: application/libraries/Subdivisions.php:67 msgctxt "Division Name (States in various countries)." msgid "Prefecture" -msgstr "" +msgstr "Prefectuur" #: application/libraries/Subdivisions.php:69 msgctxt "Division Name (States in various countries)." msgid "State" -msgstr "" +msgstr "Staat" #: application/libraries/Subdivisions.php:78 msgctxt "Division Name (States in various countries)." msgid "US County" -msgstr "" +msgstr "Amerikaanse county" #: application/libraries/Subdivisions.php:90 msgctxt "Division Name (States in various countries)." msgid "DME" -msgstr "" +msgstr "DME" #: application/libraries/Subdivisions.php:92 msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" -msgstr "" +msgstr "Stad / Ku / Gun" #: application/models/Club_model.php:154 msgid "Invalid Permission Level!" -msgstr "" +msgstr "Ongeldig machtigingsniveau!" #: application/models/Club_model.php:169 msgid "Error adding Club Member!" -msgstr "" +msgstr "Fout bij het toevoegen van clublid!" #: application/models/Eqslmethods_model.php:287 msgid "Your eQSL username and/or password is incorrect." -msgstr "" +msgstr "Je eQSL-gebruikersnaam en/of wachtwoord is onjuist." #: application/models/Eqslmethods_model.php:293 msgid "Something went wrong with eQSL.cc!" -msgstr "" +msgstr "Er is iets misgegaan met eQSL.cc!" #: application/models/Eqslmethods_model.php:309 msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." -msgstr "" +msgstr "eQSL.cc ondervindt problemen. Probeer later QSOs te exporteren." #: application/models/Eqslmethods_model.php:315 msgid "" "There was an error in one of the QSOs. You might want to manually upload " "them." msgstr "" +"Er was een fout in een van de QSOs. Je zou ze handmatig kunnen uploaden." #: application/models/Eqslmethods_model.php:321 msgid "" "It seems that the eQSL site has changed. Please open up an issue on GitHub." msgstr "" +"Het lijkt erop dat de eQSL-site is veranderd. Open alsjeblieft een issue op " +"GitHub." #: application/models/Hrdlog_model.php:22 msgid "" "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " -msgstr "" +msgstr "HRDlog: QSO's zijn geüpload naar hrdlog.net voor de station roepnaam: " #: application/models/Hrdlog_model.php:25 msgid "HRDlog: No QSOs found to upload for the station callsign: " -msgstr "" +msgstr "HRDlog: Geen QSOs gevonden om te uploaden voor de station roepnaam: " #: application/models/Hrdlog_model.php:31 msgid "HRDlog: No station profiles with HRDlog Credentials found." -msgstr "" +msgstr "HRDlog: Geen stationprofielen met HRDlog-gegevens gevonden." -#: application/models/Logbook_model.php:3875 +#: application/models/Logbook_model.php:3899 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" +"Verkeerde station roepnaam %s bij het importeren van QSO met %s voor %s: " +"OVERGESLAGEN" -#: application/models/Logbook_model.php:3876 +#: application/models/Logbook_model.php:3900 #, php-format msgid "Check %s for hints about errors in ADIF files." -msgstr "" +msgstr "Controleer %s voor hints over fouten in ADIF-bestanden." -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "QSO on" -msgstr "" +msgstr "QSO vanaf" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" 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:4187 +#: application/models/Logbook_model.php:4211 msgid "the qslrdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4198 +#: application/models/Logbook_model.php:4222 msgid "the qslsdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4259 +#: application/models/Logbook_model.php:4283 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" -msgstr "" +msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4279 +#: application/models/Logbook_model.php:4303 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de lotw_qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4300 +#: application/models/Logbook_model.php:4324 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de lotw_qslsdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4581 +#: application/models/Logbook_model.php:4605 #: application/views/simplefle/index.php:40 msgid "Duplicate for" -msgstr "" +msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:4642 +#: application/models/Logbook_model.php:4666 msgid "QSO could not be matched" -msgstr "" +msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:4648 +#: application/models/Logbook_model.php:4672 msgid "confirmed by LoTW/Clublog/eQSL/Contest" -msgstr "" +msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4653 +#: application/models/Logbook_model.php:4677 msgid "confirmed by award manager" -msgstr "" +msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:4656 +#: application/models/Logbook_model.php:4680 msgid "confirmed by cross-check of DCL data" -msgstr "" +msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:4659 +#: application/models/Logbook_model.php:4683 msgid "confirmation pending" -msgstr "" +msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:4662 +#: application/models/Logbook_model.php:4686 msgid "unconfirmed" -msgstr "" +msgstr "onbevestigd" -#: application/models/Logbook_model.php:4665 +#: application/models/Logbook_model.php:4689 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" -msgstr "" +msgstr "onbekend" -#: application/models/Logbook_model.php:5475 +#: application/models/Logbook_model.php:5499 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3007,78 +3071,78 @@ msgstr "" #: application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:20 msgid "Bearing" -msgstr "" +msgstr "Koers" #: application/models/Update_model.php:303 msgid "Newer release available:" -msgstr "" +msgstr "Nieuwere release beschikbaar:" #: application/models/Update_model.php:307 msgid "You are running the latest version." -msgstr "" +msgstr "Je draait de nieuwste versie." #: application/models/Update_model.php:385 msgid "cURL error:" -msgstr "" +msgstr "cURL-fout:" #: application/models/Update_model.php:420 msgid "SAT already existing. LoTW status updated." -msgstr "" +msgstr "SAT bestaat al. LoTW-status bijgewerkt." #: application/models/Update_model.php:422 msgid "SAT already existing. Updating LoTW status failed." -msgstr "" +msgstr "SAT bestaat al. Bijwerken van LoTW-status mislukt." #: application/models/Update_model.php:425 msgid "SAT already existing. Ignored." -msgstr "" +msgstr "SAT bestaat al. Genegeerd." #: application/models/Update_model.php:432 msgid "SAT already existing. Display name updated." -msgstr "" +msgstr "SAT bestaat al. Weergavenaam bijgewerkt." #: application/models/Update_model.php:434 msgid "SAT already existing. Updating display name failed." -msgstr "" +msgstr "SAT bestaat al. Bijwerken van de weergavenaam is mislukt." #: application/models/Update_model.php:444 msgid "New SAT. Inserted." -msgstr "" +msgstr "Nieuwe SAT. ingevoegd." #: application/models/Update_model.php:446 msgid "New SAT. Insert failed." -msgstr "" +msgstr "Nieuwe SAT. invoegen mislukt." #: application/views/accumulate/index.php:2 msgid "Accumulated number of DXCCs worked" -msgstr "" +msgstr "Opgeteld aantal gewerkte DXCC's" #: application/views/accumulate/index.php:3 msgid "Accumulated number of States worked" -msgstr "" +msgstr "Opgeteld aantal gewerkte staten" #: application/views/accumulate/index.php:4 msgid "Accumulated number of IOTAs worked" -msgstr "" +msgstr "Opgeteld aantal IOTAs gewerkt" #: application/views/accumulate/index.php:5 msgid "Accumulated number of CQ Zones worked" -msgstr "" +msgstr "Opgeteld aantal CQ-zones gewerkt" #: application/views/accumulate/index.php:6 msgid "Accumulated number of VUCC Grids worked" -msgstr "" +msgstr "Opgeteld aantal VUCC-grids gewerkt" #: application/views/accumulate/index.php:7 msgid "Accumulated number of WAJA worked" -msgstr "" +msgstr "Opgeteld aantal WAJA gewerkt" #: application/views/accumulate/index.php:8 #: application/views/dashboard/index.php:296 #: application/views/dayswithqso/index.php:41 #: application/views/dayswithqso/index.php:81 -#: application/views/statistics/index.php:18 -#: application/views/statistics/index.php:36 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:38 #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" @@ -3088,7 +3152,7 @@ msgstr "Jaar" #: application/views/accumulate/index.php:67 #: application/views/dayswithqso/index.php:14 msgid "Yearly" -msgstr "" +msgstr "Jaarlijks" #: application/views/accumulate/index.php:10 #: application/views/dashboard/index.php:301 @@ -3099,11 +3163,11 @@ msgstr "Maand" #: application/views/accumulate/index.php:11 #: application/views/accumulate/index.php:73 msgid "Monthly" -msgstr "" +msgstr "Maandelijks" #: application/views/accumulate/index.php:12 msgid "Difference" -msgstr "" +msgstr "Verschil" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 @@ -3212,41 +3276,41 @@ msgstr "" #: application/views/user/edit.php:653 #: application/views/visitor/layout/footer.php:172 msgid "All" -msgstr "" +msgstr "Alles" #: application/views/accumulate/index.php:50 #: application/views/timeline/index.php:41 msgid "Award" -msgstr "" +msgstr "Award" #: application/views/accumulate/index.php:53 #: application/views/timeline/index.php:44 msgid "DX Century Club (DXCC)" -msgstr "" +msgstr "DX Century Club (DXCC)" #: application/views/accumulate/index.php:55 #: application/views/timeline/index.php:46 msgid "Islands On The Air (IOTA)" -msgstr "" +msgstr "Islands On The Air (IOTA)" #: application/views/accumulate/index.php:56 #: application/views/timeline/index.php:47 msgid "Worked All Zones (WAZ)" -msgstr "" +msgstr "Worked All Zones (WAZ)" #: application/views/accumulate/index.php:57 #: application/views/timeline/index.php:48 msgid "VHF / UHF Century Club (VUCC)" -msgstr "" +msgstr "VHF / UHF Century Club (VUCC)" #: application/views/accumulate/index.php:58 #: application/views/timeline/index.php:49 msgid "Worked All Japan (WAJA)" -msgstr "" +msgstr "Worked All Japan (WAJA)" #: application/views/accumulate/index.php:62 msgid "Period" -msgstr "" +msgstr "Periode" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 @@ -3259,13 +3323,13 @@ msgstr "" #: application/views/timeline/index.php:79 #: application/views/view_log/qso.php:230 msgid "Propagation" -msgstr "" +msgstr "Propagatie" #: application/views/accumulate/index.php:84 #: application/views/distances/index.php:57 #: application/views/timeline/index.php:83 msgid "All but SAT" -msgstr "" +msgstr "Alles behalve SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 @@ -3275,7 +3339,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:357 #: application/views/timeline/index.php:84 msgid "None/Empty" -msgstr "" +msgstr "Geen/Leeg" #: application/views/accumulate/index.php:86 #: application/views/callstats/index.php:71 application/views/csv/index.php:95 @@ -3288,7 +3352,7 @@ msgstr "" #: application/views/view_log/qso.php:233 msgctxt "Propagation Mode" msgid "Aircraft Scatter" -msgstr "" +msgstr "Aircraft Scatter" #: application/views/accumulate/index.php:87 #: application/views/callstats/index.php:72 application/views/csv/index.php:96 @@ -3301,7 +3365,7 @@ msgstr "" #: application/views/view_log/qso.php:236 msgctxt "Propagation Mode" msgid "Aurora" -msgstr "" +msgstr "Aurora" #: application/views/accumulate/index.php:88 #: application/views/callstats/index.php:73 application/views/csv/index.php:97 @@ -3314,7 +3378,7 @@ msgstr "" #: application/views/view_log/qso.php:239 msgctxt "Propagation Mode" msgid "Aurora-E" -msgstr "" +msgstr "Aurora-E" #: application/views/accumulate/index.php:89 #: application/views/callstats/index.php:74 application/views/csv/index.php:98 @@ -3327,7 +3391,7 @@ msgstr "" #: application/views/view_log/qso.php:242 msgctxt "Propagation Mode" msgid "Back scatter" -msgstr "" +msgstr "Back scatter" #: application/views/accumulate/index.php:90 #: application/views/callstats/index.php:75 application/views/csv/index.php:99 @@ -3340,7 +3404,7 @@ msgstr "" #: application/views/view_log/qso.php:245 msgctxt "Propagation Mode" msgid "EchoLink" -msgstr "" +msgstr "EchoLink" #: application/views/accumulate/index.php:91 #: application/views/callstats/index.php:76 application/views/csv/index.php:100 @@ -3353,7 +3417,7 @@ msgstr "" #: application/views/view_log/qso.php:248 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" -msgstr "" +msgstr "Earth-Moon-Earth" #: application/views/accumulate/index.php:92 #: application/views/callstats/index.php:77 application/views/csv/index.php:101 @@ -3366,7 +3430,7 @@ msgstr "" #: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Sporadic E" -msgstr "" +msgstr "Sporadic E" #: application/views/accumulate/index.php:93 #: application/views/callstats/index.php:78 application/views/csv/index.php:102 @@ -3379,7 +3443,7 @@ msgstr "" #: application/views/view_log/qso.php:254 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:103 @@ -3392,7 +3456,7 @@ msgstr "" #: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "F2 Reflection" -msgstr "" +msgstr "F2 Reflection" #: application/views/accumulate/index.php:95 #: application/views/callstats/index.php:80 application/views/csv/index.php:104 @@ -3405,7 +3469,7 @@ msgstr "" #: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Internet-assisted" -msgstr "" +msgstr "Internet-ondersteund" #: application/views/accumulate/index.php:96 #: application/views/callstats/index.php:81 application/views/csv/index.php:105 @@ -3418,7 +3482,7 @@ msgstr "" #: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "Ionoscatter" -msgstr "" +msgstr "Ionoscatter" #: application/views/accumulate/index.php:97 #: application/views/callstats/index.php:82 application/views/csv/index.php:106 @@ -3431,7 +3495,7 @@ msgstr "" #: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "IRLP" -msgstr "" +msgstr "IRLP" #: application/views/accumulate/index.php:98 #: application/views/callstats/index.php:83 application/views/csv/index.php:107 @@ -3444,7 +3508,7 @@ msgstr "" #: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Meteor scatter" -msgstr "" +msgstr "Meteor scatter" #: application/views/accumulate/index.php:99 #: application/views/callstats/index.php:84 application/views/csv/index.php:108 @@ -3457,7 +3521,7 @@ msgstr "" #: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" +msgstr "Terrestrische of atmosferische repeater of transponder" #: application/views/accumulate/index.php:100 #: application/views/callstats/index.php:85 application/views/csv/index.php:109 @@ -3470,7 +3534,7 @@ msgstr "" #: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "Rain scatter" -msgstr "" +msgstr "Regen scatter" #: application/views/accumulate/index.php:101 #: application/views/callstats/index.php:86 application/views/csv/index.php:110 @@ -3496,7 +3560,7 @@ msgstr "Satelliet" #: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Trans-equatorial" -msgstr "" +msgstr "Trans-equatoriaal" #: application/views/accumulate/index.php:103 #: application/views/callstats/index.php:88 application/views/csv/index.php:112 @@ -3509,7 +3573,7 @@ msgstr "" #: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "Tropospheric ducting" -msgstr "" +msgstr "Tropospheric ducting" #: application/views/accumulate/index.php:112 #: application/views/activators/index.php:53 @@ -3541,7 +3605,7 @@ msgstr "" #: application/views/timeline/index.php:370 #: application/views/timeplotter/index.php:59 msgid "Show" -msgstr "" +msgstr "Toon" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 @@ -3561,7 +3625,7 @@ msgstr "" #: application/views/satellite/skedtable.php:7 #: application/views/satellite/skedtable.php:56 #: application/views/sattimers/index.php:38 -#: application/views/statistics/index.php:22 +#: application/views/statistics/index.php:24 msgid "Satellite" msgstr "Satelliet" @@ -3580,14 +3644,14 @@ msgstr "Satelliet" #: application/views/statistics/antennaanalytics.php:60 #: application/views/statistics/antennaanalytics.php:101 msgid "Orbit" -msgstr "" +msgstr "Baan" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:64 #: application/views/gridmap/index.php:92 #: application/views/timeline/index.php:52 msgid "Confirmation" -msgstr "" +msgstr "Bevestiging" #: application/views/activated_gridmap/index.php:82 #: application/views/awards/cq/index.php:68 @@ -3604,18 +3668,18 @@ msgstr "" #: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:695 msgid "QRZ.com" -msgstr "" +msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 #: application/views/gridmap/index.php:130 #: application/views/satellite/flightpath.php:46 msgid "Plot" -msgstr "" +msgstr "Plot" #: application/views/activated_gridmap/index.php:87 #: application/views/gridmap/index.php:131 msgid "Clear Markers" -msgstr "" +msgstr "Markeringen wissen" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:30 @@ -3623,7 +3687,7 @@ msgstr "" #: application/views/gridmap/index.php:148 #: application/views/logbookadvanced/index.php:8 msgid "Latitude" -msgstr "" +msgstr "Breedtegraad" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:32 @@ -3631,17 +3695,17 @@ msgstr "" #: application/views/gridmap/index.php:150 #: application/views/logbookadvanced/index.php:9 msgid "Longitude" -msgstr "" +msgstr "Lengtegraad" #: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" -msgstr "" +msgstr "Beide" #: application/views/activators/index.php:33 #: application/views/callstats/index.php:92 msgid "Minimum Count" -msgstr "" +msgstr "Minimum aantal" #: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 @@ -3669,7 +3733,7 @@ msgstr "" #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:65 application/views/timeline/index.php:158 msgid "Nothing found!" -msgstr "" +msgstr "Niets gevonden!" #: application/views/activators/index.php:98 #: application/views/adif/import.php:75 application/views/adif/import.php:221 @@ -3713,11 +3777,11 @@ msgstr "" #: application/views/user/index.php:151 application/views/user/profile.php:29 #: application/views/view_log/qso.php:83 application/views/view_log/qso.php:656 msgid "Callsign" -msgstr "Callsign" +msgstr "Roepnaam" #: application/views/activators/index.php:99 msgid "Count" -msgstr "" +msgstr "Tellen" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:150 @@ -3728,33 +3792,33 @@ msgstr "" #: application/views/timeline/index.php:328 #: application/views/timeline/index.php:357 msgid "Show QSO's" -msgstr "" +msgstr "Toon QSO's" #: application/views/activators/index.php:102 msgid "Show Map" -msgstr "" +msgstr "Toon kaart" #: application/views/adif/dcl_success.php:12 msgid "Results of DCL DOK Update" -msgstr "" +msgstr "Resultaten van DCL DOK-update" #: application/views/adif/dcl_success.php:16 #: application/views/cabrillo/cbr_success.php:16 msgid "Yay, its updated!" -msgstr "" +msgstr "Jippie, het is bijgewerkt!" #: application/views/adif/dcl_success.php:17 msgid "DCL information for DOKs has been updated." -msgstr "" +msgstr "DCL-informatie voor DOK's is bijgewerkt." #: application/views/adif/dcl_success.php:19 msgid "No QSOs found which could be updated." -msgstr "" +msgstr "Geen QSOs gevonden die bijgewerkt kunnen worden." #: application/views/adif/dcl_success.php:22 #: application/views/cabrillo/cbr_success.php:22 msgid "QSOs ignored" -msgstr "" +msgstr "QSOs genegeerd" #: application/views/adif/dcl_success.php:22 msgid "QSOs unmatched" @@ -3763,15 +3827,16 @@ msgstr "" #: application/views/adif/dcl_success.php:22 #: application/views/cabrillo/cbr_success.php:22 msgid "QSOs updated" -msgstr "" +msgstr "QSOs bijgewerkt" #: application/views/adif/dcl_success.php:25 msgid "DOK Errors" -msgstr "" +msgstr "DOK-fouten" #: application/views/adif/dcl_success.php:26 msgid "There is different data for DOK in your log compared to DCL" msgstr "" +"Er zijn verschillende gegevens voor DOK in je logboek vergeleken met DCL" #: application/views/adif/dcl_success.php:29 #: application/views/awards/pota/index.php:32 @@ -3863,19 +3928,19 @@ msgstr "Tijd" #: application/views/visitor/index.php:156 #: application/views/widgets/qsos.php:29 msgid "Call" -msgstr "" +msgstr "Roepnaam" #: application/views/adif/dcl_success.php:34 msgid "DOK in Log" -msgstr "" +msgstr "DOK in logboek" #: application/views/adif/dcl_success.php:35 msgid "DOK in DCL" -msgstr "" +msgstr "DOK in DCL" #: application/views/adif/dcl_success.php:36 msgid "DCL QSL Status" -msgstr "" +msgstr "DCL QSL-status" #: application/views/adif/import.php:24 msgid "ADIF Export" @@ -3883,11 +3948,11 @@ msgstr "ADIF Export" #: application/views/adif/import.php:36 application/views/adif/import.php:291 msgid "DARC DCL" -msgstr "" +msgstr "DARC DCL" #: application/views/adif/import.php:45 msgid "CBR Import" -msgstr "" +msgstr "CBR Importeren" #: application/views/adif/import.php:64 application/views/adif/import.php:338 #: application/views/api/index.php:16 application/views/dashboard/index.php:172 @@ -3901,11 +3966,11 @@ msgstr "Belangrijk" #: application/views/adif/import.php:64 msgid "Log Files must have the file type *.adi" -msgstr "" +msgstr "Logbestanden moeten het bestandstype *.adi hebben" #: application/views/adif/import.php:65 application/views/view_log/qso.php:771 msgid "Maximum file upload size is " -msgstr "" +msgstr "Maximale bestandsgrootte voor uploaden is " #: application/views/adif/import.php:65 application/views/adif/import.php:268 #: application/views/adif/import.php:307 application/views/debug/index.php:193 @@ -3919,7 +3984,7 @@ msgstr "" #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" -msgstr "" +msgstr "Waarschuwing" #: application/views/adif/import.php:69 application/views/adif/import.php:71 #: application/views/adif/import.php:215 application/views/adif/import.php:263 @@ -3927,84 +3992,88 @@ msgstr "" #: application/views/qrz/export.php:91 application/views/reg1test/index.php:30 #: application/views/webadif/export.php:89 msgid "Select Station Location" -msgstr "" +msgstr "Selecteer stationlocatie" #: application/views/adif/import.php:82 msgid "Select the operator of the imported QSOs" -msgstr "" +msgstr "Selecteer de operator van de geïmporteerde QSOs" #: application/views/adif/import.php:94 msgid "Add QSOs to Contest" -msgstr "" +msgstr "QSO's toevoegen aan contest" #: application/views/adif/import.php:96 application/views/adif/import.php:345 #: application/views/simplefle/index.php:85 msgid "No Contest" -msgstr "" +msgstr "Geen contest" #: application/views/adif/import.php:102 msgid "ADIF File" -msgstr "" +msgstr "ADIF-bestand" #: application/views/adif/import.php:109 msgid "Import duplicate QSOs" -msgstr "" +msgstr "Dubbele QSOs importeren" #: application/views/adif/import.php:118 msgid "Mark imported QSOs as uploaded to LoTW" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar LoTW" #: application/views/adif/import.php:120 application/views/adif/import.php:130 #: application/views/adif/import.php:140 application/views/adif/import.php:150 #: application/views/adif/import.php:160 application/views/adif/import.php:170 msgid "Select if ADIF being imported does not contain this information." -msgstr "" +msgstr "Selecteer als ADIF die informatie niet bevat bij het importeren." #: application/views/adif/import.php:128 msgid "Mark imported QSOs as uploaded to eQSL Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar eQSL logboek" #: application/views/adif/import.php:138 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar HRDLog.net logboek" #: application/views/adif/import.php:148 msgid "Mark imported QSOs as uploaded to QRZ Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar QRZ logbook" #: application/views/adif/import.php:158 msgid "Mark imported QSOs as uploaded to Clublog Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar Clublog logboek" #: application/views/adif/import.php:168 msgid "Mark imported QSOs as uploaded to DCL Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar DCL logbook" #: application/views/adif/import.php:178 msgid "Use DXCC information from ADIF" -msgstr "" +msgstr "Gebruik DXCC-informatie van ADIF" #: application/views/adif/import.php:180 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" +"Als het niet geselecteerd is, zal Wavelog proberen om automatisch DXCC-" +"informatie te bepalen." #: application/views/adif/import.php:189 msgid "" "Always use the logged-in account callsign as the operator call during import" msgstr "" +"Gebruik altijd de ingelogde accountroepnaam als de operatorroepnaam tijdens " +"het importeren" #: application/views/adif/import.php:199 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:551 #: application/views/interface_assets/footer.php:2265 msgid "DANGER" -msgstr "" +msgstr "GEVAAR" #: application/views/adif/import.php:199 msgid "Ignore Stationcallsign on import" -msgstr "" +msgstr "Negeer stationroepnaam bij import" #: application/views/adif/import.php:201 #, php-format @@ -4012,22 +4081,27 @@ msgid "" "If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" +"Als je het selecteert, zal Wavelog proberen om %salle%s QSO's van de ADIF te " +"importeren, ongeacht of ze overeenkomen met de gekozen station-locatie." #: application/views/adif/import.php:205 application/views/adif/import.php:322 #: application/views/adif/import.php:360 application/views/hrdlog/export.php:50 #: application/views/qrz/export.php:55 application/views/webadif/export.php:55 msgid "Upload" -msgstr "" +msgstr "Uploaden" #: application/views/adif/import.php:212 msgid "Take your logbook file anywhere!" -msgstr "" +msgstr "Neem je logboekbestand overal mee naartoe!" #: application/views/adif/import.php:213 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" +"Het exporteren van ADIF's stelt je in staat om contacten te importeren in " +"applicaties van derden zoals LoTW, Awards of gewoon voor het maken van een " +"back-up." #: application/views/adif/import.php:214 #, php-format @@ -4036,6 +4110,8 @@ msgid "" "If you need more filtering, you can use %sthe Advanced Logbook%s to filter " "and export!" msgstr "" +"Als je meer filtering nodig hebt, kun je %shet Geavanceerde Logboek%s " +"gebruiken om te filteren en exporteren!" #: application/views/adif/import.php:225 application/views/adif/import.php:270 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 @@ -4044,7 +4120,7 @@ msgstr "" #: application/views/lotw/import.php:39 application/views/qrz/export.php:78 #: application/views/qrz/export.php:99 application/views/webadif/export.php:97 msgid "From date" -msgstr "" +msgstr "Vanaf datum" #: application/views/adif/import.php:228 application/views/adif/import.php:273 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 @@ -4053,40 +4129,40 @@ msgstr "" #: application/views/qrz/export.php:104 #: application/views/webadif/export.php:102 msgid "To date" -msgstr "" +msgstr "Tot datum" #: application/views/adif/import.php:236 msgid "Mark exported QSOs as uploaded to LoTW" -msgstr "" +msgstr "Markeer geëxporteerde QSOs als geüpload naar LoTW" #: application/views/adif/import.php:244 msgid "Export QSOs not uploaded to LoTW" -msgstr "" +msgstr "Exporteer QSO's die niet naar LoTW zijn geüpload" #: application/views/adif/import.php:249 msgid "Export QSO's" -msgstr "" +msgstr "Exporteer QSO's" #: application/views/adif/import.php:254 msgid "Export Satellite-Only QSOs" -msgstr "" +msgstr "Exporteer alleen satelliet-QSOs" #: application/views/adif/import.php:255 msgid "Export All Satellite QSOs" -msgstr "" +msgstr "Exporteer alle satelliet-QSOs" #: application/views/adif/import.php:257 msgid "Export All Satellite QSOs Confirmed on LoTW" -msgstr "" +msgstr "Exporteer alle satelliet-QSOs bevestigd op LoTW" #: application/views/adif/import.php:268 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:96 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" -msgstr "" +msgstr "Als er geen datumbereik is geselecteerd, worden alle QSOs gemarkeerd!" #: application/views/adif/import.php:276 msgid "Mark QSOs as exported to LoTW" -msgstr "" +msgstr "Markeer QSOs als geëxporteerd naar LoTW" #: application/views/adif/import.php:291 #, php-format @@ -4096,36 +4172,46 @@ msgid "" "List). The downloaded ADIF file can be uploaded here in order to update QSOs " "with DOK info." msgstr "" +"Ga naar %s en exporteer je logboek met bevestigde DOKs. Om het proces te " +"versnellen kun je ervoor kiezen om alleen DL QSOs te downloaden (d.w.z. 'DL' " +"in de Prefixlijst zetten). Het gedownloade ADIF-bestand kan hier worden " +"geüpload om QSOs bij te werken met DOK-informatie." #: application/views/adif/import.php:298 msgid "Only import DOK data from QSOs confirmed on DCL." -msgstr "" +msgstr "Importeer alleen DOK-gegevens van QSO's die op DCL zijn bevestigd." #: application/views/adif/import.php:300 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" +"Schakel uit als je DOK ook wilt bijwerken met gegevens van onbevestigde " +"QSO's in DCL." #: application/views/adif/import.php:307 msgid "Overwrites exisiting DOK in log by DCL (if different)." -msgstr "" +msgstr "Overschrijft bestaande DOK in log door DCL (indien anders)." #: application/views/adif/import.php:309 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" +"Als dit is aangevinkt, zal Wavelog bestaande DOK met DOK uit DCL-logboek " +"geforceerd overschrijven." #: application/views/adif/import.php:316 msgid "Ignore QSOs that cannot be matched." -msgstr "Negeer QSOs die niet kunnen worden bevestigd" +msgstr "Negeer QSOs die niet kunnen worden bevestigd." #: application/views/adif/import.php:318 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +"Als dit niet is aangevinkt, wordt informatie over QSOs die niet in Wavelog " +"konden worden gevonden, weergegeven." #: application/views/adif/import.php:337 msgid "" @@ -4135,11 +4221,16 @@ msgid "" "can provide the Cabrillo file that this software also provides to rewrite " "that data in Wavelog." msgstr "" +"Als je een ADIF-bestand van een contest hebt geïmporteerd, geleverd door een " +"andere logsoftware, worden soms, afhankelijk van die software, je " +"uitwisselingen niet correct geïmporteerd vanuit het ADIF-bestand van die " +"software. Als je dat wilt corrigeren, kun je het Cabrillo-bestand dat deze " +"software ook levert gebruiken om die gegevens in Wavelog te herschrijven." #: application/views/adif/import.php:337 #: application/views/lotw_views/index.php:137 msgid "Information" -msgstr "" +msgstr "Informatie" #: application/views/adif/import.php:338 msgid "" @@ -4148,36 +4239,48 @@ msgid "" "from both your already imported ADIF file, as well as the CBR file you are " "about to upload to match the QSOs and only correct relevant data." msgstr "" +"Gebruik deze functie voordat je iets verandert aan de QSOs in Wavelog, " +"aangezien deze functie de Contest ID gebruikt, evenals datum- en " +"tijdsinformatie van zowel je al geïmporteerde ADIF-bestand als het CBR-" +"bestand dat je gaat uploaden om de QSOs te matchen en alleen relevante " +"gegevens te corrigeren." #: application/views/adif/import.php:343 msgid "Contest Name, only if Contest ID in CBR is different" -msgstr "" +msgstr "Contest-naam, alleen als Contest-ID in CBR anders is" #: application/views/adif/import.php:343 msgid "Optional" -msgstr "" +msgstr "Optioneel" #: application/views/adif/import.php:353 msgid "" "A serial number is ALWAYS part of the exchange for both parties in this " "contest." msgstr "" +"Een serienummer maakt ALTIJD deel uit van de uitwisseling voor beide " +"partijen in deze contest." #: application/views/adif/import.php:355 msgid "" "If you or your partner only sometimes exchange serial numbers, please leave " "this unchecked." msgstr "" +"Als jij of je partner slechts af en toe serienummers uitwisselen, laat dit " +"dan uitgevinkt." #: application/views/adif/import.php:356 msgid "" "If unchecked, this will erase the default serial number that (for example) " "N1MM+ produces. If checked, it will correct the serial number if necessary." msgstr "" +"Als dit niet is aangevinkt, wordt het standaard serienummer dat " +"(bijvoorbeeld) N1MM+ produceert, gewist. Als het is aangevinkt, wordt het " +"serienummer indien nodig gecorrigeerd." #: application/views/adif/import_failed.php:15 msgid "The ADIF file could not be parsed correctly." -msgstr "" +msgstr "Het ADIF-bestand kon niet correct worden verwerkt." #: application/views/adif/import_failed.php:16 msgid "" @@ -4185,26 +4288,29 @@ msgid "" "database. Please check the imported ADIF file. You can use an online ADIF " "file checker. For example:" msgstr "" +"Ten minste één van de ADIF-velden kon niet worden verwerkt en/of in de " +"database worden ingevoerd. Controleer het geïmporteerde ADIF-bestand. Je " +"kunt een online ADIF-bestandscontrole gebruiken. Bijvoorbeeld:" #: application/views/adif/import_success.php:17 msgid "Yay, its imported!" -msgstr "" +msgstr "Jippie, het is geïmporteerd!" #: application/views/adif/import_success.php:18 msgid "The ADIF File has been imported." -msgstr "" +msgstr "Het ADIF-bestand is geïmporteerd." #: application/views/adif/import_success.php:22 msgid "Dupes were inserted!" -msgstr "" +msgstr "Duplicaten zijn ingevoegd!" #: application/views/adif/import_success.php:24 msgid "Dupes were skipped." -msgstr "" +msgstr "Duplicaten werden overgeslagen." #: application/views/adif/import_success.php:30 msgid "You imported at least 1 QSO containing a contest ID." -msgstr "" +msgstr "Je hebt ten minste 1 QSO geïmporteerd met een contest-ID." #: application/views/adif/import_success.php:31 msgid "" @@ -4212,43 +4318,50 @@ msgid "" "not be imported properly from that softwares ADIF. If you like to correct " "that, switch to the CBR Import Tab of the ADIF Import page." msgstr "" +"Soms, afhankelijk van je contest logging software, worden je uitwisselingen " +"niet correct geïmporteerd vanuit de ADIF van die software. Als je dat wilt " +"corrigeren, schakel dan over naar het CBR Import Tabblad van de ADIF Import " +"pagina." #: application/views/adif/import_success.php:32 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" +"We hebben de volgende aantallen QSO's gevonden voor de volgende contest-ID's:" #: application/views/adif/import_success.php:44 msgid "Import details / possible problems" -msgstr "" +msgstr "Importdetails / mogelijke problemen" #: application/views/adif/import_success.php:45 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" msgstr "" +"Mogelijk heb je ADIF-fouten, de QSO's zijn nog steeds toegevoegd. Controleer " +"de volgende informatie:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 #: application/views/qrz/mark_qrz.php:12 #: application/views/webadif/mark_webadif.php:12 msgid "QSOs marked" -msgstr "" +msgstr "QSOs gemarkeerd" #: application/views/adif/mark_lotw.php:15 msgid "Yay, its done!" -msgstr "" +msgstr "Jippie, het is klaar!" #: application/views/adif/mark_lotw.php:16 msgid "The QSOs are marked as exported to LoTW." -msgstr "" +msgstr "De QSO's zijn gemarkeerd als geëxporteerd naar LoTW." #: application/views/api/description.php:15 msgid "Editing Description for API Key" -msgstr "" +msgstr "Bewerk beschrijving voor API-sleutel" #: application/views/api/description.php:28 msgid "Simple name to describe what you use this API for." -msgstr "" +msgstr "Eenvoudige naam om te beschrijven waarvoor je deze API gebruikt." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 @@ -4268,12 +4381,12 @@ msgstr "" #: application/views/satellite/create.php:82 #: application/views/simplefle/index.php:22 msgid "Save" -msgstr "" +msgstr "Opslaan" #: application/views/api/index.php:8 #: application/views/interface_assets/header.php:480 msgid "API Keys" -msgstr "" +msgstr "API-sleutels" #: application/views/api/index.php:11 msgid "" @@ -4281,6 +4394,9 @@ msgid "" "access Wavelog in a controlled way. Access to the API is managed via API " "keys." msgstr "" +"De Wavelog API (Application Programming Interface) stelt externe systemen in " +"staat om op een gecontroleerde manier toegang te krijgen tot Wavelog. " +"Toegang tot de API wordt beheerd via API-sleutels." #: application/views/api/index.php:12 msgid "" @@ -4289,19 +4405,23 @@ msgid "" "Wavelog. Generate a read-only key if the application only needs to obtain " "data from Wavelog." msgstr "" +"Je moet een API-sleutel genereren voor elk hulpmiddel dat je wilt gebruiken " +"(bijv. WLgate). Genereer een lees-schrijf sleutel als de applicatie gegevens " +"naar Wavelog moet verzenden. Genereer een alleen-lezen sleutel als de " +"applicatie alleen gegevens van Wavelog hoeft te verkrijgen." #: application/views/api/index.php:13 msgid "API URL" -msgstr "" +msgstr "API URL" #: application/views/api/index.php:13 application/views/api/index.php:48 #: application/views/cron/index.php:22 application/views/debug/index.php:46 msgid "Copy to clipboard" -msgstr "" +msgstr "Kopiëren naar klembord" #: application/views/api/index.php:13 msgid "The API URL for this Wavelog instance is" -msgstr "" +msgstr "De API-URL voor dit Wavelog-exemplaar is" #: application/views/api/index.php:14 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 application/views/radio/index.php:26 @@ -4313,41 +4433,45 @@ msgstr "" #: application/views/sattimers/index.php:77 #: application/views/search/filter.php:72 msgid "Info" -msgstr "" +msgstr "Informatie" #: application/views/api/index.php:14 msgid "" "It's good practice to delete a key if you are no longer using the associated " "application." msgstr "" +"Het is een goede gewoonte om een sleutel te verwijderen als je de " +"bijbehorende applicatie niet meer gebruikt." #: application/views/api/index.php:16 msgid "" "On Clubstations the API Keys are personal and not shared. Clubstation users " "can only see their own keys." msgstr "" +"Op clubstations zijn de API-sleutels persoonlijk en worden niet gedeeld. " +"Gebruikers van clubstations kunnen alleen hun eigen sleutels zien." #: application/views/api/index.php:24 msgid "API Key" -msgstr "" +msgstr "API-sleutel" #: application/views/api/index.php:25 application/views/cron/edit.php:30 #: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" -msgstr "" +msgstr "Beschrijving" #: application/views/api/index.php:26 msgid "Last Used" -msgstr "" +msgstr "Laatst gebruikt" #: application/views/api/index.php:28 msgid "Created By" -msgstr "" +msgstr "Gemaakt door" #: application/views/api/index.php:30 msgid "Permissions" -msgstr "" +msgstr "Machtigingen" #: application/views/api/index.php:31 application/views/cron/index.php:54 #: application/views/lotw/satupdate.php:7 @@ -4358,7 +4482,7 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:31 #: application/views/timeline/index.php:201 msgid "Status" -msgstr "" +msgstr "Status" #: application/views/api/index.php:32 #: application/views/club/permissions.php:226 @@ -4367,36 +4491,36 @@ msgstr "" #: application/views/qrz/export.php:44 application/views/user/index.php:33 #: application/views/user/index.php:156 application/views/webadif/export.php:45 msgid "Actions" -msgstr "" +msgstr "Acties" #: application/views/api/index.php:58 msgid "Read & Write" -msgstr "" +msgstr "Lezen & Schrijven" #: application/views/api/index.php:60 msgid "Read-Only" -msgstr "" +msgstr "Alleen-lezen" #: application/views/api/index.php:70 msgid "Test" -msgstr "" +msgstr "Test" #: application/views/api/index.php:73 #, php-format msgid "Are you sure you want delete the API Key %s?" -msgstr "" +msgstr "Weet je zeker dat je de API-sleutel %s wilt verwijderen?" #: application/views/api/index.php:86 msgid "You have no API Keys." -msgstr "" +msgstr "Je hebt geen API-sleutels." #: application/views/api/index.php:90 msgid "Create a read & write key" -msgstr "" +msgstr "Maak een lees- en schrijfsleutel" #: application/views/api/index.php:91 msgid "Create a read-only key" -msgstr "" +msgstr "Maak een alleen-lezen sleutel aan" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 @@ -4404,11 +4528,11 @@ msgstr "" #: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" -msgstr "" +msgstr "Filteren op" #: application/views/awards/counties/details.php:13 msgid "County" -msgstr "" +msgstr "County" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 @@ -4451,11 +4575,11 @@ msgstr "" #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" -msgstr "" +msgstr "Award informatie" #: application/views/awards/counties/index.php:7 msgid "US County Award" -msgstr "" +msgstr "US County Award" #: application/views/awards/counties/index.php:8 #, php-format @@ -4464,6 +4588,10 @@ msgid "" "magazine, is issued for confirmed two-way radio contacts with specified " "numbers of U.S. counties under rules and conditions you can find %s." msgstr "" +"De United States of America Counties Award (USA-CA), gesponsord door CQ " +"Magazine, wordt uitgereikt voor bevestigde tweerichtingsradioverbindingen " +"met een bepaald aantal Amerikaanse county's volgens de regels en voorwaarden " +"die je kunt vinden %s." #: application/views/awards/counties/index.php:9 msgid "" @@ -4471,18 +4599,22 @@ msgid "" "individuals for all county contacts made, regardless of callsigns used, " "operating locations, or dates." msgstr "" +"USA-CA is beschikbaar voor alle gelicenseerde amateurs wereldwijd en wordt " +"uitgegeven aan individuen voor alle county-contacten, ongeacht de gebruikte " +"roepnamen, operationele locaties of data." #: application/views/awards/counties/index.php:10 msgid "Special USA-CA awards are also available to SWLs on a heard basis." msgstr "" +"Speciale USA-CA-awards zijn ook beschikbaar voor SWLs op basis van gehoord." #: application/views/awards/counties/index.php:21 msgid "Counties Worked" -msgstr "" +msgstr "Counties gewerkt" #: application/views/awards/counties/index.php:22 msgid "Counties Confirmed" -msgstr "" +msgstr "Counties bevestigd" #: application/views/awards/counties/index.php:39 #: application/views/awards/cq/index.php:176 @@ -4511,7 +4643,7 @@ msgstr "" #: application/views/statistics/uniquetable.php:23 #: application/views/visitor/index.php:245 msgid "Total" -msgstr "" +msgstr "Totaal" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 @@ -4531,16 +4663,16 @@ msgstr "" #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 msgid "CQ Zone" -msgstr "" +msgstr "CQ Zone" #: application/views/awards/cq/index.php:4 #: application/views/awards/itu/index.php:4 msgid "Hover over a zone" -msgstr "" +msgstr "Zweef over een zone" #: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" -msgstr "" +msgstr "CQ Magazine WAZ Award" #: application/views/awards/cq/index.php:21 msgid "" @@ -4548,22 +4680,28 @@ msgid "" "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" +"Het CQ Magazine is gevestigd in de VS en is een van de populairste " +"amateurradiotijdschriften ter wereld. Het tijdschrift verscheen voor het " +"eerst in januari 1945 en richt zich op onderscheidingen en de praktische " +"aspecten van amateurradio." #: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" +"De WAZ Award staat voor 'Worked All Zones' en vereist radiocontacten met " +"alle 40 CQ Zones samen met de bijbehorende bevestiging." #: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." -msgstr "" +msgstr "Je kunt alle informatie en regels vinden op de website van de %s." #: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" -msgstr "" +msgstr "Awards - CQ Magazine WAZ" #: application/views/awards/cq/index.php:34 #: application/views/awards/itu/index.php:34 @@ -4602,7 +4740,7 @@ msgstr "Gewerkt" #: application/views/awards/waja/index.php:37 #: application/views/awards/was/index.php:37 msgid "Show worked" -msgstr "" +msgstr "Toon gewerkt" #: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 @@ -4617,7 +4755,7 @@ msgstr "" #: application/views/awards/waja/index.php:41 #: application/views/awards/was/index.php:41 msgid "Show confirmed" -msgstr "" +msgstr "Toon bevestigd" #: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 @@ -4631,7 +4769,7 @@ msgstr "" #: application/views/awards/waja/index.php:45 #: application/views/awards/was/index.php:45 msgid "Show not worked" -msgstr "" +msgstr "Toon niet gewerkt" #: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 @@ -4645,7 +4783,7 @@ msgstr "" #: application/views/awards/waja/index.php:51 #: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" -msgstr "" +msgstr "Toon QSO met QSL-type" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 @@ -4654,7 +4792,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" -msgstr "" +msgstr "QSL-kaart" #: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 @@ -4678,7 +4816,7 @@ msgstr "Herstel" #: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" -msgstr "" +msgstr "Toon CQ Zone-kaart" #: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 @@ -4689,7 +4827,7 @@ msgstr "" #: application/views/awards/waja/index.php:128 #: application/views/awards/was/index.php:124 msgid "Table" -msgstr "" +msgstr "Tabel" #: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 @@ -4705,7 +4843,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:617 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" -msgstr "" +msgstr "Kaart" #: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 @@ -4720,7 +4858,7 @@ msgstr "" #: application/views/awards/waja/index.php:170 #: application/views/awards/was/index.php:170 msgid "Summary" -msgstr "" +msgstr "Samenvatting" #: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 @@ -4735,7 +4873,7 @@ msgstr "" #: application/views/awards/waja/index.php:184 #: application/views/awards/was/index.php:183 msgid "Total worked" -msgstr "" +msgstr "Totaal gewerkt" #: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 @@ -4750,11 +4888,11 @@ msgstr "" #: application/views/awards/waja/index.php:191 #: application/views/awards/was/index.php:190 msgid "Total confirmed" -msgstr "" +msgstr "Totaal bevestigd" #: application/views/awards/dok/index.php:7 msgid "DOK Award" -msgstr "" +msgstr "DOK Award" #: application/views/awards/dok/index.php:8 msgid "" @@ -4765,6 +4903,12 @@ msgid "" "'Deutscher Ortsverband Kenner' (English: 'German Local Association " "Identifier')." msgstr "" +"Duitsland strekt zich uit over 630 km van oost naar west en bijna 900 km van " +"noord naar zuid. Ongeveer 70.000 van de 82 miljoen inwoners van Duitsland " +"zijn gelicenseerde zendamateurs, waarvan meer dan 40.000 lid zijn van de " +"DARC. DOK is een systeem dat individuele lokale afdelingen een identificatie " +"geeft en staat voor 'Deutscher Ortsverband Kenner' (Nederlands: 'Duitse " +"Lokale Vereniging Identificatie')." #: application/views/awards/dok/index.php:9 msgid "" @@ -4773,10 +4917,15 @@ msgid "" "or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " "is a common mistake, often being logged as the letter O." msgstr "" +"De DOK bestaat uit een letter voor het district en een tweecijferig nummer " +"voor de lokale afdeling, zoals P03 Friedrichshafen (stad van de 'Hamradio " +"tentoonstelling') of F41 Baunatal (locatie van het DARC-hoofdkantoor). Let " +"op: Een nul in een DOK is een veelgemaakte fout, vaak geregistreerd als de " +"letter O." #: application/views/awards/dok/index.php:10 msgid "DARC website" -msgstr "" +msgstr "DARC-website" #: application/views/awards/dok/index.php:10 #, php-format @@ -4785,14 +4934,16 @@ msgid "" "This information is provided by the %s. Information about the DOK Awards and " "its rules can be found %s." msgstr "" +"Deze informatie wordt verstrekt door de %s. Informatie over de DOK Awards en " +"de regels ervan is te vinden %s." #: application/views/awards/dok/index.php:20 msgid "DOK / SDOK" -msgstr "" +msgstr "DOK / SDOK" #: application/views/awards/dok/index.php:23 msgid "DOK + SDOK" -msgstr "" +msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 @@ -4804,7 +4955,7 @@ msgstr "" #: application/views/awards/waja/index.php:33 #: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" -msgstr "" +msgstr "Gewerkt / Bevestigd" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 @@ -4817,15 +4968,15 @@ msgstr "" #: application/views/awards/waja/index.php:80 #: application/views/awards/was/index.php:76 msgid "Every band" -msgstr "" +msgstr "Elke band" #: application/views/awards/dxcc/index.php:14 msgid "DXCC Award" -msgstr "" +msgstr "DXCC Award" #: application/views/awards/dxcc/index.php:15 msgid "'How to Count Countries Worked, A New DX Scoring System'" -msgstr "" +msgstr "'How to Count Countries Worked, A New DX Scoring System'" #: application/views/awards/dxcc/index.php:15 #, php-format @@ -4834,17 +4985,20 @@ msgid "" "DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " "W1CBD, titled %s." msgstr "" +"DXCC staat voor 'DX Century Club,' een award gebaseerd op gewerkte landen. " +"De DXCC-lijst is gebaseerd op een artikel uit 1935 door Clinton B. DeSoto, " +"W1CBD, getiteld %s." #: application/views/awards/dxcc/index.php:16 #: application/views/awards/wac/index.php:11 msgid "ARRL website" -msgstr "" +msgstr "ARRL-website" #: application/views/awards/dxcc/index.php:16 #: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." -msgstr "" +msgstr "Je kunt alle informatie over de DXCC Award vinden op de %s." #: application/views/awards/dxcc/index.php:17 msgid "" @@ -4854,11 +5008,17 @@ msgid "" "will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " "these DXCC entities are outdated and no longer valid." msgstr "" +"Belangrijke opmerking: In de loop der tijd zijn de criteria voor de DXCC-" +"lijst veranderd. De lijst blijft ongewijzigd totdat een entiteit niet langer " +"voldoet aan de criteria waaronder deze is toegevoegd, waarna deze naar de " +"verwijderde lijst wordt verplaatst. Je vindt verwijderde DXCC-entiteiten ook " +"in de lijsten op Wavelog. Wees je ervan bewust dat deze DXCC-entiteiten " +"verouderd en niet langer geldig zijn." #: application/views/awards/dxcc/index.php:32 #: application/views/awards/iota/index.php:33 msgid "Include deleted" -msgstr "" +msgstr "Inclusief verwijderd" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 @@ -4869,7 +5029,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:394 #: application/views/view_log/qso.php:350 msgid "Antarctica" -msgstr "" +msgstr "Antarctica" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 @@ -4880,7 +5040,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:393 #: application/views/view_log/qso.php:347 msgid "Africa" -msgstr "" +msgstr "Afrika" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 @@ -4891,7 +5051,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:395 #: application/views/view_log/qso.php:353 msgid "Asia" -msgstr "" +msgstr "Azië" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 @@ -4902,7 +5062,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:396 #: application/views/view_log/qso.php:356 msgid "Europe" -msgstr "" +msgstr "Europa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 @@ -4913,7 +5073,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:397 #: application/views/view_log/qso.php:359 msgid "North America" -msgstr "" +msgstr "Noord-Amerika" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 @@ -4924,7 +5084,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:399 #: application/views/view_log/qso.php:365 msgid "South America" -msgstr "" +msgstr "Zuid-Amerika" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 @@ -4935,15 +5095,15 @@ msgstr "" #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:398 #: application/views/view_log/qso.php:362 msgid "Oceania" -msgstr "" +msgstr "Oceanië" #: application/views/awards/dxcc/index.php:189 msgid "Show DXCC Map" -msgstr "" +msgstr "Toon DXCC-kaart" #: application/views/awards/dxcc/index.php:225 msgid "DXCC Name" -msgstr "" +msgstr "DXCC-naam" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 @@ -4951,12 +5111,12 @@ msgstr "" #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" -msgstr "" +msgstr "Voorvoegsel" #: application/views/awards/ffma/index.php:8 #: application/views/interface_assets/header.php:251 msgid "Fred Fish Memorial Award" -msgstr "" +msgstr "Fred Fish Memorial Award" #: application/views/awards/ffma/index.php:9 msgid "" @@ -4964,21 +5124,26 @@ msgid "" "who was the first amateur to have worked and confirmed all 488 Maidenhead " "grid squares in the 48 contiguous United States on 6 Meters." msgstr "" +"De Fred Fish Memorial Award is opgericht ter ere van Fred Fish, W5FF (SK), " +"die de eerste amateur was die alle 488 Maidenhead grid vierkanten in de 48 " +"aaneengesloten Verenigde Staten op 6 meter heeft gewerkt en bevestigd." #: application/views/awards/ffma/index.php:10 msgid "" "The award will be given to any amateur who can duplicate W5FF's " "accomplishment." msgstr "" +"De award wordt toegekend aan elke amateur die de prestatie van W5FF kan " +"evenaren." #: application/views/awards/ffma/index.php:11 #, php-format msgid "For more information, you can visit this link: %s." -msgstr "" +msgstr "Voor meer informatie kun je deze link bezoeken: %s." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" -msgstr "" +msgstr "US Gridmaster Award" #: application/views/awards/gridmaster/index.php:9 msgid "" @@ -4987,6 +5152,10 @@ msgid "" "operators worldwide who manage to work all 488 grid squares in the USA via " "satellite and can provide QSL confirmations for each contact." msgstr "" +"De GridMaster Award is de meest prestigieuze AMSAT-prijs, voor het eerst " +"geïntroduceerd in 2014 door de Star Comm Group. Het is beschikbaar voor alle " +"radioamateurs wereldwijd die erin slagen om alle 488 grid squares in de VS " +"via satelliet te werken en QSL-bevestigingen voor elk contact kunnen leveren." #: application/views/awards/gridmaster/index.php:10 #, php-format @@ -5000,25 +5169,36 @@ msgid "" "when achieved from another location, which is in a different 200-kilometer " "circle." msgstr "" +"Officiële informatie van de %s: Er moet tweerichtingscommunicatie worden " +"opgezet via een amateur-satelliet met elk grid. Er is geen minimaal " +"signaalrapport vereist. Contacten moeten worden gemaakt vanaf dezelfde " +"locatie of vanaf locaties die niet meer dan 200 kilometer van elkaar " +"verwijderd zijn. De verklaring van de aanvrager in de prijsaanvraag dient " +"als bevestiging van naleving van de afstandsregel. Individuen kunnen " +"meerdere GridMaster-prijzen aanvragen en ontvangen wanneer deze worden " +"behaald vanaf een andere locatie, die zich in een andere cirkel van 200 " +"kilometer bevindt." #: application/views/awards/gridmaster/index.php:10 msgid "website" -msgstr "" +msgstr "website" #: application/views/awards/gridmaster/index.php:11 #: application/views/awards/gridmaster/index.php:16 msgid "This map shows only QSOs worked on SAT." -msgstr "" +msgstr "Deze kaart toont alleen QSOs die via SAT zijn gemaakt." #: application/views/awards/gridmaster/index.php:13 msgid "Gridmaster Award" -msgstr "" +msgstr "Gridmaster Award" #: application/views/awards/gridmaster/index.php:14 msgid "" "The Gridmaster Award was originally designed for the 488 gridsquares to be " "worked in the USA." msgstr "" +"De Gridmaster Award was oorspronkelijk ontworpen voor de 488 gridsquares die " +"in de VS moesten worden gewerkt." #: application/views/awards/gridmaster/index.php:15 msgid "" @@ -5026,19 +5206,22 @@ msgid "" "award but just showing the grids which were worked according to the US " "Gridmaster Award rules for this DXCC." msgstr "" +"Op deze kaart worden de grids voor de specifieke DXCC getoond. Dit is geen " +"officiële onderscheiding, maar toont gewoon de grids die zijn gewerkt " +"volgens de regels van de US Gridmaster Award voor deze DXCC." #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" msgid "Canton" -msgstr "" +msgstr "Kanton" #: application/views/awards/helvetia/index.php:4 msgid "Hover over a canton" -msgstr "" +msgstr "Zweef over een kanton" #: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" -msgstr "" +msgstr "HELVETIA 26 | SWITZERLAND AWARD" #: application/views/awards/helvetia/index.php:21 msgid "" @@ -5047,6 +5230,10 @@ msgid "" "activities on the bands by encouraging contacts across as many Swiss cantons " "as possible on multiple bands." msgstr "" +"De USKA (Union of Swiss Shortwave Amateurs) sponsort twee onderscheidingen, " +"de HELVETIA 26 (H26) Award en de SWITZERLAND Award, gericht op het " +"bevorderen van activiteiten op de banden door contacten aan te moedigen over " +"zoveel mogelijk Zwitserse kantons op meerdere banden." #: application/views/awards/helvetia/index.php:22 msgid "" @@ -5054,6 +5241,9 @@ msgid "" "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" +"Deze onderscheidingen zijn er in twee versies: één voor HF-banden en de " +"andere voor VHF-banden (inclusief SHF en UHF). Geldige verbindingen voor " +"deze onderscheidingen dateren vanaf 1 januari 1980" #: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 @@ -5063,24 +5253,24 @@ msgstr "" #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." -msgstr "" +msgstr "Voor meer informatie, bezoek: %s." #: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" -msgstr "" +msgstr "Toon Helvetia/Zwitserland kaart" #: application/views/awards/helvetia/index.php:151 msgid "Canton" -msgstr "" +msgstr "Kanton" #: application/views/awards/index.php:9 application/views/bands/index.php:46 #: application/views/interface_assets/header.php:173 msgid "CQ" -msgstr "" +msgstr "CQ" #: application/views/awards/iota/index.php:16 msgid "IOTA Awards" -msgstr "" +msgstr "IOTA Awards" #: application/views/awards/iota/index.php:17 msgid "" @@ -5090,6 +5280,12 @@ msgid "" "enhance the experience of all those active on the amateur bands. To achieve " "this, it draws on the widespread mystique surrounding islands." msgstr "" +"IOTA is een spannend en innovatief activiteitenprogramma dat de interesse " +"van duizenden radioamateurs wereldwijd heeft gewekt. Opgericht in 1964, " +"bevordert het radiocontacten met stations die zich op eilanden over de hele " +"wereld bevinden om de ervaring van alle actieve amateurs op de banden te " +"verbeteren. Om dit te bereiken, maakt het gebruik van de wijdverspreide " +"mystiek rondom eilanden." #: application/views/awards/iota/index.php:18 msgid "" @@ -5105,19 +5301,30 @@ msgid "" "an Honor Roll and annual listings, as well as recognizing it with " "certificates and prestigious awards." msgstr "" +"Het wordt beheerd door Islands On The Air (IOTA) Ltd (verwezen naar als IOTA " +"Management) in samenwerking met de Radio Society of Great Britain (RSGB). " +"IOTA Management heeft de eilanden van de wereld gegroepeerd in ongeveer 1200 " +"'IOTA-groepen', elk met een verschillend aantal 'counters', die " +"kwalificerende eilanden zijn. Deze lijsten worden gepubliceerd in de IOTA " +"Directory en op de IOTA-website. Het doel voor de IOTA Island Chaser is om " +"radiocontact te maken met ten minste één counter in zoveel mogelijk van deze " +"groepen. Het programma heeft een goed gedefinieerde set regels en moedigt " +"vriendelijke competitie aan onder chasers door de prestaties van deelnemers " +"te publiceren in een Honor Roll en jaarlijkse lijsten, evenals het erkennen " +"ervan met certificaten en prestigieuze onderscheidingen." #: application/views/awards/iota/index.php:19 -#, php-format +#, fuzzy, php-format msgid "You can also find this information on %s." -msgstr "" +msgstr "Je kunt deze informatie ook vinden op %s." #: application/views/awards/iota/index.php:29 msgid "Deleted IOTA" -msgstr "" +msgstr "Verwijderde IOTA" #: application/views/awards/iota/index.php:132 msgid "Show IOTA Map" -msgstr "" +msgstr "Toon IOTA-kaart" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 @@ -5143,11 +5350,11 @@ msgstr "" #: application/views/view_log/qso.php:214 #: application/views/view_log/qso.php:660 msgid "Name" -msgstr "" +msgstr "Naam" #: application/views/awards/iota/index.php:173 msgid "Deleted" -msgstr "" +msgstr "Verwijderd" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:150 @@ -5163,7 +5370,7 @@ msgstr "" #: application/views/station_profile/edit.php:170 #: application/views/user/modals/first_login_wizard.php:84 msgid "ITU Zone" -msgstr "" +msgstr "ITU-zone" #: application/views/awards/itu/index.php:21 msgid "" @@ -5172,30 +5379,37 @@ msgid "" "broadcasting zones as defined by the International Telecommunications Union " "(ITU)." msgstr "" +"De Classic Worked ITU Zones award kan worden aangevraagd door bewijs te " +"leveren van contact met landgebaseerde amateurradiostations in ten minste 70 " +"van de 75 uitzendzones zoals gedefinieerd door de Internationale " +"Telecommunicatie Unie (ITU)." #: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." -msgstr "" +msgstr "Je kunt meer informatie vinden op de website van %s." #: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" -msgstr "" +msgstr "Awards - ITU-zones" #: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" -msgstr "" +msgstr "Toon ITU Zone Kaart" #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" -msgstr "" +msgstr "JCC - Japan Century Cities Award" #: application/views/awards/jcc/index.php:17 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of at least 100 different cities of Japan." msgstr "" +"Kan worden geclaimd voor het hebben gecontacteerd (gehoord) en een QSL-kaart " +"ontvangen van een amateurstation in ten minste 100 verschillende steden van " +"Japan." #: application/views/awards/jcc/index.php:18 msgid "" @@ -5204,29 +5418,34 @@ msgid "" "however names of city may be omitted. An additional sticker will be issued " "at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." msgstr "" +"JCC-200, 300, 400, 500, 600, 700 en 800 zullen als afzonderlijke " +"onderscheidingen worden uitgegeven. Een lijst van QSL-kaarten moet worden " +"gerangschikt op volgorde van JCC-referentienummer, maar de namen van de " +"steden mogen worden weggelaten. Een extra sticker wordt uitgegeven bij elke " +"50 contacten zoals 150, 250, 350, 450, 550, 650, 750 steden." #: application/views/awards/jcc/index.php:115 msgid "Show JCC Map" -msgstr "" +msgstr "Toon JCC-kaart" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:209 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 #: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" -msgstr "" +msgstr "Exporteren" #: application/views/awards/jcc/index.php:126 #: application/views/public_search/empty.php:2 #: application/views/public_search/result.php:2 msgid "Results" -msgstr "" +msgstr "Resultaten" #: application/views/awards/jcc/index.php:151 #: application/views/awards/waja/index.php:153 #: application/views/distancerecords/index.php:13 msgid "Number" -msgstr "" +msgstr "Nummer" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 @@ -5238,11 +5457,11 @@ msgstr "Woonplaats" #: application/views/dashboard/index.php:426 #: application/views/distances/index.php:23 msgid "SAT" -msgstr "" +msgstr "SAT" #: application/views/awards/pota/index.php:7 msgid "POTA Awards" -msgstr "" +msgstr "POTA Awards" #: application/views/awards/pota/index.php:8 msgid "" @@ -5250,6 +5469,10 @@ msgid "" "Parks on the Air special event ended. A group of volunteers wanted to " "continue the fun beyond the one-year event, and thus, POTA was born." msgstr "" +"Parks on the Air® (POTA) begon begin 2017 toen het speciale evenement " +"National Parks on the Air van de ARRL eindigde. Een groep vrijwilligers " +"wilde het plezier na het eenjarige evenement voortzetten, en zo werd POTA " +"geboren." #: application/views/awards/pota/index.php:9 msgid "" @@ -5257,6 +5480,9 @@ msgid "" "there are several categories based on the number of parks, geographic areas, " "and more." msgstr "" +"POTA werkt vergelijkbaar met SOTA, met Activators en Hunters. Voor de awards " +"zijn er verschillende categorieën gebaseerd op het aantal parken, " +"geografische gebieden en meer." #: application/views/awards/pota/index.php:10 #, php-format @@ -5265,6 +5491,8 @@ msgid "" "For more information about the available awards and categories, please visit " "the %s." msgstr "" +"Voor meer informatie over de beschikbare prijzen en categorieën, bezoek de " +"%s." #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:243 application/views/qso/index.php:536 @@ -5278,25 +5506,27 @@ msgstr "POTA Referentie" #: application/views/awards/rac/index.php:3 msgctxt "Canada Province" msgid "Province" -msgstr "" +msgstr "Provincie" #: application/views/awards/rac/index.php:4 msgid "Hover over a province" -msgstr "" +msgstr "Zweef over een provincie" #: application/views/awards/rac/index.php:106 msgid "Show RAC Map" -msgstr "" +msgstr "Toon RAC-kaart" #: application/views/awards/sig/index.php:7 msgid "SIG Information" -msgstr "" +msgstr "SIG Informatie" #: application/views/awards/sig/index.php:8 msgid "" "The SIG or Signature Category provides the possibility to use any kind of " "'Award Signature' for awards that are not implemented in Wavelog." msgstr "" +"De SIG of Signature Categorie biedt de mogelijkheid om elke soort 'Award " +"Signature' te gebruiken voor awards die niet in Wavelog zijn geïmplementeerd." #: application/views/awards/sig/index.php:9 msgid "" @@ -5304,6 +5534,10 @@ msgid "" "dedicated fields for certain awards. SIG still makes it possible to use and " "evaluate all other types of signature markers." msgstr "" +"De reden hiervoor is dat het gebruikelijke ADIF-formaat slechts een paar " +"specifieke velden biedt voor bepaalde onderscheidingen. SIG maakt het nog " +"steeds mogelijk om alle andere soorten signatuurmarkeringen te gebruiken en " +"te evalueren." #: application/views/awards/sig/index.php:10 msgid "" @@ -5311,26 +5545,30 @@ msgid "" "marker, which is also visible in the award evaluation, and 'SIG INFO,' which " "contains a description of the signature. Both fields are freely customizable." msgstr "" +"Bij de QSO-verwerking vind je twee velden: 'SIG' bevat de eigenlijke " +"markering, die ook zichtbaar is in de award-evaluatie, en 'SIG INFO,' dat " +"een beschrijving van de handtekening bevat. Beide velden zijn vrij " +"aanpasbaar." #: application/views/awards/sig/index.php:21 msgid "Award Type" -msgstr "" +msgstr "Award type" #: application/views/awards/sig/index.php:22 #: application/views/continents/index.php:17 #: application/views/distances/index.php:12 #: application/views/timeplotter/index.php:4 msgid "Number of QSOs" -msgstr "" +msgstr "Aantal QSOs" #: application/views/awards/sig/index.php:23 msgid "Number of Refs" -msgstr "" +msgstr "Aantal referenties" #: application/views/awards/sig/qso_list.php:9 #: application/views/awards/sota/index.php:23 msgid "Reference" -msgstr "" +msgstr "Referentie" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 @@ -5342,31 +5580,33 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:7 #: application/views/view_log/qso.php:72 msgid "Date/Time" -msgstr "" +msgstr "Datum/Tijd" #: application/views/awards/sig/qso_list.php:14 #: application/views/awards/sota/index.php:27 msgid "RST Sent" -msgstr "" +msgstr "RST verzonden" #: application/views/awards/sig/qso_list.php:15 #: application/views/awards/sota/index.php:28 msgid "RST Received" -msgstr "" +msgstr "RST ontvangen" #: application/views/awards/sig/qso_list.php:34 msgid "Export QSOs to ADIF" -msgstr "" +msgstr "Exporteer QSO's naar ADIF" #: application/views/awards/sota/index.php:7 msgid "SOTA Awards" -msgstr "" +msgstr "SOTA Awards" #: application/views/awards/sota/index.php:8 msgid "" "SOTA (Summits On The Air) is an award scheme for radio amateurs that " "encourages portable operation in mountainous areas." msgstr "" +"SOTA (Summits On The Air) is een beloningssysteem voor radioamateurs dat " +"draagbare operaties in bergachtige gebieden aanmoedigt." #: application/views/awards/sota/index.php:9 msgid "" @@ -5378,57 +5618,71 @@ msgid "" "trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " "online database." msgstr "" +"Het is volledig operationeel in bijna honderd landen wereldwijd. Elk land " +"heeft zijn eigen vereniging die de erkende SOTA-toppen binnen die vereniging " +"definieert. Elke top levert de activators en jagers een score op die " +"gerelateerd is aan de hoogte van de top. Certificaten zijn beschikbaar voor " +"verschillende scores, wat leidt tot de prestigieuze 'Mountain Goat' en " +"'Shack Sloth' trofeeën. Een erelijst voor activators en jagers wordt " +"bijgehouden in de SOTA online database." #: application/views/awards/vucc/index.php:7 msgid "VUCC - VHF/UHF Century Club Award" -msgstr "" +msgstr "VUCC - VHF/UHF Century Club Award" #: application/views/awards/vucc/index.php:8 msgid "" "The VHF/UHF Century Club Award is given for a minimum number of worked and " "confirmed gridsquares on a desired band." msgstr "" +"De VHF/UHF Century Club Award wordt toegekend voor een minimum aantal " +"gewerkte en bevestigde gridsquares op een gewenste band." #: application/views/awards/vucc/index.php:9 #, php-format msgid "Official information and the rules can be found in this document: %s." -msgstr "" +msgstr "Officiële informatie en de regels zijn te vinden in dit document: %s." #: application/views/awards/vucc/index.php:10 msgid "Only VHF/UHF bands are relevant." -msgstr "" +msgstr "Alleen VHF/UHF-banden zijn relevant." #: application/views/awards/vucc/index.php:22 msgid "Grids Worked" -msgstr "" +msgstr "Vakken gewerkt" #: application/views/awards/vucc/index.php:23 msgid "Grids Confirmed" -msgstr "" +msgstr "Vakken bevestigd" #: application/views/awards/wab/index.php:12 msgid "WAB - Worked All Britain Award" -msgstr "" +msgstr "WAB - Worked All Britain Award" #: application/views/awards/wab/index.php:13 msgid "" "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " "radio operators to work all the squares in Great Britain." msgstr "" +"WAB, Worked All Britain squares in Amateur Radio, moedigt gelicenseerde " +"radioamateurs aan om alle vierkanten in Groot-Brittannië te werken." #: application/views/awards/wab/index.php:14 msgid "" "May be claimed for having contacted an amateur station located in the " "required amount of squares, described on the page linked below." msgstr "" +"Kan worden geclaimd voor het hebben van contact met een amateurstation dat " +"zich in het vereiste aantal vierkanten bevindt, zoals beschreven op de " +"pagina die hieronder is gelinkt." #: application/views/awards/wab/index.php:109 msgid "List" -msgstr "" +msgstr "Lijst" #: application/views/awards/wab/list.php:5 msgid "WAB Square" -msgstr "" +msgstr "WAB-vierkant" #: application/views/awards/wac/index.php:9 msgid "" @@ -5436,10 +5690,14 @@ msgid "" "Continents award is issued for working and confirming all six continents. " "These are North America, South America, Oceania, Asia, Europe and Africa." msgstr "" +"Gesponsord door de International Amateur Radio Union (IARU), wordt de Worked " +"All Continents award uitgereikt voor het werken en bevestigen van alle zes " +"continenten. Dit zijn Noord-Amerika, Zuid-Amerika, Oceanië, Azië, Europa en " +"Afrika." #: application/views/awards/wac/index.php:13 msgid "Awards - Worked All Continents (WAC)" -msgstr "" +msgstr "Awards - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:151 #: application/views/continents/index.php:62 @@ -5450,34 +5708,36 @@ msgstr "" #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:390 #: application/views/view_log/qso.php:342 msgid "Continent" -msgstr "" +msgstr "Continent" #: application/views/awards/wae/index.php:7 msgid "WAE Award" -msgstr "" +msgstr "WAE Award" #: application/views/awards/wae/index.php:161 msgid "WAE Name" -msgstr "" +msgstr "WAE Naam" #: application/views/awards/waja/index.php:3 msgctxt "Japan Prefecture" msgid "Prefecture" -msgstr "" +msgstr "Prefectuur" #: application/views/awards/waja/index.php:4 msgid "Hover over a prefecture" -msgstr "" +msgstr "Zweef over een prefectuur" #: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" -msgstr "" +msgstr "WAJA - Worked All Japan prefecturen Award" #: application/views/awards/waja/index.php:20 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 prefecturen in Amateur Radio, moedigt gelicenseerde " +"radioamateurs aan om met alle prefecturen in Japan verbinding te maken." #: application/views/awards/waja/index.php:21 msgid "" @@ -5486,28 +5746,32 @@ msgid "" "QSL cards should be arranged in order of WAJA (HAJA) reference number, " "however names of prefectures may be omitted." msgstr "" +"Kan worden geclaimd voor het hebben gecontacteerd (gehoord) en een QSL-kaart " +"ontvangen van een amateurstation in elk van de 47 prefecturen van Japan. Een " +"lijst van QSL-kaarten moet worden gerangschikt in volgorde van WAJA (HAJA) " +"referentienummer, maar namen van prefecturen mogen worden weggelaten." #: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" -msgstr "" +msgstr "Toon WAJA-kaart" #: application/views/awards/waja/index.php:154 #: application/views/timeline/index.php:237 msgid "Prefecture" -msgstr "" +msgstr "Prefectuur" #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" -msgstr "" +msgstr "Staat" #: application/views/awards/was/index.php:4 msgid "Hover over a state" -msgstr "" +msgstr "Zweef over een staat" #: application/views/awards/was/index.php:20 msgid "WAS Award" -msgstr "" +msgstr "WAS Award" #: application/views/awards/was/index.php:21 msgid "" @@ -5516,6 +5780,11 @@ msgid "" "101st year, they have redesigned the certificates and the program in hopes " "of streamlining and improving the award program." msgstr "" +"De meest populaire onderscheiding van de ARRL is de Worked All States Award. " +"Duizenden en nog eens duizenden onderscheidingen zijn uitgereikt aan " +"zendamateurs over de hele wereld. In het 101e jaar van de ARRL hebben ze de " +"certificaten en het programma opnieuw ontworpen in de hoop het " +"toekenningsprogramma te stroomlijnen en te verbeteren." #: application/views/awards/was/index.php:22 msgid "" @@ -5525,20 +5794,25 @@ msgid "" "possessions must be members of ARRL to apply for a WAS. Applicants from " "outside the U.S. are exempt from this requirement." msgstr "" +"De WAS (Worked All States) Award is beschikbaar voor alle amateurs " +"wereldwijd die bewijs indienen met schriftelijke bevestiging van contacten " +"met elk van de 50 staten van de Verenigde Staten van Amerika. Amateurs in de " +"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:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." -msgstr "" +msgstr "Alle informatie en regels voor de ARRL WAS Award zijn te vinden %s." #: application/views/awards/was/index.php:114 msgid "Show WAS Map" -msgstr "" +msgstr "Toon WAS-kaart" #: application/views/awards/wwff/index.php:7 msgid "WWFF - World Wide Flora and Fauna Award" -msgstr "" +msgstr "WWFF - Wereldwijd Flora en Fauna Award" #: application/views/awards/wwff/index.php:8 msgid "" @@ -5546,6 +5820,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 in Amateur Radio, moedigt gelicenseerde " +"radioamateurs aan om hun shack te verlaten en draagbaar te opereren in " +"beschermde flora- en fauna-gebieden (PFF) wereldwijd." #: application/views/awards/wwff/index.php:9 msgid "" @@ -5553,6 +5830,9 @@ msgid "" "registered in the WWFF Directory. Hunters and Activators can apply for " "colorful awards, both globally and nationally." msgstr "" +"Wereldwijd zijn al meer dan 26.000 beschermde flora- en fauna-gebieden (PFF) " +"geregistreerd in het WWFF-register. Jagers en activators kunnen zowel " +"wereldwijd als nationaal kleurrijke onderscheidingen aanvragen." #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:231 application/views/qso/index.php:523 @@ -5567,11 +5847,13 @@ msgstr "WWFF Referentie" msgid "" "The backup of your log completed successfully. The output can be found at" msgstr "" +"De back-up van je log is succesvol voltooid. De uitvoer is te vinden op" #: 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 "" +"Je zou dit proces kunnen automatiseren door er een cronjob van te maken." #: application/views/backup/adif_view.php:13 #: application/views/backup/notes_view.php:13 @@ -5579,38 +5861,45 @@ msgid "" "Something went wrong during the backup process. Check that the backup folder " "exists and is writeable by your web server user / group." msgstr "" +"Er is iets misgegaan tijdens het back-upproces. Controleer of de back-upmap " +"bestaat en beschrijfbaar is door de gebruiker/groep van je webserver." #: 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 "" +"Een deel van de gegevens die in Wavelog zijn opgeslagen, kan worden " +"geëxporteerd zodat je ergens anders een back-up kunt bewaren." #: application/views/backup/main.php:18 msgid "" "It's recommended to create backups on a regular basis to protect your data." msgstr "" +"Het wordt aanbevolen om regelmatig back-ups te maken om je gegevens te " +"beschermen." #: application/views/backup/main.php:19 msgid "Backup ADIF data" -msgstr "" +msgstr "Back-up ADIF-gegevens" #: application/views/backup/main.php:20 msgid "Backup Notes" -msgstr "" +msgstr "Back-up notities" #: application/views/backup/notes_view.php:7 msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "" +"De back-up van je notities is succesvol voltooid. De uitvoer is te vinden op" #: application/views/bandmap/index.php:15 application/views/bandmap/list.php:53 msgid "BandMap" -msgstr "" +msgstr "Bandkaart" #: application/views/bandmap/index.php:18 application/views/bandmap/list.php:56 msgid "BandList" -msgstr "" +msgstr "Bandlijst" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:66 #: application/views/contesting/index.php:19 @@ -5618,140 +5907,144 @@ msgstr "" #: application/views/contesting/index.php:154 #: application/views/qso/index.php:321 msgid "None" -msgstr "" +msgstr "Geen" #: application/views/bandmap/index.php:33 application/views/bandmap/list.php:80 msgid "Spots de" -msgstr "" +msgstr "Spotters uit" #: application/views/bandmap/list.php:6 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." -msgstr "" +msgstr "Pop-up werd geblokkeerd! Sta pop-ups voor deze site permanent toe." #: application/views/bandmap/list.php:7 msgid "Click to prepare logging." -msgstr "" +msgstr "Klik om de logging voor te bereiden." #: application/views/bandmap/list.php:73 msgid "DXCC-Status" -msgstr "" +msgstr "DXCC-status" #: application/views/bandmap/list.php:78 msgid "Not Confirmed" -msgstr "" +msgstr "Niet bevestigd" #: application/views/bandmap/list.php:117 msgid "Spotter" -msgstr "" +msgstr "Spotter" #: application/views/bandmap/list.php:118 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:58 msgid "Message" -msgstr "" +msgstr "Bericht" #: application/views/bandmap/list.php:119 msgid "Last Worked" -msgstr "" +msgstr "Laatst gewerkt" #: application/views/bands/create.php:26 application/views/bands/edit.php:8 msgid "Name of Band (E.g. 20m)" -msgstr "" +msgstr "Naam van de band (bijv. 20m)" #: application/views/bands/create.php:29 application/views/bands/edit.php:11 #: application/views/bands/index.php:61 msgid "Bandgroup" -msgstr "" +msgstr "Bandgroep" #: application/views/bands/create.php:31 application/views/bands/edit.php:13 msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" -msgstr "" +msgstr "Naam van bandgroep (bijv. hf, vhf, uhf, shf)" #: application/views/bands/create.php:34 application/views/bands/edit.php:16 #: application/views/bands/index.php:62 msgid "SSB QRG" -msgstr "" +msgstr "SSB QRG" #: application/views/bands/create.php:36 application/views/bands/edit.php:18 msgid "Frequency for SSB QRG in band (must be in Hz)" -msgstr "" +msgstr "Frequentie voor SSB QRG in band (moet in Hz zijn)" #: application/views/bands/create.php:39 application/views/bands/edit.php:21 #: application/views/bands/index.php:63 msgid "DATA QRG" -msgstr "" +msgstr "DATA QRG" #: application/views/bands/create.php:41 application/views/bands/edit.php:23 msgid "Frequency for DATA QRG in band (must be in Hz)" -msgstr "" +msgstr "Frequentie voor DATA QRG in band (moet in Hz zijn)" #: application/views/bands/create.php:44 application/views/bands/edit.php:26 #: application/views/bands/index.php:64 msgid "CW QRG" -msgstr "" +msgstr "CW QRG" #: application/views/bands/create.php:46 application/views/bands/edit.php:28 msgid "Frequency for CW QRG in band (must be in Hz)" -msgstr "" +msgstr "Frequentie voor CW QRG in band (moet in Hz zijn)" #: application/views/bands/index.php:36 msgid "" "Using the band list you can control which bands are shown when creating a " "new QSO." msgstr "" +"Met de bandenlijst kun je bepalen welke banden worden weergegeven bij het " +"aanmaken van een nieuwe QSO." #: application/views/bands/index.php:37 msgid "" "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " "will be hidden and cannot be selected." msgstr "" +"Actieve banden worden weergegeven in de QSO 'Band' drop-down, terwijl niet-" +"actieve banden verborgen worden en niet geselecteerd kunnen worden." #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:392 #: application/views/qso/index.php:255 application/views/qso/index.php:548 #: application/views/user/edit.php:619 application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:726 msgid "Sig" -msgstr "" +msgstr "Sig" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:361 #: application/views/qso/index.php:487 msgid "USA County" -msgstr "" +msgstr "USA County" #: application/views/bands/index.php:58 #: application/views/interface_assets/header.php:223 msgid "WAJA" -msgstr "" +msgstr "WAJA" #: application/views/bands/index.php:59 #: application/views/interface_assets/header.php:247 msgid "WAS" -msgstr "" +msgstr "WAS" #: application/views/bands/index.php:65 msgid "QRG Unit" -msgstr "" +msgstr "QRG-eenheid" #: application/views/bands/index.php:98 msgid "Hz" -msgstr "" +msgstr "Hz" #: application/views/bands/index.php:99 msgid "kHz" -msgstr "" +msgstr "kHz" #: application/views/bands/index.php:100 msgid "MHz" -msgstr "" +msgstr "MHz" #: application/views/bands/index.php:101 msgid "GHz" -msgstr "" +msgstr "GHz" #: application/views/bands/index.php:151 application/views/bands/index.php:157 msgid "Create a band" -msgstr "" +msgstr "Maak een band" #: application/views/bands/index.php:152 #: application/views/club/permissions.php:142 @@ -5769,82 +6062,83 @@ msgstr "Sluiten" #: application/views/bands/index.php:153 msgid "Warning! Are you sure you want to delete the following band: " -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je de volgende band wilt verwijderen: " #: application/views/bands/index.php:154 msgid "Warning! Are you sure you want to activate all bands?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle banden wilt activeren?" #: application/views/bands/index.php:155 msgid "Warning! Are you sure you want to deactivate all bands?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle banden wilt deactiveren?" #: application/views/bands/index.php:158 #: application/views/contesting/add.php:77 application/views/mode/index.php:89 msgid "Activate All" -msgstr "" +msgstr "Alles activeren" #: application/views/bands/index.php:159 #: application/views/contesting/add.php:78 application/views/mode/index.php:90 msgid "Deactivate All" -msgstr "" +msgstr "Alles deactiveren" #: application/views/cabrillo/cbr_success.php:12 msgid "Results of CBR Contest Data Update" -msgstr "" +msgstr "Resultaten van de CBR Contest Data Update" #: application/views/cabrillo/cbr_success.php:17 msgid "" "Your contest QSOs have been updated using the values of your Cabrillo file." msgstr "" +"Je contest-QSOs zijn bijgewerkt met de waarden van je Cabrillo-bestand." #: application/views/cabrillo/cbr_success.php:19 msgid "No QSOs were updated by your Cabrillo file." -msgstr "" +msgstr "Er zijn geen QSOs bijgewerkt door je Cabrillo-bestand." #: application/views/cabrillo/cbr_success.php:25 msgid "CBR errors" -msgstr "" +msgstr "CBR-fouten" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 #: application/views/reg1test/index.php:2 #: application/views/reg1test/index.php:36 msgid "Proceed" -msgstr "" +msgstr "Ga verder" #: application/views/cabrillo/index.php:3 #: application/views/reg1test/index.php:3 msgid "Select Year" -msgstr "" +msgstr "Selecteer jaar" #: application/views/cabrillo/index.php:4 #: application/views/reg1test/index.php:4 msgid "Select Contest" -msgstr "" +msgstr "Selecteer Contest" #: application/views/cabrillo/index.php:5 #: application/views/reg1test/index.php:5 msgid "Select Date Range" -msgstr "" +msgstr "Selecteer datumbereik" #: application/views/cabrillo/index.php:6 #: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" -msgstr "" +msgstr "Er werden geen contesten gevonden voor deze stationlocatie!" #: application/views/cabrillo/index.php:16 msgid "Export a contest to a Cabrillo log" -msgstr "" +msgstr "Exporteer een contest naar een Cabrillo-log" #: application/views/cabrillo/index.php:28 msgid "Select Station Location:" -msgstr "" +msgstr "Selecteer stationlocatie:" #: application/views/cabrillo/index.php:44 #: application/views/reg1test/index.php:53 msgid "Club" -msgstr "" +msgstr "Club" #: application/views/cabrillo/index.php:48 msgid "" @@ -5852,16 +6146,21 @@ msgid "" "For foreign stations LOCATION must be 'DX'. This information is required for " "IARU-HF and for all ARRL and CQ contests." msgstr "" +"Voor stations in de VS en Canada moet de LOCATIE de ARRL-sectie afkorting " +"zijn. Voor buitenlandse stations moet de LOCATIE 'DX' zijn. Deze informatie " +"is vereist voor IARU-HF en voor alle ARRL- en CQ-wedstrijden." #: application/views/cabrillo/index.php:48 msgid "For the RDXC contest this contains the RDA number." -msgstr "" +msgstr "Voor de RDXC-contest bevat dit het RDA-nummer." #: application/views/cabrillo/index.php:48 msgid "" "For the RSGB-IOTA contest this information contains the IOTA name (not the " "IOTA reference code)." msgstr "" +"Voor de RSGB-IOTA contest bevat deze informatie de IOTA-naam (niet de IOTA-" +"referentiecode)." #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:591 @@ -5873,43 +6172,43 @@ msgstr "Locatie" #: application/views/cabrillo/index.php:52 #: application/views/reg1test/index.php:58 msgid "Category Operator" -msgstr "" +msgstr "Categorie Operator" #: application/views/cabrillo/index.php:60 msgid "Category Assisted" -msgstr "" +msgstr "Categorie Geassisteerd" #: application/views/cabrillo/index.php:67 msgid "Category Band" -msgstr "" +msgstr "Categorie Band" #: application/views/cabrillo/index.php:93 msgid "Light/Laser" -msgstr "" +msgstr "Licht/Laser" #: application/views/cabrillo/index.php:94 msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" -msgstr "" +msgstr "VHF-3-BAND en VHF-FM-ONLY (alleen ARRL VHF Contests)" #: application/views/cabrillo/index.php:98 msgid "Category Mode" -msgstr "" +msgstr "Categorie Modus" #: application/views/cabrillo/index.php:109 msgid "Category Power" -msgstr "" +msgstr "Categorie Vermogen" #: application/views/cabrillo/index.php:117 msgid "Category Station" -msgstr "" +msgstr "Categorie Station" #: application/views/cabrillo/index.php:133 msgid "Category Transmitter" -msgstr "" +msgstr "Categorie Zender" #: application/views/cabrillo/index.php:143 msgid "Category Time" -msgstr "" +msgstr "Categorie Tijd" #: application/views/cabrillo/index.php:145 #: application/views/cabrillo/index.php:146 @@ -5917,45 +6216,47 @@ msgstr "" #: application/views/cabrillo/index.php:148 #, php-format msgid "%d Hours" -msgstr "" +msgstr "%d Uren" #: application/views/cabrillo/index.php:152 msgid "Category Overlay" -msgstr "" +msgstr "Categorie-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 "Operators" #: 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 "Adres" #: application/views/cabrillo/index.php:177 msgid "Address City" -msgstr "" +msgstr "Stad" #: application/views/cabrillo/index.php:181 msgid "Address State/Province" -msgstr "" +msgstr "Staat/Provincie" #: application/views/cabrillo/index.php:185 msgid "Address Postalcode" -msgstr "" +msgstr "Postcode" #: application/views/cabrillo/index.php:189 msgid "Address Country" -msgstr "" +msgstr "Land" #: application/views/cabrillo/index.php:193 msgid "Certificate" -msgstr "" +msgstr "Certificaat" #: application/views/cabrillo/index.php:193 msgid "" @@ -5963,6 +6264,9 @@ msgid "" "postal mail by the contest sponsor. The contest sponsor may or may not honor " "this tag." msgstr "" +"Geef aan of je, indien in aanmerking komend, een papieren certificaat wilt " +"ontvangen dat per post door de wedstrijdsponsor wordt verzonden. De " +"wedstrijdsponsor kan deze tag wel of niet honoreren." #: application/views/cabrillo/index.php:196 #: application/views/cabrillo/index.php:204 @@ -6074,43 +6378,44 @@ msgstr "Nee" #: application/views/cabrillo/index.php:201 msgid "If the gridsquare was part of the exchange, you should select YES." msgstr "" +"Als het gridsquare deel uitmaakte van de uitwisseling, moet je JA selecteren." #: application/views/cabrillo/index.php:201 msgid "Include logged grids?" -msgstr "" +msgstr "Gelogde vakken opnemen?" #: application/views/cabrillo/index.php:215 #: application/views/reg1test/index.php:150 msgid "No contests were found in your log." -msgstr "" +msgstr "Er werden geen contesten in je logboek gevonden." #: application/views/callstats/index.php:70 #: application/views/gridmap/index.php:43 msgid "All except SAT" -msgstr "" +msgstr "Alles behalve SAT" #: application/views/callstats/index.php:149 msgid "#QSOs" -msgstr "" +msgstr "#QSOs" #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" -msgstr "" +msgstr "Export van CFD-bestand voor DARC-Toplijst (Zie %s)" #: application/views/club/clubswitch_modal.php:5 msgid "Switch to a Clubstation" -msgstr "" +msgstr "Schakel over naar een clubstation" #: application/views/club/clubswitch_modal.php:9 #, php-format msgid "Are you sure you want to switch to %s?" -msgstr "" +msgstr "Weet je zeker dat je wilt overschakelen naar %s?" #: application/views/club/clubswitch_modal.php:14 #: application/views/user/modals/stop_impersonate_modal.php:13 msgid "Yes, switch over!" -msgstr "" +msgstr "Ja, overschakelen!" #: application/views/club/clubswitch_modal.php:15 #: application/views/club/permissions.php:205 @@ -6121,16 +6426,16 @@ msgstr "" #: application/views/user/modals/admin_impersonate_modal.php:45 #: application/views/user/modals/stop_impersonate_modal.php:14 msgid "Cancel" -msgstr "" +msgstr "Annuleren" #: application/views/club/permissions.php:3 #, php-format msgid "Club Permissions for %s" -msgstr "" +msgstr "Clubrechten voor %s" #: application/views/club/permissions.php:4 msgid "Go back" -msgstr "" +msgstr "Ga terug" #: application/views/club/permissions.php:13 msgid "" @@ -6138,85 +6443,88 @@ msgid "" "appropriate authorizations. Add users to the table below and set the " "appropriate permission." msgstr "" +"Om gebruikers QSOs met deze club/speciale roepnaam te laten loggen, hebben " +"ze de juiste autorisaties nodig. Voeg gebruikers toe aan de onderstaande " +"tabel en stel de juiste toestemming in." #: application/views/club/permissions.php:14 msgid "See available Permissions" -msgstr "" +msgstr "Bekijk beschikbare machtigingen" #: application/views/club/permissions.php:19 msgid "Available Permissions" -msgstr "" +msgstr "Beschikbare machtigingen" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 msgid "Action" -msgstr "" +msgstr "Actie" #: application/views/club/permissions.php:33 msgid "Log QSOs via Web GUI (live and post)" -msgstr "" +msgstr "Log QSOs via Web GUI (live en post)" #: application/views/club/permissions.php:41 msgid "Log QSOs via API" -msgstr "" +msgstr "Log QSOs via API" #: application/views/club/permissions.php:49 msgid "Edit a QSO" -msgstr "" +msgstr "Een QSO bewerken" #: application/views/club/permissions.php:54 #: application/views/club/permissions.php:72 msgid "QSO was done by the operator" -msgstr "" +msgstr "QSO werd gedaan door de operator" #: application/views/club/permissions.php:59 #: application/views/club/permissions.php:77 msgid "QSO was done by another operator" -msgstr "" +msgstr "QSO werd gedaan door een andere operator" #: application/views/club/permissions.php:67 msgid "Delete a QSO" -msgstr "" +msgstr "Verwijder een QSO" #: application/views/club/permissions.php:85 msgid "Manage Stationsetup (edit/create logbooks and locations)" -msgstr "" +msgstr "Beheer Stationsetup (bewerk/maak logboeken en locaties aan)" #: application/views/club/permissions.php:93 msgid "Manage Third-Party services" -msgstr "" +msgstr "Beheer diensten van derden" #: application/views/club/permissions.php:101 msgid "Import QSO per ADIF" -msgstr "" +msgstr "Importeer QSO per ADIF" #: application/views/club/permissions.php:110 msgid "Export QSO per ADIF" -msgstr "" +msgstr "Exporteer QSO per ADIF" #: application/views/club/permissions.php:118 msgid "User Management" -msgstr "" +msgstr "Gebruikersbeheer" #: application/views/club/permissions.php:123 msgid "Can create new users in Wavelog" -msgstr "" +msgstr "Kan nieuwe gebruikers aanmaken in Wavelog" #: application/views/club/permissions.php:128 msgid "Can edit other users in Wavelog" -msgstr "" +msgstr "Kan andere gebruikers in Wavelog bewerken" #: application/views/club/permissions.php:133 msgid "Can edit Club permissions and add/remove users" -msgstr "" +msgstr "Kan clubrechten bewerken en gebruikers toevoegen/verwijderen" #: application/views/club/permissions.php:151 msgid "Users with Permissions" -msgstr "" +msgstr "Gebruikers met machtigingen" #: application/views/club/permissions.php:161 msgid "Add new User to Club" -msgstr "" +msgstr "Nieuwe gebruiker aan de club toevoegen" #: application/views/club/permissions.php:167 #, php-format @@ -6224,48 +6532,54 @@ msgid "" "You can only add users to the %s Clubstation if they already exist on this " "Wavelog Server." msgstr "" +"Je kunt alleen gebruikers toevoegen aan de %s Clubstation als ze al bestaan " +"op deze Wavelog Server." #: application/views/club/permissions.php:168 msgid "" "If they don't exist, please ask your Wavelog Administrator to create an " "account for them." msgstr "" +"Als ze niet bestaan, vraag dan je Wavelog-beheerder om een account voor hen " +"aan te maken." #: application/views/club/permissions.php:169 msgid "" "Search for the user by their callsign or first/lastname and select the " "permission level." msgstr "" +"Zoek de gebruiker op hun roepnaam of voor-/achternaam en selecteer het " +"machtigingsniveau." #: application/views/club/permissions.php:175 msgid "User (Callsign or Name)" -msgstr "" +msgstr "Gebruiker (roepnaam of naam)" #: application/views/club/permissions.php:176 #: application/views/club/permissions.php:225 #: application/views/club/permissions.php:269 msgid "Permission" -msgstr "" +msgstr "Toestemming" #: application/views/club/permissions.php:183 msgid "Type at least 2 characters." -msgstr "" +msgstr "Typ ten minste 2 tekens." #: application/views/club/permissions.php:194 msgid "Notify the user via email" -msgstr "" +msgstr "Breng de gebruiker op de hoogte via e-mail" #: application/views/club/permissions.php:213 msgid "No users currently have access to this club station." -msgstr "" +msgstr "Momenteel heeft geen enkele gebruiker toegang tot dit clubstation." #: application/views/club/permissions.php:220 msgid "Firstname" -msgstr "" +msgstr "Voornaam" #: application/views/club/permissions.php:221 msgid "Lastname" -msgstr "" +msgstr "Achternaam" #: application/views/club/permissions.php:223 #: application/views/user/edit.php:57 application/views/user/index.php:150 @@ -6276,65 +6590,67 @@ msgstr "Gebruikersnaam" #: application/views/club/permissions.php:224 msgid "E-Mail" -msgstr "" +msgstr "E-mail" #: application/views/club/permissions.php:244 msgid "Wavelog Administrator" -msgstr "" +msgstr "Wavelog Beheerder" #: application/views/club/permissions.php:261 msgid "You can modify the users permission level for this Clubstation." msgstr "" +"Je kunt het machtigingsniveau van de gebruiker voor dit clubstation " +"aanpassen." #: application/views/club/permissions.php:268 msgid "User Callsign" -msgstr "" +msgstr "Gebruikersroepnaam" #: application/views/club/permissions.php:286 msgid "Notify the user via email about the change" -msgstr "" +msgstr "Stuur de gebruiker een e-mail over de wijziging" #: application/views/club/permissions.php:309 msgid "Delete User" -msgstr "" +msgstr "Verwijder gebruiker" #: application/views/club/permissions.php:316 msgid "Are you sure you want to delete this user from the club?" -msgstr "" +msgstr "Weet je zeker dat je deze gebruiker uit de club wilt verwijderen?" #: application/views/club/permissions.php:320 #, php-format msgid "Callsign: %s" -msgstr "" +msgstr "Roepnaam: %s" #: application/views/club/permissions.php:321 #, php-format msgid "Role: %s" -msgstr "" +msgstr "Rol: %s" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" -msgstr "" +msgstr "Hamsat - Satellietrovers" #: 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 "Deze gegevens komen van" #: application/views/components/hamsat/table.php:11 msgid "Show All Passes" -msgstr "" +msgstr "Toon alle passages" #: application/views/components/hamsat/table.php:14 msgid "Private feed key empty. Please set the feed key in your profile." -msgstr "" +msgstr "Privé feed-sleutel is leeg. Stel de feed-sleutel in je profiel in." #: application/views/components/hamsat/table.php:19 msgid "No upcoming activations found. Please check back later." -msgstr "" +msgstr "Geen aankomende activaties gevonden. Kom later terug." #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:228 @@ -6350,29 +6666,29 @@ msgstr "Opmerking" #: application/views/components/hamsat/table.php:31 #: application/views/hamsat/index.php:34 msgid "Gridsquare(s)" -msgstr "" +msgstr "Gridsquare(s)" #: application/views/components/hamsat/table.php:32 #: application/views/hamsat/index.php:35 msgid "Workable" -msgstr "" +msgstr "Werkbaar" #: application/views/components/hamsat/table.php:134 msgctxt "Hamsat - Track Satellites" msgid "Track" -msgstr "" +msgstr "Volg" #: 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 "Radiostatus" #: application/views/contestcalendar/index.php:16 msgid "No Contests" -msgstr "" +msgstr "Geen Contests" #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:24 @@ -6382,23 +6698,23 @@ msgstr "" #: application/views/qso/edit_ajax.php:41 #: application/views/simplefle/index.php:83 msgid "Contest" -msgstr "" +msgstr "Contest" #: application/views/contestcalendar/index.php:22 msgid "Start" -msgstr "" +msgstr "Begin" #: application/views/contestcalendar/index.php:23 msgid "End" -msgstr "" +msgstr "Einde" #: application/views/contestcalendar/index.php:24 msgid "Link" -msgstr "" +msgstr "Link" #: application/views/contestcalendar/index.php:33 msgid "Show Details" -msgstr "" +msgstr "Details weergeven" #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:336 @@ -6406,32 +6722,36 @@ msgstr "" #: application/views/dashboard/index.php:384 #: application/views/dashboard/index.php:405 msgid "Today" -msgstr "" +msgstr "Vandaag" #: application/views/contestcalendar/index.php:55 msgid "Weekend" -msgstr "" +msgstr "Weekend" #: application/views/contestcalendar/index.php:66 msgid "Next Week" -msgstr "" +msgstr "Volgende week" #: 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 "" +"Met de contest-lijst kun je bepalen welke contesten worden getoond bij het " +"loggen van QSOs in een contest." #: 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 "" +"Actieve contesten worden weergegeven in de keuzelijst contest naam, terwijl " +"inactieve contesten verborgen zijn en niet kunnen worden geselecteerd." #: application/views/contesting/add.php:26 #: application/views/contesting/create.php:30 msgid "ADIF Name" -msgstr "" +msgstr "ADIF-naam" #: application/views/contesting/add.php:27 #: application/views/contesting/add.php:41 @@ -6443,62 +6763,63 @@ msgstr "" #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 msgid "Active" -msgstr "" +msgstr "Actief" #: application/views/contesting/add.php:39 #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:49 msgid "Not Active" -msgstr "" +msgstr "Niet actief" #: application/views/contesting/add.php:40 #: application/views/contesting/add.php:49 application/views/mode/index.php:7 #: application/views/mode/index.php:60 msgid "Activate" -msgstr "" +msgstr "Activeren" #: application/views/contesting/add.php:42 #: application/views/contesting/add.php:47 application/views/mode/index.php:6 #: application/views/mode/index.php:58 msgid "Deactivate" -msgstr "" +msgstr "Deactiveren" #: application/views/contesting/add.php:54 msgid "DANGER!" -msgstr "" +msgstr "GEVAAR!" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " msgstr "" +"Waarschuwing! Weet je zeker dat je de volgende wedstrijd wilt verwijderen: " #: application/views/contesting/add.php:56 msgid "Warning! Are you sure you want to activate all contests?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle contesten wilt activeren?" #: application/views/contesting/add.php:57 msgid "Warning! Are you sure you want to deactivate all contests?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle contesten wilt deactiveren?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 msgid "Add a Contest" -msgstr "" +msgstr "Voeg een contest toe" #: application/views/contesting/create.php:26 #: application/views/contesting/edit.php:33 msgid "Name of the Contest" -msgstr "" +msgstr "Naam van de contest" #: application/views/contesting/create.php:32 #: application/views/contesting/edit.php:39 msgid "Name of Contest in ADIF-specification" -msgstr "" +msgstr "Naam van de contest in ADIF-specificatie" #: application/views/contesting/create.php:35 #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:55 msgid "Create" -msgstr "" +msgstr "Creëren" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:29 @@ -6509,15 +6830,17 @@ msgstr "Contest Naam" #: application/views/contesting/edit.php:37 msgid "Contest ADIF Name" -msgstr "" +msgstr "Contest ADIF Naam" #: application/views/contesting/edit.php:52 msgid "Set to active if to be listed in Contest-list" -msgstr "" +msgstr "Instellen op actief als het in de contest-lijst moet worden opgenomen" #: application/views/contesting/index.php:2 msgid "You need to start a new session before you can change the contest name!" msgstr "" +"Je moet een nieuwe sessie starten voordat je de naam van de contest kunt " +"wijzigen!" #: application/views/contesting/index.php:6 msgid "Start new Contest Session" @@ -6529,7 +6852,7 @@ msgstr "Soort uitwisseling" #: application/views/contesting/index.php:20 msgid "Exchange" -msgstr "" +msgstr "Uitwisseling" #: application/views/contesting/index.php:22 msgid "Serial" @@ -6537,55 +6860,57 @@ msgstr "Volgnummer" #: application/views/contesting/index.php:23 msgid "Serial + Exchange" -msgstr "" +msgstr "Serienummer + Uitwisseling" #: application/views/contesting/index.php:24 msgid "Serial + Gridsquare" -msgstr "" +msgstr "Serienummer + Gridsquare" #: application/views/contesting/index.php:25 msgid "Serial + Gridsquare + Exchange" -msgstr "" +msgstr "Serienummer + Gridsquare + Uitwisseling" #: application/views/contesting/index.php:40 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:649 application/views/qso/index.php:360 msgid "Operator Callsign" -msgstr "" +msgstr "Operator roepnaam" #: application/views/contesting/index.php:45 #: application/views/contesting/index.php:50 msgid "More Settings" -msgstr "" +msgstr "Meer instellingen" #: application/views/contesting/index.php:54 msgid "Copy received exchange to" -msgstr "" +msgstr "Kopieer ontvangen uitwisseling naar" #: application/views/contesting/index.php:56 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" +"Uitwisseling wordt alleen gekopieerd als het voldoet aan de regels voor het " +"geselecteerde veld!" #: application/views/contesting/index.php:60 msgid "Age" -msgstr "" +msgstr "Leeftijd" #: application/views/contesting/index.php:62 msgid "RX Power (W)" -msgstr "" +msgstr "RX Vermogen (W)" #: application/views/contesting/index.php:63 msgid "Locator" -msgstr "" +msgstr "Locator" #: application/views/contesting/index.php:64 #: application/views/qso/edit_ajax.php:177 msgid "QTH" -msgstr "" +msgstr "QTH" #: application/views/contesting/index.php:69 msgid "Sequence of Exchanges" -msgstr "" +msgstr "Reeks van Uitwisselingen" #: application/views/contesting/index.php:72 msgid "" @@ -6601,7 +6926,7 @@ msgstr "" #: application/views/contesting/index.php:82 msgctxt "Keep the translation short!" msgid "Exchange" -msgstr "" +msgstr "Uitwisseling" #: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 @@ -6611,7 +6936,7 @@ msgstr "" #: application/views/contesting/index.php:82 msgctxt "Keep the translation short!" msgid "Grid" -msgstr "" +msgstr "Vak" #: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 @@ -6621,17 +6946,17 @@ msgstr "" #: application/views/contesting/index.php:82 msgctxt "Keep the translation short!" msgid "Serial" -msgstr "" +msgstr "Serienummer" #: application/views/contesting/index.php:181 #: application/views/contesting/index.php:264 #: application/views/qso/edit_ajax.php:674 msgid "Serial (S)" -msgstr "" +msgstr "Serienummer (S)" #: application/views/contesting/index.php:186 msgid "Gridsquare (S)" -msgstr "" +msgstr "Gridsquare (S)" #: application/views/contesting/index.php:191 #: application/views/contesting/index.php:262 @@ -6642,11 +6967,11 @@ msgstr "Verz (S)" #: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:669 msgid "Serial (R)" -msgstr "" +msgstr "Serienummer (R)" #: application/views/contesting/index.php:210 msgid "Gridsquare (R)" -msgstr "" +msgstr "Gridsquare (R)" #: application/views/contesting/index.php:215 #: application/views/contesting/index.php:263 @@ -6664,7 +6989,7 @@ msgstr "Bewaar QSO" #: application/views/contesting/index.php:243 msgid "Callsign Suggestions" -msgstr "Roepnaam suggesties" +msgstr "Aanbevelingen voor roepnamen" #: application/views/contesting/index.php:250 msgid "Contest Logbook" @@ -6673,16 +6998,16 @@ msgstr "Contest Logboek" #: application/views/contesting/index.php:267 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" -msgstr "" +msgstr "VUCC Gridsquare" #: application/views/continents/index.php:63 -#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:20 msgid "# of QSO's worked" -msgstr "" +msgstr "Aantal QSO's gewerkt" #: application/views/cron/edit.php:11 msgid "Identifier" -msgstr "" +msgstr "Identificator" #: application/views/cron/edit.php:22 #: application/views/options/appearance.php:56 @@ -6697,117 +7022,125 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:472 application/views/user/edit.php:481 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" -msgstr "" +msgstr "Interval" #: application/views/cron/edit.php:38 msgid "Choose a preset from the dropdown" -msgstr "" +msgstr "Kies een voorinstelling uit de keuzelijst" #: application/views/cron/edit.php:43 msgid "Every 5 Minutes" -msgstr "" +msgstr "Elke 5 minuten" #: application/views/cron/edit.php:44 msgid "Every 15 Minutes" -msgstr "" +msgstr "Elke 15 minuten" #: application/views/cron/edit.php:45 msgid "Every Hour" -msgstr "" +msgstr "Elk uur" #: application/views/cron/edit.php:46 msgid "Every 2 Hours" -msgstr "" +msgstr "Elke 2 uur" #: application/views/cron/edit.php:47 msgid "Every Day at Midnight" -msgstr "" +msgstr "Elke dag om middernacht" #: application/views/cron/edit.php:48 msgid "Every Monday at 03:00" -msgstr "" +msgstr "Elke maandag om 03:00" #: application/views/cron/edit.php:49 msgid "First Day of Every Month at midnight" -msgstr "" +msgstr "Eerste dag van elke maand om middernacht" #: application/views/cron/edit.php:50 msgid "Every 2 Months at 02:00" -msgstr "" +msgstr "Elke 2 maanden om 02:00" #: application/views/cron/edit.php:62 msgid "OR" -msgstr "" +msgstr "OF" #: application/views/cron/edit.php:63 msgid "Enter your own Cron Expression" -msgstr "" +msgstr "Voer je eigen Cron-expressie in" #: application/views/cron/index.php:9 msgid "How it works" -msgstr "" +msgstr "Hoe het werkt" #: application/views/cron/index.php:15 msgid "" "The Cron Manager assists the administrator in managing cron jobs without " "requiring CLI access." msgstr "" +"De Cron Manager helpt de beheerder bij het beheren van cron-jobs zonder dat " +"CLI-toegang nodig is." #: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" +"Om cron-jobs uit te voeren op basis van de onderstaande gegevens, verwijder " +"alle oude cron-jobs en maak een nieuwe aan:" #: application/views/cron/index.php:29 application/views/cron/index.php:33 msgid "Status Master-Cron:" -msgstr "" +msgstr "Status Master-Cron:" #: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" -msgstr "" +msgstr "Min. versie is" #: application/views/cron/index.php:33 msgid "PHP Version not supported." -msgstr "" +msgstr "PHP-versie niet ondersteund." #: application/views/cron/index.php:43 msgid "Cron List" -msgstr "" +msgstr "Cronlijst" #: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" -msgstr "" +msgstr "ID" #: application/views/cron/index.php:56 msgid "Last Run" -msgstr "" +msgstr "Laatste run" #: application/views/cron/index.php:57 msgid "Next Run" -msgstr "" +msgstr "Volgende run" #: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." -msgstr "" +msgstr "Je Mastercron draait niet." #: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" +"Kopieer de cron hierboven naar een externe cron-service of naar de cron van " +"je server om deze cron-manager te gebruiken." #: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" +"Gebruik dit commando op een basis Linux-server met shell-toegang om je crons " +"te bewerken:" #: application/views/cron/index.php:111 #, php-format @@ -6815,14 +7148,15 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " "%s" msgstr "" +"Je moet je PHP-versie upgraden. De minimale versie is %s. Jouw versie is %s" #: application/views/csv/index.php:7 msgid "Export your logbook for SOTA uploads." -msgstr "" +msgstr "Exporteer je logboek voor SOTA-uploads." #: application/views/csv/index.php:11 msgid "Only QSOs with SOTA information will be exported!" -msgstr "" +msgstr "Alleen QSOs met SOTA-informatie worden geëxporteerd!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 @@ -6833,61 +7167,65 @@ msgstr "Propagattie Mode" #: 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 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" +"Je moet je PHP-versie upgraden. De minimale versie is 7.4. Jouw versie is" #: application/views/dashboard/index.php:117 #, php-format msgctxt "Dashboard Warning" msgid "A new version of Wavelog has been published. See: %s." -msgstr "" +msgstr "Een nieuwe versie van Wavelog is gepubliceerd. Zie: %s." #: application/views/dashboard/index.php:125 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You need to update country files! Click %shere%s to do it." -msgstr "" +msgstr "Je moet de landbestanden bijwerken! Klik %shier%s om het te doen." #: application/views/dashboard/index.php:133 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You have no station locations. Click %shere%s to do it." -msgstr "" +msgstr "Je hebt geen stationlocaties. Klik %shier%s om het te doen." #: application/views/dashboard/index.php:141 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You have no station logbook. Click %shere%s to do it." -msgstr "" +msgstr "Je hebt geen station logboek. Klik %shier%s om het te doen." #: application/views/dashboard/index.php:149 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "" "Your active Station Location isn't linked to your Logbook. Click %shere%s to " "do it." msgstr "" +"Je actieve stationlocatie is niet gekoppeld aan je logboek. Klik %shier%s om " +"het te doen." #: application/views/dashboard/index.php:157 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your Logbook. Click %shere%s to do it." msgstr "" +"Je hebt geen station gekoppeld aan je logboek. Klik %shier%s om dit te doen." #: application/views/dashboard/index.php:166 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Je hebt vandaag %d QSO gemaakt" +msgstr[1] "Je hebt vandaag %d QSO's gemaakt" #: application/views/dashboard/index.php:172 msgid "You have made no QSOs today; time to turn on the radio!" @@ -6902,18 +7240,21 @@ msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" +"Je hebt thema's zonder gedefinieerde themamodus. Vraag de beheerder om de " +"thema's te bewerken." #: application/views/dashboard/index.php:193 #, php-format msgctxt "LoTW Warning" msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "" +msgstr "Ten minste één van je %sLoTW-certificaten%s is verlopen!" #: application/views/dashboard/index.php:197 #, php-format msgctxt "LoTW Warning" msgid "At least one of your %sLoTW certificates%s is about to expire!" msgstr "" +"Ten minste een van je %sLoTW-certificaten%s staat op het punt te verlopen!" #: application/views/dashboard/index.php:287 #: application/views/visitor/index.php:241 @@ -6923,7 +7264,7 @@ msgstr "QSOs overzicht" #: application/views/dashboard/index.php:310 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" -msgstr "" +msgstr "DXCC's overzicht" #: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:279 @@ -6962,7 +7303,7 @@ msgstr "Nodig" #: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:649 #: src/QSLManager/QSO.php:716 msgid "Sent" -msgstr "" +msgstr "Verzonden" #: application/views/dashboard/index.php:346 #: application/views/dashboard/index.php:373 @@ -7037,82 +7378,82 @@ msgstr "Aangevraagd" #: application/views/dashboard/index.php:362 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:425 msgid "VUCC-Grids" -msgstr "" +msgstr "VUCC-Grids" #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" -msgstr "" +msgstr "Aantal QSO's voor deze dag van de week" #: application/views/dayswithqso/index.php:17 msgid "Days of the week" -msgstr "" +msgstr "Dagen van de week" #: application/views/dayswithqso/index.php:20 msgid "Months of the year" -msgstr "" +msgstr "Maanden van het jaar" #: application/views/dayswithqso/index.php:23 msgid "Streaks" -msgstr "" +msgstr "Reeks" #: application/views/dayswithqso/index.php:26 msgid "QSOs of Year" -msgstr "" +msgstr "QSOs van het jaar" #: application/views/dayswithqso/index.php:34 msgid "Number of days with QSOs each year" -msgstr "" +msgstr "Aantal dagen met QSOs elk jaar" #: application/views/dayswithqso/index.php:50 msgid "Days" -msgstr "" +msgstr "Dagen" #: application/views/dayswithqso/index.php:66 msgid "QSOs breakdown by day of the week" -msgstr "" +msgstr "QSOs per dag van de week" #: application/views/dayswithqso/index.php:72 msgid "QSOs breakdown by month of the year" -msgstr "" +msgstr "QSOs per maand van het jaar" #: application/views/dayswithqso/index.php:86 msgid "QSOs per Year" -msgstr "" +msgstr "QSOs per jaar" #: application/views/dayswithqso/index.php:94 msgid "Less" -msgstr "" +msgstr "Minder" #: application/views/dayswithqso/index.php:99 msgid "More" -msgstr "" +msgstr "Meer" #: application/views/dayswithqso/index.php:101 msgid "Calendar with QSOs" -msgstr "" +msgstr "Kalender met QSO's" #: application/views/dayswithqso/index.php:110 msgid "Longest streak with QSOs in the log" -msgstr "" +msgstr "Langste reeks met QSOs in het logboek" #: application/views/dayswithqso/index.php:111 msgid "A maximum of the 10 longest streaks are shown!" -msgstr "" +msgstr "Er worden maximaal 10 van de langste reeksen getoond!" #: application/views/dayswithqso/index.php:129 msgid "Streak (continuous days with QSOs)" -msgstr "" +msgstr "Reeks (aaneengesloten dagen met QSOs)" #: application/views/dayswithqso/index.php:130 #: application/views/dayswithqso/index.php:158 #: application/views/dayswithqso/index.php:180 #: application/views/lotw/satupdate.php:7 msgid "Start Date" -msgstr "" +msgstr "Startdatum" #: application/views/dayswithqso/index.php:131 #: application/views/dayswithqso/index.php:159 @@ -7120,35 +7461,37 @@ msgstr "" #: application/views/lotw/satupdate.php:7 #: application/views/timeline/index.php:202 msgid "End Date" -msgstr "" +msgstr "Einddatum" #: application/views/dayswithqso/index.php:147 msgctxt "Days with QSOs" msgid "No streak found!" -msgstr "" +msgstr "Geen reeks gevonden!" #: application/views/dayswithqso/index.php:151 msgid "Current streak with QSOs in the log" -msgstr "" +msgstr "Huidige reeks met QSOs in het logboek" #: application/views/dayswithqso/index.php:157 #: application/views/dayswithqso/index.php:179 msgid "Current streak (continuous days with QSOs)" -msgstr "" +msgstr "Huidige reeks (aaneengesloten dagen met QSOs)" #: application/views/dayswithqso/index.php:174 msgid "" "If you make a QSO today, you can continue to extend your streak... or else " "your current streak will be broken!" msgstr "" +"Als je vandaag een QSO maakt, kun je je reeks blijven verlengen... anders " +"wordt je huidige reeks verbroken!" #: application/views/dayswithqso/index.php:195 msgid "No current streak found!" -msgstr "" +msgstr "Geen huidige reeks gevonden!" #: application/views/debug/index.php:23 msgid "Wavelog Information" -msgstr "" +msgstr "Wavelog Informatie" #: application/views/debug/index.php:27 msgid "Version" @@ -7156,11 +7499,11 @@ msgstr "Versie" #: application/views/debug/index.php:30 msgid "Latest Version" -msgstr "" +msgstr "Nieuwste versie" #: application/views/debug/index.php:36 msgid "Latest Release" -msgstr "" +msgstr "Laatste release" #: application/views/debug/index.php:41 msgid "Language" @@ -7168,19 +7511,19 @@ msgstr "Taal" #: application/views/debug/index.php:45 msgid "Base URL" -msgstr "" +msgstr "Basis-URL" #: application/views/debug/index.php:49 msgid "Migration" -msgstr "" +msgstr "Migratie" #: application/views/debug/index.php:50 msgid "There is something wrong with your Migration in Database!" -msgstr "" +msgstr "Er is iets mis met je migratie in de database!" #: application/views/debug/index.php:55 msgid "Migration is outdated and locked!" -msgstr "" +msgstr "Migratie is verouderd en vergrendeld!" #: application/views/debug/index.php:56 #, php-format @@ -7190,77 +7533,83 @@ msgid "" "locked due to a previously failed process. Delete the file %s to force the " "migration to run again." msgstr "" +"De huidige migratie is niet de versie die het zou moeten zijn. Herlaad deze " +"pagina na %s seconden. Als deze waarschuwing aanhoudt, is je migratie " +"waarschijnlijk vergrendeld door een eerder mislukt proces. Verwijder het " +"bestand %s om de migratie opnieuw te forceren." #: application/views/debug/index.php:57 #, php-format msgid "Check this wiki article %shere%s for more information." -msgstr "" +msgstr "Bekijk dit wiki-artikel %shier%s voor meer informatie." #: application/views/debug/index.php:58 #, php-format msgid "Current migration is %s" -msgstr "" +msgstr "Huidige migratie is %s" #: application/views/debug/index.php:59 #, php-format msgid "Migration should be %s" -msgstr "" +msgstr "Migratie zou %s moeten zijn" #: application/views/debug/index.php:64 msgid "Environment" -msgstr "" +msgstr "Omgeving" #: application/views/debug/index.php:68 msgid "System Time" -msgstr "" +msgstr "Systeemtijd" #: application/views/debug/index.php:76 msgid "Total QSO on this instance" -msgstr "" +msgstr "Totaal aantal QSO's in dit geval" #: application/views/debug/index.php:80 msgid "Total User" -msgstr "" +msgstr "Totaal aantal gebruikers" #: application/views/debug/index.php:81 application/views/user/index.php:27 msgid "User" msgid_plural "Users" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Gebruiker" +msgstr[1] "Gebruikers" #: application/views/debug/index.php:88 msgid "Server Information" -msgstr "" +msgstr "Serverinformatie" #: application/views/debug/index.php:92 msgid "Server Software" -msgstr "" +msgstr "Serversoftware" #: application/views/debug/index.php:97 msgid "PHP Version" -msgstr "" +msgstr "PHP-versie" #: application/views/debug/index.php:103 msgid "Deprecated" -msgstr "" +msgstr "Verouderd" #: application/views/debug/index.php:110 msgid "MySQL Version" -msgstr "" +msgstr "MySQL-versie" #: application/views/debug/index.php:114 msgid "Codeigniter Version" -msgstr "" +msgstr "Codeigniter-versie" #: application/views/debug/index.php:122 msgid "Folder Permissions" -msgstr "" +msgstr "Mapmachtigingen" #: application/views/debug/index.php:124 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" +"Dit verifieert dat de mappen die door Wavelog worden gebruikt lees- en " +"schrijfrechten hebben via 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 @@ -7276,43 +7625,46 @@ msgstr "Mislukt" #: application/views/debug/index.php:187 msgid "Config Maintenance" -msgstr "" +msgstr "Configuratieonderhoud" #: application/views/debug/index.php:193 msgid "Your authentication mode is outdated and possibly unsafe" -msgstr "" +msgstr "Je authenticatiemodus is verouderd en mogelijk onveilig" #: application/views/debug/index.php:195 application/views/debug/index.php:212 #, php-format msgid "Please edit your %s File:" -msgstr "" +msgstr "Bewerk je %s bestand:" #: application/views/debug/index.php:196 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" +"Ga naar je application/config map en vergelijk config.sample.php met je " +"config.php" #: application/views/debug/index.php:197 #, php-format msgid "Change %s to the value %s (Strongly recommended)" -msgstr "" +msgstr "Wijzig %s naar de waarde %s (Sterk aanbevolen)" #: application/views/debug/index.php:203 msgid "Authentication Mode is set correctly" -msgstr "" +msgstr "De authenticatiemodus is correct ingesteld" #: 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 "" +"Je gebruikt de standaard encryptiesleutel. Je zou deze moeten veranderen!" #: application/views/debug/index.php:213 msgid "This will also enable the 'Keep me logged in' feature." -msgstr "" +msgstr "Hierdoor wordt ook de functie 'Houd me ingelogd' ingeschakeld." #: application/views/debug/index.php:214 #, php-format @@ -7320,24 +7672,28 @@ msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" +"Wijzig de waarde van %s naar een nieuwe encryptiesleutel anders dan " +"'flossie1234555541'. Kies een veilig en lang wachtwoord. (Sterk aanbevolen)" #: application/views/debug/index.php:220 msgid "You do not use the default encryption key" -msgstr "" +msgstr "Je gebruikt de standaard encryptiesleutel niet" #: application/views/debug/index.php:227 msgid "Migrate Userdata" -msgstr "" +msgstr "Gebruikersgegevens migreren" #: application/views/debug/index.php:229 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" +"Hier kun je bestaande QSL-kaarten en eQSL-kaarten migreren naar de nieuwe " +"gebruikersgegevensdirectory." #: application/views/debug/index.php:242 msgid "Modules" -msgstr "" +msgstr "Modules" #: application/views/debug/index.php:248 application/views/debug/index.php:259 #: application/views/debug/index.php:270 application/views/debug/index.php:281 @@ -7353,52 +7709,52 @@ msgstr "Niet geïnstalleerd" #: application/views/debug/index.php:441 msgid "Git Information" -msgstr "" +msgstr "Git Informatie" #: application/views/debug/index.php:445 msgid "Branch" -msgstr "" +msgstr "Branch" #: application/views/debug/index.php:456 application/views/debug/index.php:467 #: application/views/debug/index.php:477 msgid "n/a" -msgstr "" +msgstr "n.v.t." #: application/views/debug/index.php:462 msgid "Commit" -msgstr "" +msgstr "Commit" #: application/views/debug/index.php:472 msgid "Tag" -msgstr "" +msgstr "Tag" #: application/views/debug/index.php:482 msgid "Last Fetch" -msgstr "" +msgstr "Laatste Fetch" #: application/views/debug/index.php:494 msgid "Check for new version" -msgstr "" +msgstr "Controleer op nieuwe versie" #: application/views/debug/index.php:495 msgid "Update now" -msgstr "" +msgstr "Nu bijwerken" #: application/views/debug/index.php:513 msgid "File download date" -msgstr "" +msgstr "Downloaddatum bestand" #: application/views/debug/index.php:517 msgid "File" -msgstr "" +msgstr "Bestand" #: application/views/debug/index.php:518 msgid "Last update" -msgstr "" +msgstr "Laatste update" #: application/views/debug/index.php:522 msgid "DXCC update from Club Log" -msgstr "" +msgstr "DXCC-update van 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 @@ -7406,68 +7762,69 @@ msgstr "" #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/station_profile/edit.php:49 msgid "Update" -msgstr "" +msgstr "Bijwerken" #: application/views/debug/index.php:528 msgid "DOK file download" -msgstr "" +msgstr "DOK-bestand downloaden" #: application/views/debug/index.php:533 msgid "LoTW users download" -msgstr "" +msgstr "LoTW-gebruikers downloaden" #: application/views/debug/index.php:538 msgid "POTA file download" -msgstr "" +msgstr "POTA-bestandsdownload" #: application/views/debug/index.php:543 msgid "SCP file download" -msgstr "" +msgstr "SCP-bestand downloaden" #: application/views/debug/index.php:548 msgid "SOTA file download" -msgstr "" +msgstr "SOTA-bestand downloaden" #: application/views/debug/index.php:553 msgid "WWFF file download" -msgstr "" +msgstr "WWFF-bestandsdownload" #: application/views/debug/index.php:558 msgid "TLE update" -msgstr "" +msgstr "TLE-update" #: application/views/debug/index.php:567 msgid "QSO-DB Maintenance" -msgstr "" +msgstr "QSO-DB Onderhoud" #: application/views/debug/index.php:571 #, 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] "De database bevat %d QSO zonder een station-profiel (locatie)" +msgstr[1] "De database bevat %d QSO's zonder een station-profiel (locatie)" #: application/views/debug/index.php:609 msgid "Please mark QSOs and reassign them to an existing station location:" -msgstr "" +msgstr "Markeer QSOs en wijs ze opnieuw toe aan een bestaande stationlocatie:" #: application/views/debug/index.php:617 msgctxt "Stationlocation" msgid "Target Location" -msgstr "" +msgstr "Doellocatie" #: application/views/debug/index.php:618 application/views/debug/index.php:629 msgid "Reassign" -msgstr "" +msgstr "Opnieuw toewijzen" #: application/views/debug/index.php:638 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" +"Elke QSO in je database is toegewezen aan een station-profiel (locatie)" #: application/views/debug/index.php:638 msgid "Everything ok" -msgstr "" +msgstr "Alles oké" #: application/views/debug/index.php:663 msgid "Albanian" @@ -7576,97 +7933,101 @@ msgstr "Turks" #: application/views/distancerecords/index.php:4 msgid "This page lists distance records per satellite based on gridsquares." msgstr "" +"Deze pagina vermeldt afstandsrecords per satelliet op basis van gridsquares." #: application/views/distancerecords/index.php:20 msgid "My Gridsquare" -msgstr "" +msgstr "Mijn Gridsquare" #: application/views/distancerecords/index.php:21 msgid "DX Gridsquare" -msgstr "" +msgstr "DX Gridsquare" #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:31 #: application/views/simplefle/index.php:71 msgid "QSO Data" -msgstr "" +msgstr "QSO-gegevens" #: application/views/distances/index.php:9 -#, php-format +#, fuzzy, php-format msgid "contacts were plotted.%s Your furthest contact was with" -msgstr "" +msgstr "contacten werden uitgezet. %s Je verste contact was met" #: application/views/distances/index.php:10 msgid "in gridsquare" -msgstr "" +msgstr "in gridsquare" #: application/views/distances/index.php:11 msgid "the distance was" -msgstr "" +msgstr "de afstand was" #: application/views/distances/index.php:14 msgid "Callsign(s) worked (max 5 shown)" -msgstr "" +msgstr "Opgeroepen roepna(a)m(en) (maximaal 5 getoond)" #: application/views/distances/index.php:19 msgid "Band selection" -msgstr "" +msgstr "Bandselectie" #: application/views/dxatlas/index.php:3 msgid "DX Atlas Export" -msgstr "" +msgstr "DX Atlas Exporteren" #: application/views/dxatlas/index.php:7 msgid "" "Export your logbook for use in DX Atlas to display worked / confirmed " "gridsquares." msgstr "" +"Exporteer je logboek voor gebruik in DX Atlas om bewerkte/bevestigde " +"gridsquares weer te geven." #: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 msgid "Only QSOs with a gridsquare defined will be exported!" -msgstr "" +msgstr "Alleen QSO's met een gedefinieerd gridsquare worden geëxporteerd!" #: application/views/dxcalendar/index.php:9 msgid "Date from" -msgstr "" +msgstr "Datum van" #: application/views/dxcalendar/index.php:10 msgid "Date to" -msgstr "" +msgstr "Datum tot" #: application/views/dxcalendar/index.php:13 #: application/views/view_log/qso.php:489 msgid "QSL Info" -msgstr "" +msgstr "QSL-info" #: application/views/dxcalendar/index.php:14 msgid "Source" -msgstr "" +msgstr "Bron" #: application/views/email/admin_reset_password.php:3 #: application/views/email/forgot_password.php:3 msgid "Wavelog Account Password Reset" -msgstr "" +msgstr "Wachtwoord opnieuw instellen voor Wavelog-account" #: application/views/email/admin_reset_password.php:5 #, php-format msgid "Hello %s" -msgstr "" +msgstr "Hallo %s" #: application/views/email/admin_reset_password.php:7 msgid "An admin initiated a password reset for your Wavelog account." msgstr "" +"Een beheerder heeft een wachtwoordreset voor je Wavelog-account gestart." #: application/views/email/admin_reset_password.php:9 #, php-format msgid "Your username is: %s" -msgstr "" +msgstr "Je gebruikersnaam is: %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 "Klik hier om je wachtwoord opnieuw in te stellen: %s" #: application/views/email/admin_reset_password.php:13 msgid "" @@ -7677,11 +8038,17 @@ msgid "" "\n" "Wavelog" msgstr "" +"Als je geen wachtwoordreset hebt aangevraagd, negeer deze e-mail dan en " +"praat met een beheerder van je Wavelog-instantie.\n" +"\n" +"Met vriendelijke groet,\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 "Je machtigingsniveau voor Clubstation %s is gewijzigd" #: application/views/email/club/modified_member.php:5 #, php-format @@ -7691,11 +8058,15 @@ msgid "" "Your permission level for Clubstation %s has been changed. You can access " "this callsign through your account at %s." msgstr "" +"Beste %s,\n" +"\n" +"Je toestemmingsniveau voor Clubstation %s is gewijzigd. Je kunt deze " +"roepnaam via je account op %s benaderen." #: application/views/email/club/modified_member.php:9 #, php-format msgid "Your new permission level is: %s" -msgstr "" +msgstr "Je nieuwe toestemmingsniveau is: %s" #: application/views/email/club/modified_member.php:11 #: application/views/email/club/new_member.php:11 @@ -7706,11 +8077,16 @@ msgid "" "\n" "Wavelog" msgstr "" +"Log in en kijk maar! \n" +"\n" +"Groeten, \n" +"\n" +"Wavelog" #: application/views/email/club/new_member.php:3 #, php-format msgid "New %s Membership on Wavelog!" -msgstr "" +msgstr "Nieuw %s lidmaatschap op Wavelog!" #: application/views/email/club/new_member.php:5 #, php-format @@ -7720,11 +8096,15 @@ msgid "" "You have been added to the Clubstation %s. You can now access this callsign " "through your account on %s." msgstr "" +"Beste %s\n" +"\n" +"Je bent toegevoegd aan de Clubstation %s. Je kunt nu toegang krijgen tot " +"deze roepnaam via je account op %s." #: application/views/email/club/new_member.php:9 #, php-format msgid "Your permission level is: %s" -msgstr "" +msgstr "Je toestemmingsniveau is: %s" #: application/views/email/forgot_password.php:5 msgid "" @@ -7732,6 +8112,10 @@ msgid "" "\n" "You or someone else has requested a password reset on your Wavelog account." msgstr "" +"Hoi,\n" +"\n" +"Jij of iemand anders heeft een verzoek ingediend om het wachtwoord van je " +"Wavelog-account opnieuw in te stellen." #: application/views/email/forgot_password.php:13 msgid "" @@ -7741,19 +8125,24 @@ msgid "" "\n" "Wavelog" msgstr "" +"Als je dit niet hebt aangevraagd, negeer het dan gewoon.\n" +"\n" +"Met vriendelijke groet,\n" +"\n" +"Wavelog" #: application/views/email/oqrs_request.php:3 #, php-format msgid "Wavelog OQRS from %s" -msgstr "" +msgstr "Wavelog OQRS van %s" #: application/views/email/oqrs_request.php:6 msgid "The user entered the following message: " -msgstr "" +msgstr "De gebruiker heeft het volgende bericht ingevoerd: " #: application/views/email/oqrs_request.php:11 msgid "The user did not enter any additional message." -msgstr "" +msgstr "De gebruiker heeft geen extra bericht ingevoerd." #: application/views/email/oqrs_request.php:14 #, php-format @@ -7762,6 +8151,9 @@ msgid "" "\n" "You got an OQRS request from %s." msgstr "" +"Hoi,\n" +"\n" +"Je hebt een OQRS-verzoek van %s ontvangen." #: application/views/email/oqrs_request.php:20 msgid "" @@ -7771,10 +8163,15 @@ msgid "" "\n" "Wavelog" msgstr "" +"Log alstublieft in op uw Wavelog en verwerk het.\n" +"\n" +"Met vriendelijke groet,\n" +"\n" +"Wavelog" #: application/views/email/testmail.php:3 msgid "Wavelog Test-Mail" -msgstr "" +msgstr "Wavelog Testmail" #: application/views/email/testmail.php:5 msgid "" @@ -7788,20 +8185,29 @@ msgid "" "\n" "Wavelog" msgstr "" +"Hoi,\n" +"\n" +"Dit is een testmail van je Wavelog-instantie.\n" +"\n" +"Als je deze e-mail hebt ontvangen, zijn je mailinstellingen correct.\n" +"\n" +"Groeten,\n" +"\n" +"Wavelog" #: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 #: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 #: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 #: application/views/qrz/export.php:14 msgid "Download QSOs" -msgstr "" +msgstr "QSOs downloaden" #: 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 "Upload QSOs" #: application/views/eqsl/analysis.php:17 #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 @@ -7809,61 +8215,65 @@ msgstr "" #: application/views/eqsl/tools.php:15 #: application/views/interface_assets/header.php:258 msgid "Tools" -msgstr "" +msgstr "Gereedschap" #: 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 "eQSL-kaarten downloaden" #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" -msgstr "" +msgstr "Submodus" #: application/views/eqsl/analysis.php:41 msgid "eQSL Received Date" -msgstr "" +msgstr "eQSL Ontvangstdatum" #: application/views/eqsl/analysis.php:42 msgid "Log Status" -msgstr "" +msgstr "Logstatus" #: application/views/eqsl/analysis.php:43 application/views/eqsl/result.php:38 msgid "eQSL Status" -msgstr "" +msgstr "eQSL-status" #: application/views/eqsl/analysis.php:64 msgid "There are no QSO confirmations waiting for you at eQSL.cc" -msgstr "" +msgstr "Er zijn geen QSO-bevestigingen die op je wachten bij 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 "" +"Hieronder staat een tabel van QSO's die zijn bevestigd op eQSL maar waarvan " +"de QSL-afbeeldingen nog niet zijn gedownload." #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 #: application/views/view_log/qso.php:544 msgid "QSL Message" -msgstr "" +msgstr "QSL-bericht" #: application/views/eqsl/download.php:44 msgid "eQSL Receive Date" -msgstr "" +msgstr "eQSL Ontvangstdatum" #: application/views/eqsl/download.php:72 msgid "View/Download" -msgstr "" +msgstr "Bekijken/Downloaden" #: 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 zal de eQSL-gegevens van je Wavelog-gebruikersprofiel gebruiken om " +"verbinding te maken met eQSL en bevestigingen te downloaden." #: application/views/eqsl/download.php:85 msgid "" @@ -7872,48 +8282,63 @@ 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 "" +"Vanwege een snelheidslimiet van ongeveer 10 seconden per eQSL-afbeelding " +"download zal het aanroepen van deze functie lang duren om te voltooien! " +"Daarom moet je deze functie mogelijk meerdere keren aanroepen, afhankelijk " +"van het aantal openstaande kaarten. Dit kan leiden tot een script-timeout, " +"afhankelijk van de PHP-configuratie." #: 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 "" +"Er zijn geen QSO's waarvan de eQSL-kaartafbeeldingen nog niet zijn " +"gedownload. Ga wat meer QSO's loggen!" #: application/views/eqsl/export.php:31 msgid "Below is a table of QSOs that have not yet been sent to eQSL." msgstr "" +"Hieronder staat een tabel met QSO's die nog niet naar eQSL zijn verzonden." #: 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 "" +"Zorg ervoor dat het veld 'eQSL QTH Nickname' is ingesteld in je " +"stationprofiel en dat de waarde overeenkomt met de QTH Nickname die je " +"binnen eQSL hebt ingesteld." #: application/views/eqsl/export.php:37 msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." msgstr "" +"Door op 'QSOs uploaden' te klikken, wordt QSO-informatie naar eQSL.cc " +"verzonden." #: application/views/eqsl/export.php:46 msgid "The following QSOs were sent to eQSL." -msgstr "" +msgstr "De volgende QSOs zijn naar eQSL gestuurd." #: 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 "" +"Er zijn op dit moment geen QSO's die naar eQSL moeten worden verzonden. Ga " +"wat meer QSO's loggen!" #: application/views/eqsl/import.php:28 msgid "The next automatic sync with eQSL will happen at: " -msgstr "" +msgstr "De volgende automatische synchronisatie met eQSL zal plaatsvinden om: " #: application/views/eqsl/import.php:31 msgid "Import from file..." -msgstr "" +msgstr "Importeren uit bestand..." #: application/views/eqsl/import.php:34 msgid "Download Inbox" -msgstr "" +msgstr "Download Inbox" #: application/views/eqsl/import.php:34 #, php-format @@ -7921,44 +8346,50 @@ msgid "" "Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " "confirmed on eQSL." msgstr "" +"Upload het geëxporteerde ADIF-bestand van eQSL van de %s pagina, om QSO's " +"als bevestigd te markeren op eQSL." #: application/views/eqsl/import.php:35 msgid "Choose Station(location) eQSL File belongs to:" -msgstr "" +msgstr "Kies station(locatie) waar het eQSL-bestand bij hoort:" #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 msgid "Log files must have the file type .adi" -msgstr "" +msgstr "Logbestanden moeten het bestandstype *.adi hebben" #: application/views/eqsl/import.php:53 msgid "Import directly from eQSL" -msgstr "" +msgstr "Direct importeren van 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 "" +"Dit uploadt GEEN QSOs. Het markeert alleen QSOs als verzonden. Als je deze " +"knop gebruikt, moet je ze handmatig uploaden op de eQSL.cc-website." #: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" -msgstr "" +msgstr "Markeer alle QSO's als verzonden naar eQSL" #: application/views/eqsl/tools.php:29 msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." msgstr "" +"Gebruik dit als je veel QSO's naar eQSL moet uploaden, het voorkomt dat de " +"server uitvalt." #: application/views/eqslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store eQSL Card assets" -msgstr "" +msgstr "Je gebruikt %s schijfruimte om eQSL-kaartassets op te slaan" #: application/views/eqslcard/index.php:35 #: application/views/qslcard/index.php:33 msgid "QSL Date" -msgstr "" +msgstr "QSL Datum" #: application/views/eqslcard/index.php:64 #: application/views/interface_assets/footer.php:2470 @@ -7968,7 +8399,7 @@ msgstr "" #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:763 msgid "View" -msgstr "" +msgstr "Bekijken" #: application/views/hamsat/index.php:22 #, php-format @@ -7976,42 +8407,48 @@ msgid "" "Cannot filter workable passes only without private feed key. Please set the " "feed key in %s." msgstr "" +"Kan werkbare doorgangen alleen niet filteren zonder privésleutel voor de " +"feed. Stel de feed-sleutel in %s in." #: application/views/hamsat/index.php:22 msgid "your profile" -msgstr "" +msgstr "je profiel" #: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 #: application/views/webadif/export.php:10 msgid "Upload Logbook" -msgstr "" +msgstr "Logboek uploaden" #: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 #: application/views/webadif/export.php:13 msgid "Mark QSOs" -msgstr "" +msgstr "Markeer QSOs" #: application/views/hrdlog/export.php:22 msgid "" "Here you can see all QSOs which have not been previously uploaded to a " "HRDLog logbook." msgstr "" +"Hier kun je alle QSO's zien die niet eerder naar een HRDLog logboek zijn " +"geüpload." #: 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 "" +"Je moet een HRDLog Logboek API-code instellen in je stationprofiel. Alleen " +"stationprofielen met een ingestelde API-sleutel worden weergegeven." #: application/views/hrdlog/export.php:24 #, php-format msgid "The Code can be requested at %s" -msgstr "" +msgstr "De code kan worden opgevraagd bij %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 "" +msgstr "Dit kan even duren omdat QSO-uploads achtereenvolgens worden verwerkt." #: application/views/hrdlog/export.php:34 #: application/views/logbookadvanced/index.php:757 @@ -8021,47 +8458,49 @@ msgstr "" #: application/views/qslprint/qsolist.php:14 #: application/views/webadif/export.php:41 msgid "Profile name" -msgstr "" +msgstr "Profielnaam" #: application/views/hrdlog/export.php:35 #: application/views/oqrs/showrequests.php:86 #: application/views/qrz/export.php:40 application/views/webadif/export.php:42 msgid "Station callsign" -msgstr "" +msgstr "Station roepnaam" #: application/views/hrdlog/export.php:36 application/views/qrz/export.php:41 msgid "Edited QSOs not uploaded" -msgstr "" +msgstr "Bewerkte QSOs niet geüpload" #: 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 "Totaal aantal QSO's niet geüpload" #: application/views/hrdlog/export.php:38 application/views/qrz/export.php:43 #: application/views/webadif/export.php:44 msgid "Total QSOs uploaded" -msgstr "" +msgstr "Totaal aantal QSO's geüpload" #: 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 "" +"Geen stationlocaties met geldige HRDlog-instellingen gevonden. Controleer de " +"HRDlog-gegevens in de stationlocatie-instellingen!" #: application/views/hrdlog/export.php:87 msgid "Mark QSOs as exported to HRDLog Logbook" -msgstr "" +msgstr "Markeer QSOs als geëxporteerd naar HRDLog Logboek" #: 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 "Jippie, het is klaar!" #: application/views/hrdlog/mark_hrdlog.php:16 msgid "The QSOs are marked as exported to HRDLog Logbook." -msgstr "" +msgstr "De QSO's zijn gemarkeerd als geëxporteerd naar het HRDLog Logboek." #: application/views/interface_assets/footer.php:32 #: application/views/search/search_result_ajax.php:417 @@ -8073,77 +8512,79 @@ msgstr "Wijzig QSO" #: application/views/interface_assets/footer.php:33 msgid "Share QSO" -msgstr "" +msgstr "Deel QSO" #: application/views/interface_assets/footer.php:35 msgid "ERROR" -msgstr "" +msgstr "FOUT" #: application/views/interface_assets/footer.php:36 msgid "Attention" -msgstr "" +msgstr "Attentie" #: application/views/interface_assets/footer.php:41 msgid "Warning! Are you sure you want delete QSO with " -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je het QSO wilt verwijderen met " #: application/views/interface_assets/footer.php:42 #: application/views/user/edit.php:513 msgid "Colors" -msgstr "" +msgstr "Kleuren" #: application/views/interface_assets/footer.php:44 msgid "Worked not confirmed" -msgstr "" +msgstr "Gewerkt maar niet bevestigd" #: application/views/interface_assets/footer.php:45 msgid "Not worked" -msgstr "" +msgstr "Niet gewerkt" #: application/views/interface_assets/footer.php:49 #: application/views/qso/index.php:670 #: application/views/visitor/layout/footer.php:247 msgid "Clear" -msgstr "" +msgstr "Wissen" #: application/views/interface_assets/footer.php:50 #: application/views/qso/edit_ajax.php:213 #: application/views/qso/edit_ajax.php:565 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" +"Propagatiemodus wordt niet ondersteund door LoTW. LoTW QSL-velden " +"uitgeschakeld." #: application/views/interface_assets/footer.php:51 msgid "No states for this DXCC available" -msgstr "" +msgstr "Geen staten beschikbaar voor deze DXCC" #: application/views/interface_assets/footer.php:52 msgid "Compute QRB and QTF" -msgstr "" +msgstr "Bereken QRB en QTF" #: application/views/interface_assets/footer.php:53 msgid "Error in locators. Please check." -msgstr "" +msgstr "Fout in locators. Controleer alsjeblieft." #: application/views/interface_assets/footer.php:54 #: application/views/user/index.php:20 application/views/user/index.php:142 msgid "Refresh List" -msgstr "" +msgstr "Lijst vernieuwen" #: application/views/interface_assets/footer.php:55 msgid "Please Wait ..." -msgstr "" +msgstr "Even geduld ..." #: application/views/interface_assets/footer.php:56 msgctxt "" "Word for country states that are deprecated but kept for legacy reasons." msgid "deprecated" -msgstr "" +msgstr "verouderd" #: application/views/interface_assets/footer.php:138 #: application/views/interface_assets/header.php:483 #: application/views/options/sidebar.php:12 msgid "Version Info" -msgstr "" +msgstr "Versie-informatie" #: application/views/interface_assets/footer.php:192 #: application/views/interface_assets/footer.php:207 @@ -8152,66 +8593,69 @@ msgstr "" #: application/views/interface_assets/footer.php:448 msgid "Description:" -msgstr "" +msgstr "Beschrijving:" #: application/views/interface_assets/footer.php:451 msgid "Query description" -msgstr "" +msgstr "Beschrijving zoekopdracht" #: application/views/interface_assets/footer.php:467 msgid "Your query has been saved!" -msgstr "" +msgstr "Je zoekopdracht is opgeslagen!" #: application/views/interface_assets/footer.php:469 #: application/views/search/filter.php:49 msgid "Edit queries" -msgstr "" +msgstr "Bewerk zoekopdrachten" #: application/views/interface_assets/footer.php:471 msgid "Stored queries:" -msgstr "" +msgstr "Opgeslagen zoekopdrachten:" #: application/views/interface_assets/footer.php:476 #: application/views/search/filter.php:63 msgid "Run Query" -msgstr "" +msgstr "Zoekopdracht uitvoeren" #: application/views/interface_assets/footer.php:488 #: application/views/interface_assets/footer.php:617 #: application/views/interface_assets/footer.php:680 msgid "Stored Queries" -msgstr "" +msgstr "Opgeslagen zoekopdrachten" #: application/views/interface_assets/footer.php:493 #: application/views/interface_assets/footer.php:685 msgid "You need to make a query before you search!" -msgstr "" +msgstr "Je moet een zoekopdracht maken voordat je zoekt!" #: application/views/interface_assets/footer.php:514 #: application/views/interface_assets/footer.php:644 #: application/views/search/filter.php:82 msgid "Export to ADIF" -msgstr "" +msgstr "Exporteren naar ADIF" #: application/views/interface_assets/footer.php:552 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:566 msgid "The stored query has been deleted!" -msgstr "" +msgstr "De opgeslagen zoekopdracht is verwijderd!" #: application/views/interface_assets/footer.php:575 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:601 msgid "The query description has been updated!" -msgstr "" +msgstr "De beschrijving van de zoekopdracht is bijgewerkt!" #: application/views/interface_assets/footer.php:605 msgid "Something went wrong with the save. Please try again!" -msgstr "" +msgstr "Er is iets misgegaan met het opslaan. Probeer het opnieuw!" #: application/views/interface_assets/footer.php:727 msgid "" @@ -8225,20 +8669,20 @@ msgstr "" #: application/views/interface_assets/footer.php:779 #: application/views/logbookadvanced/index.php:596 msgid "Callsign: " -msgstr "" +msgstr "Roepnaam: " #: application/views/interface_assets/footer.php:780 msgid "Count: " -msgstr "" +msgstr "Aantal: " #: application/views/interface_assets/footer.php:781 msgid "Grids: " -msgstr "" +msgstr "Grids: " #: application/views/interface_assets/footer.php:1262 #, php-format msgid "You're not logged in. Please %slogin%s" -msgstr "" +msgstr "Je bent niet ingelogd. Gelieve %sinloggen%s" #: application/views/interface_assets/footer.php:1476 #: application/views/interface_assets/footer.php:1480 @@ -8247,210 +8691,210 @@ msgstr "" #: application/views/interface_assets/footer.php:1624 #: application/views/interface_assets/footer.php:1627 msgid "grid square" -msgstr "" +msgstr "grid square" #: application/views/interface_assets/footer.php:1483 #: application/views/interface_assets/footer.php:1627 msgid "Total count" -msgstr "" +msgstr "Totaal aantal" #: application/views/interface_assets/footer.php:2246 msgid "QSL Card for " -msgstr "" +msgstr "QSL-kaart voor " #: application/views/interface_assets/footer.php:2266 msgid "Warning! Are you sure you want to delete this QSL card?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je deze QSL-kaart wilt verwijderen?" #: application/views/interface_assets/footer.php:2306 #: application/views/view_log/qso.php:43 msgid "eQSL Card" -msgstr "" +msgstr "eQSL-kaart" #: application/views/interface_assets/footer.php:2308 msgid "eQSL Card for " -msgstr "" +msgstr "eQSL-kaart voor " #: application/views/interface_assets/footer.php:2481 #: application/views/interface_assets/footer.php:2520 #: application/views/view_log/qso.php:753 msgid "QSL image file" -msgstr "" +msgstr "QSL-afbeeldingsbestand" #: application/views/interface_assets/footer.php:2500 msgid "Front QSL Card:" -msgstr "" +msgstr "Voorkant QSL-kaart:" #: application/views/interface_assets/footer.php:2538 msgid "Back QSL Card:" -msgstr "" +msgstr "Achterkant QSL-kaart:" #: application/views/interface_assets/footer.php:2549 #: application/views/interface_assets/footer.php:2574 msgid "Add additional QSOs to a QSL Card" -msgstr "" +msgstr "Voeg extra QSOs toe aan een QSL-kaart" #: application/views/interface_assets/footer.php:2585 msgid "Something went wrong. Please try again!" -msgstr "" +msgstr "Er is iets misgegaan. Probeer het opnieuw!" #: application/views/interface_assets/header.php:86 msgid "Developer Mode" -msgstr "" +msgstr "Ontwikkelaarsmodus" #: application/views/interface_assets/header.php:89 msgid "Maintenance Mode" -msgstr "" +msgstr "Onderhoudsmodus" #: application/views/interface_assets/header.php:92 #: application/views/user/edit.php:90 msgid "Clubstation" -msgstr "" +msgstr "Clubstation" #: application/views/interface_assets/header.php:102 msgid "Overview" -msgstr "" +msgstr "Overzicht" #: application/views/interface_assets/header.php:104 msgid "Advanced" -msgstr "" +msgstr "Geavanceerd" #: application/views/interface_assets/header.php:107 msgid "View QSL Cards" -msgstr "" +msgstr "Bekijk QSL-kaarten" #: application/views/interface_assets/header.php:110 msgid "View eQSL Cards" -msgstr "" +msgstr "Bekijk eQSL-kaarten" #: application/views/interface_assets/header.php:118 msgid "Live QSO" -msgstr "" +msgstr "Live QSO" #: application/views/interface_assets/header.php:120 msgid "Post QSO" -msgstr "" +msgstr "Na QSO" #: application/views/interface_assets/header.php:122 msgid "Simple Fast Log Entry" -msgstr "" +msgstr "Simple Fast Log Entry" #: application/views/interface_assets/header.php:125 msgid "Live Contest Logging" -msgstr "" +msgstr "Live Contest Logging" #: application/views/interface_assets/header.php:127 msgid "Post Contest Logging" -msgstr "" +msgstr "Loggen na de contest" #: application/views/interface_assets/header.php:137 msgid "Analytics" -msgstr "" +msgstr "Analyse" #: application/views/interface_assets/header.php:147 msgid "Activated Gridsquares" -msgstr "" +msgstr "Geactiveerde gridsquares" #: application/views/interface_assets/header.php:165 msgid "Callsign Statistics" -msgstr "" +msgstr "Roepnaamstatistieken" #: application/views/interface_assets/header.php:171 msgid "International" -msgstr "" +msgstr "Internationaal" #: application/views/interface_assets/header.php:177 msgid "ITU" -msgstr "" +msgstr "ITU" #: application/views/interface_assets/header.php:183 msgid "Worked All Europe (WAE)" -msgstr "" +msgstr "Worked All Europe (WAE)" #: application/views/interface_assets/header.php:201 msgid "Canada" -msgstr "" +msgstr "Canada" #: application/views/interface_assets/header.php:207 msgid "Germany" -msgstr "" +msgstr "Duitsland" #: application/views/interface_assets/header.php:211 msgid "DL Gridmaster" -msgstr "" +msgstr "DL Gridmaster" #: application/views/interface_assets/header.php:215 msgid "Great Britain" -msgstr "" +msgstr "Groot-Brittannië" #: application/views/interface_assets/header.php:217 msgid "WAB" -msgstr "" +msgstr "WAB" #: application/views/interface_assets/header.php:221 msgid "Japan" -msgstr "" +msgstr "Japan" #: application/views/interface_assets/header.php:227 msgid "JA Gridmaster" -msgstr "" +msgstr "JA Gridmaster" #: application/views/interface_assets/header.php:231 msgid "Luxemburg" -msgstr "" +msgstr "Luxemburg" #: application/views/interface_assets/header.php:233 msgid "LX Gridmaster" -msgstr "" +msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:237 msgid "Switzerland" -msgstr "" +msgstr "Zwitserland" #: application/views/interface_assets/header.php:243 msgid "USA" -msgstr "" +msgstr "VS" #: application/views/interface_assets/header.php:249 msgid "US Gridmaster" -msgstr "" +msgstr "US Gridmaster" #: application/views/interface_assets/header.php:266 msgid "Bandmap" -msgstr "" +msgstr "Bandkaart" #: application/views/interface_assets/header.php:268 msgid "SAT Timers" -msgstr "" +msgstr "SAT-timers" #: application/views/interface_assets/header.php:270 msgid "Satellite Flightpath" -msgstr "" +msgstr "Satellietbaan" #: application/views/interface_assets/header.php:272 msgid "Satellite Pass" -msgstr "" +msgstr "Satellietovergang" #: application/views/interface_assets/header.php:278 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" -msgstr "" +msgstr "Beheerder" #: application/views/interface_assets/header.php:283 msgid "Global Options" -msgstr "" +msgstr "Globale opties" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 -#: application/views/statistics/index.php:48 -#: application/views/statistics/index.php:102 +#: application/views/statistics/index.php:50 +#: application/views/statistics/index.php:111 msgid "Satellites" -msgstr "" +msgstr "Satellieten" #: application/views/interface_assets/header.php:295 msgid "Update Country Files" -msgstr "" +msgstr "Update landbestanden" #: application/views/interface_assets/header.php:299 msgid "Debug Information" @@ -8458,399 +8902,406 @@ msgstr "" #: application/views/interface_assets/header.php:346 msgid "Add/Search Callsign" -msgstr "" +msgstr "Toevoegen/Zoeken Roepnaam" #: application/views/interface_assets/header.php:348 msgid "Log" -msgstr "" +msgstr "Logboek" #: application/views/interface_assets/header.php:355 #: application/views/logbookadvanced/index.php:528 #: application/views/oqrs/index.php:27 application/views/user/edit.php:461 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" -msgstr "" +msgstr "Zoek roepnaam" #: application/views/interface_assets/header.php:382 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" -msgstr "" +msgstr "Op: %s" #: application/views/interface_assets/header.php:393 #: application/views/user/edit.php:54 msgid "Account" -msgstr "" +msgstr "Account" #: application/views/interface_assets/header.php:405 msgid "Switch to Clubstation:" -msgstr "" +msgstr "Schakel over naar clubstation:" #: application/views/interface_assets/header.php:409 #, php-format msgid "Switch to %s" -msgstr "" +msgstr "Schakel over naar %s" #: application/views/interface_assets/header.php:413 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" -msgstr "" +msgstr "Beheer %s" #: application/views/interface_assets/header.php:422 msgid "No Clubstations available" -msgstr "" +msgstr "Geen clubstations beschikbaar" #: application/views/interface_assets/header.php:430 msgid "Other Export Options" -msgstr "" +msgstr "Andere exportopties" #: application/views/interface_assets/header.php:438 msgid "Cabrillo Export" -msgstr "" +msgstr "Cabrillo-export" #: application/views/interface_assets/header.php:440 msgid "EDI Export" -msgstr "" +msgstr "EDI-export" #: application/views/interface_assets/header.php:464 msgid "QSL Queue" -msgstr "" +msgstr "QSL Wachtrij" #: application/views/interface_assets/header.php:465 msgid "Labels" -msgstr "" +msgstr "Labels" #: application/views/interface_assets/header.php:467 msgid "Third-Party Services" -msgstr "" +msgstr "Diensten van derden" #: application/views/interface_assets/header.php:470 msgid "eQSL Import / Export" -msgstr "" +msgstr "eQSL importeren / exporteren" #: application/views/interface_assets/header.php:471 msgid "HRDLog Logbook" -msgstr "" +msgstr "HRDLog Logboek" #: application/views/interface_assets/header.php:484 msgid "Help" -msgstr "" +msgstr "Help" #: application/views/interface_assets/header.php:485 msgid "Forum" -msgstr "" +msgstr "Forum" #: application/views/interface_assets/header.php:489 #, php-format msgid "Stop impersonate and switch back to %s" -msgstr "" +msgstr "Stop met imiteren en schakel terug naar %s" #: application/views/interface_assets/header.php:490 #, php-format msgid "Switch back to %s" -msgstr "" +msgstr "Schakel terug naar %s" #: application/views/interface_assets/header.php:494 msgid "Logout" -msgstr "" +msgstr "Uitloggen" #: application/views/interface_assets/header.php:502 msgid "Select a Location" -msgstr "" +msgstr "Selecteer een locatie" #: application/views/interface_assets/header.php:581 msgid "Extras" -msgstr "" +msgstr "Extra's" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." msgstr "" +"Exporteer je logboek naar een KML-bestand voor gebruik in Google Earth." #: application/views/labels/create.php:24 msgid "" "Label name used for display purposes, so pick something meaningful, perhaps " "the label style." msgstr "" +"Labelnaam gebruikt voor weergavedoeleinden, dus kies iets betekenisvols, " +"misschien de labelstijl." #: application/views/labels/create.php:39 #: application/views/labels/createpaper.php:41 #: application/views/labels/edit.php:41 #: application/views/labels/editpaper.php:41 msgid "Measurement used" -msgstr "" +msgstr "Gebruikte eenheid" #: application/views/labels/create.php:42 #: application/views/labels/createpaper.php:44 #: application/views/labels/edit.php:44 #: application/views/labels/editpaper.php:44 msgid "Millimeters" -msgstr "" +msgstr "Millimeters" #: application/views/labels/create.php:43 #: application/views/labels/createpaper.php:45 #: application/views/labels/edit.php:45 #: application/views/labels/editpaper.php:45 msgid "Inches" -msgstr "" +msgstr "Inches" #: application/views/labels/create.php:49 application/views/labels/edit.php:51 msgid "Margin Top" -msgstr "" +msgstr "Marge bovenkant" #: application/views/labels/create.php:52 application/views/labels/edit.php:54 msgid "Top margin of labels" -msgstr "" +msgstr "Bovenmarge van etiketten" #: application/views/labels/create.php:55 application/views/labels/edit.php:57 msgid "Margin Left" -msgstr "" +msgstr "Marge links" #: application/views/labels/create.php:58 application/views/labels/edit.php:60 msgid "Left margin of labels." -msgstr "" +msgstr "Linkermarge van etiketten." #: application/views/labels/create.php:63 application/views/labels/edit.php:65 msgid "Labels horizontally" -msgstr "" +msgstr "Labels horizontaal" #: application/views/labels/create.php:66 application/views/labels/edit.php:68 msgid "Number of labels horizontally across the page." -msgstr "" +msgstr "Aantal labels horizontaal over de pagina." #: application/views/labels/create.php:69 application/views/labels/edit.php:71 msgid "Labels vertically" -msgstr "" +msgstr "Labels verticaal" #: application/views/labels/create.php:72 application/views/labels/edit.php:74 msgid "Number of labels vertically across the page." -msgstr "" +msgstr "Aantal labels verticaal over de pagina." #: application/views/labels/create.php:77 application/views/labels/edit.php:79 msgid "Horizontal space" -msgstr "" +msgstr "Horizontale ruimte" #: application/views/labels/create.php:80 application/views/labels/edit.php:82 msgid "Horizontal space between 2 labels." -msgstr "" +msgstr "Horizontale ruimte tussen 2 labels." #: application/views/labels/create.php:83 application/views/labels/edit.php:85 msgid "Vertical space" -msgstr "" +msgstr "Verticale ruimte" #: application/views/labels/create.php:86 application/views/labels/edit.php:88 msgid "Vertical space between 2 labels." -msgstr "" +msgstr "Verticale ruimte tussen 2 labels." #: application/views/labels/create.php:91 application/views/labels/edit.php:93 msgid "Width of label" -msgstr "" +msgstr "Breedte van etiket" #: application/views/labels/create.php:94 application/views/labels/edit.php:96 msgid "Total width of one label." -msgstr "" +msgstr "Totale breedte van één etiket." #: application/views/labels/create.php:97 application/views/labels/edit.php:99 msgid "Height of label" -msgstr "" +msgstr "Hoogte van het etiket" #: application/views/labels/create.php:100 #: application/views/labels/edit.php:102 msgid "Total height of one label" -msgstr "" +msgstr "Totale hoogte van één etiket" #: application/views/labels/create.php:105 #: application/views/labels/edit.php:107 application/views/labels/index.php:80 msgid "Font Size" -msgstr "" +msgstr "Lettergrootte" #: application/views/labels/create.php:108 #: application/views/labels/edit.php:110 msgid "Font size used on the label don't go too big." -msgstr "" +msgstr "Het lettertype op het etiket moet niet te groot zijn." #: application/views/labels/create.php:111 #: application/views/labels/edit.php:113 msgid "QSOs on label" -msgstr "" +msgstr "Aantal QSOs op label" #: application/views/labels/create.php:117 #: application/views/labels/edit.php:118 msgid "Save Label Type" -msgstr "" +msgstr "Labeltype opslaan" #: application/views/labels/createpaper.php:36 #: application/views/labels/editpaper.php:36 msgid "Paper Type Name" -msgstr "" +msgstr "Papiernaam" #: application/views/labels/createpaper.php:39 #: application/views/labels/editpaper.php:39 msgid "Paper name used for display purposes, so pick something meaningful." -msgstr "" +msgstr "Papieren naam wordt gebruikt voor weergave, dus kies iets zinvols." #: application/views/labels/createpaper.php:51 #: application/views/labels/editpaper.php:51 msgid "Width of paper" -msgstr "" +msgstr "Breedte van papier" #: application/views/labels/createpaper.php:54 #: application/views/labels/editpaper.php:54 #: application/views/labels/editpaper.php:60 msgid "Total width of paper." -msgstr "" +msgstr "Totale breedte van het papier." #: application/views/labels/createpaper.php:57 #: application/views/labels/editpaper.php:57 msgid "Height of paper" -msgstr "" +msgstr "Hoogte van papier" #: application/views/labels/createpaper.php:60 msgid "Total height of paper" -msgstr "" +msgstr "Totale hoogte van papier" #: application/views/labels/createpaper.php:65 #: application/views/labels/createpaper.php:71 #: application/views/labels/editpaper.php:65 #: application/views/labels/editpaper.php:71 msgid "Orientation of paper" -msgstr "" +msgstr "Oriëntatie van papier" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Landscape" -msgstr "" +msgstr "Landschap" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Portrait" -msgstr "" +msgstr "Portret" #: application/views/labels/createpaper.php:75 #: application/views/labels/editpaper.php:75 msgid "Save Paper Type" -msgstr "" +msgstr "Papier type opslaan" #: application/views/labels/edit.php:24 msgid "" "Label name used for display purposes so pick something meaningful perhaps " "the label style." msgstr "" +"Labelnaam gebruikt voor weergavedoeleinden, dus kies iets zinvols, misschien " +"de labelstijl." #: application/views/labels/index.php:2 #: application/views/logbookadvanced/startatform.php:27 msgid "Mark QSL as printed" -msgstr "" +msgstr "Markeer QSL als gedrukt" #: application/views/labels/index.php:3 application/views/labels/index.php:128 msgid "Print" -msgstr "" +msgstr "Afdrukken" #: application/views/labels/index.php:33 msgid "Create New Label Type" -msgstr "" +msgstr "Nieuw labeltype maken" #: application/views/labels/index.php:34 msgid "Create New Paper Type" -msgstr "" +msgstr "Nieuw papiersoort maken" #: application/views/labels/index.php:37 msgid "Paper types" -msgstr "" +msgstr "Papiersoorten" #: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Width" -msgstr "" +msgstr "Breedte" #: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Height" -msgstr "" +msgstr "Hoogte" #: application/views/labels/index.php:45 msgid "Used by labels" -msgstr "" +msgstr "Gebruikt door labels" #: application/views/labels/index.php:46 msgid "Orientation" -msgstr "" +msgstr "Oriëntatie" #: application/views/labels/index.php:71 msgid "Label types" -msgstr "" +msgstr "Labeltypen" #: application/views/labels/index.php:81 -#: application/views/statistics/index.php:68 -#: application/views/statistics/index.php:105 +#: application/views/statistics/index.php:70 +#: application/views/statistics/index.php:114 #: application/views/widgets/qsos.php:3 msgid "QSOs" -msgstr "" +msgstr "QSOs" #: application/views/labels/index.php:82 msgid "Use For Print" -msgstr "" +msgstr "Gebruik voor print" #: application/views/labels/index.php:92 msgid "No paper assigned" -msgstr "" +msgstr "Geen papier toegewezen" #: application/views/labels/index.php:117 msgid "QSL Card Labels Pending" -msgstr "" +msgstr "QSL-kaartlabels in behandeling" #: application/views/labels/index.php:126 msgid "QSOs Waiting" -msgstr "" +msgstr "QSOs wachten" #: application/views/labels/index.php:127 msgid "View QSOs" -msgstr "" +msgstr "Bekijk QSOs" #: application/views/labels/startatform.php:4 #: application/views/logbookadvanced/startatform.php:3 msgid "Include Grid?" -msgstr "" +msgstr "Grid opnemen?" #: application/views/labels/startatform.php:10 #: application/views/logbookadvanced/startatform.php:9 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" +"Referentie opnemen? (SIG, SOTA, POTA, IOTA, WWFF; indien beschikbaar op " +"locatie)" #: application/views/labels/startatform.php:16 msgid "Include Via (if filled)?" -msgstr "" +msgstr "Via opnemen (indien ingevuld)?" #: application/views/labels/startatform.php:22 #: application/views/logbookadvanced/startatform.php:21 msgid "Start printing at?" -msgstr "" +msgstr "Begin met afdrukken om?" #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" -msgstr "" +msgstr "Kies de kolom die bewerkt moet worden:" #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:482 #: application/views/logbookadvanced/index.php:673 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" -msgstr "" +msgstr "QSL via" #: application/views/logbookadvanced/edit.php:18 msgid "QSLMSG" -msgstr "" +msgstr "QSLMSG" #: application/views/logbookadvanced/edit.php:25 msgid "LoTW Sent" -msgstr "" +msgstr "LoTW Verzonden" #: application/views/logbookadvanced/edit.php:26 msgid "LoTW Received" -msgstr "" +msgstr "LoTW Ontvangen" #: application/views/logbookadvanced/edit.php:28 msgid "QRZ Sent" @@ -9482,7 +9933,7 @@ msgstr "" #: application/views/lotw/import.php:24 msgid "Download Report" -msgstr "" +msgstr "Rapport downloaden" #: application/views/lotw/import.php:24 #, php-format @@ -9718,7 +10169,7 @@ msgid "Category" msgstr "" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 -#: application/views/qso/index.php:31 application/views/statistics/index.php:44 +#: application/views/qso/index.php:31 application/views/statistics/index.php:46 #: application/views/user/edit.php:169 msgid "General" msgstr "Algemeen" @@ -11312,7 +11763,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:15 #: application/views/search/main.php:15 msgid "Advanced Search" -msgstr "" +msgstr "Geavanceerd zoeken" #: application/views/search/cqzones.php:18 #: application/views/search/filter.php:26 @@ -12217,25 +12668,25 @@ msgid "Elevation" msgstr "" #: application/views/statistics/index.php:14 -#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:61 msgid "Years" msgstr "" -#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" msgstr "" -#: application/views/statistics/index.php:29 +#: application/views/statistics/index.php:31 msgid "Explore the logbook." msgstr "" -#: application/views/statistics/index.php:33 +#: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" msgstr "" -#: application/views/statistics/index.php:71 -#: application/views/statistics/index.php:108 +#: application/views/statistics/index.php:76 +#: application/views/statistics/index.php:117 msgid "Unique callsigns" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 1ff6cbf2b..61062f85c 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" "PO-Revision-Date: 2025-01-03 01:47+0000\n" "Last-Translator: Maciej SP2FE \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" +"PO-Revision-Date: 2025-01-27 12:34+0000\n" +"Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" @@ -575,7 +575,7 @@ msgstr "笔记 - 备份" #: application/views/bands/index.php:32 #: application/views/interface_assets/header.php:400 #: application/views/statistics/index.php:16 -#: application/views/statistics/index.php:65 +#: application/views/statistics/index.php:67 msgid "Bands" msgstr "波段" @@ -723,7 +723,7 @@ msgstr "比赛" msgid "Update Contest" msgstr "更新竞赛" -#: application/controllers/Continents.php:25 +#: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 #: application/views/interface_assets/header.php:163 @@ -1288,8 +1288,8 @@ msgstr "Clublog" #: application/views/simplefle/index.php:157 #: application/views/statistics/antennaanalytics.php:31 #: application/views/statistics/index.php:15 -#: application/views/statistics/index.php:20 -#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:64 #: application/views/timeline/index.php:19 application/views/user/edit.php:244 #: application/views/user/edit.php:267 application/views/user/edit.php:290 #: application/views/user/edit.php:313 application/views/user/edit.php:337 @@ -1562,7 +1562,7 @@ msgstr "距离" #: application/views/simplefle/index.php:156 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/antennaanalytics.php:19 -#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:22 #: application/views/timeline/index.php:7 #: application/views/timeplotter/index.php:14 #: application/views/user/edit.php:242 application/views/user/edit.php:265 @@ -1609,6 +1609,7 @@ msgstr "频率" #: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:116 +#: application/views/statistics/index.php:23 #: application/views/user/edit.php:255 application/views/user/edit.php:278 #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 @@ -2392,13 +2393,13 @@ msgstr "编辑导出地图选项" msgid "Statistics" msgstr "统计" -#: application/controllers/Statistics.php:209 +#: application/controllers/Statistics.php:238 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "QSL 统计信息" -#: application/controllers/Statistics.php:224 +#: application/controllers/Statistics.php:253 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" @@ -2933,82 +2934,82 @@ msgstr "HRDlog:无 QSO 可供上传,台站呼号为: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog:无台站配置信息。" -#: application/models/Logbook_model.php:3875 +#: application/models/Logbook_model.php:3899 #, 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:3876 +#: application/models/Logbook_model.php:3900 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "请查看 ADIF 错误提示 %s。" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "QSO on" msgstr "QSO 时间" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 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:4187 +#: application/models/Logbook_model.php:4211 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4198 +#: application/models/Logbook_model.php:4222 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4259 +#: application/models/Logbook_model.php:4283 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date 字段错误( YYYYMMDD)" -#: application/models/Logbook_model.php:4279 +#: application/models/Logbook_model.php:4303 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "the lotw_qslrdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4300 +#: application/models/Logbook_model.php:4324 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "lotw_qslsdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4581 +#: application/models/Logbook_model.php:4605 #: application/views/simplefle/index.php:40 msgid "Duplicate for" msgstr "内容重复" -#: application/models/Logbook_model.php:4642 +#: application/models/Logbook_model.php:4666 msgid "QSO could not be matched" msgstr "QSO 无法匹配" -#: application/models/Logbook_model.php:4648 +#: application/models/Logbook_model.php:4672 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" -#: application/models/Logbook_model.php:4653 +#: application/models/Logbook_model.php:4677 msgid "confirmed by award manager" msgstr "已经通过奖项管理员确认" -#: application/models/Logbook_model.php:4656 +#: application/models/Logbook_model.php:4680 msgid "confirmed by cross-check of DCL data" msgstr "已经通过 DCL 数据交叉检查确认" -#: application/models/Logbook_model.php:4659 +#: application/models/Logbook_model.php:4683 msgid "confirmation pending" msgstr "等待确认" -#: application/models/Logbook_model.php:4662 +#: application/models/Logbook_model.php:4686 msgid "unconfirmed" msgstr "未确认" -#: application/models/Logbook_model.php:4665 +#: application/models/Logbook_model.php:4689 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "未知" -#: application/models/Logbook_model.php:5475 +#: application/models/Logbook_model.php:5499 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3090,8 +3091,8 @@ msgstr "累计通联的 WAJA 数量" #: application/views/dashboard/index.php:296 #: application/views/dayswithqso/index.php:41 #: application/views/dayswithqso/index.php:81 -#: application/views/statistics/index.php:18 -#: application/views/statistics/index.php:36 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:38 #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" @@ -3574,7 +3575,7 @@ msgstr "显示" #: application/views/satellite/skedtable.php:7 #: application/views/satellite/skedtable.php:56 #: application/views/sattimers/index.php:38 -#: application/views/statistics/index.php:22 +#: application/views/statistics/index.php:24 msgid "Satellite" msgstr "卫星" @@ -6044,6 +6045,8 @@ msgstr "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 "操作员" @@ -6800,7 +6803,7 @@ msgid "VUCC Gridsquare" msgstr "VUCC 网格" #: application/views/continents/index.php:63 -#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:20 msgid "# of QSO's worked" msgstr "通联的 QSO 数量" @@ -8622,8 +8625,8 @@ msgstr "全局选项" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 -#: application/views/statistics/index.php:48 -#: application/views/statistics/index.php:102 +#: application/views/statistics/index.php:50 +#: application/views/statistics/index.php:111 msgid "Satellites" msgstr "卫星" @@ -8962,8 +8965,8 @@ msgid "Label types" msgstr "标签类型" #: application/views/labels/index.php:81 -#: application/views/statistics/index.php:68 -#: application/views/statistics/index.php:105 +#: application/views/statistics/index.php:70 +#: application/views/statistics/index.php:114 #: application/views/widgets/qsos.php:3 msgid "QSOs" msgstr "QSO" @@ -9075,7 +9078,7 @@ msgstr "卫星模式" #: application/views/logbookadvanced/edit.php:88 msgid "Band TX" -msgstr "" +msgstr "发送频段" #: application/views/logbookadvanced/edit.php:101 msgid "Band RX" @@ -9900,7 +9903,7 @@ msgid "Category" msgstr "分类" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 -#: application/views/qso/index.php:31 application/views/statistics/index.php:44 +#: application/views/qso/index.php:31 application/views/statistics/index.php:46 #: application/views/user/edit.php:169 msgid "General" msgstr "通用" @@ -12446,25 +12449,25 @@ msgid "Elevation" msgstr "仰角" #: application/views/statistics/index.php:14 -#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:61 msgid "Years" msgstr "年" -#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" msgstr "每年通联的 QSO 数量" -#: application/views/statistics/index.php:29 +#: application/views/statistics/index.php:31 msgid "Explore the logbook." msgstr "查看日志。" -#: application/views/statistics/index.php:33 +#: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" msgstr "所有" -#: application/views/statistics/index.php:71 -#: application/views/statistics/index.php:108 +#: application/views/statistics/index.php:76 +#: application/views/statistics/index.php:117 msgid "Unique callsigns" msgstr "呼号" diff --git a/application/migrations/216_tag_1_8_3.php b/application/migrations/216_tag_1_8_3.php index e6a36302e..169eac9f7 100644 --- a/application/migrations/216_tag_1_8_3.php +++ b/application/migrations/216_tag_1_8_3.php @@ -25,8 +25,10 @@ class Migration_tag_1_8_3 extends CI_Migration { $this->db->where('option_value', 'custom_text'); $this->db->update('options', array('option_value' => 'both')); - $this->db->query("INSERT INTO satellite (name, exportname, orbit) SELECT distinct 'MESAT1','', 'LEO' FROM satellite WHERE NOT EXISTS (SELECT 1 FROM satellite WHERE name = 'MESAT1');"); - $this->db->query("INSERT INTO satellitemode (name, satelliteid, uplink_mode, uplink_freq, downlink_mode, downlink_freq) SELECT 'V/U', id, 'LSB', '145925000', 'USB', '435825000' FROM satellite WHERE name = 'MESAT1' and NOT EXISTS (SELECT 1 FROM satellitemode WHERE satelliteid = satellite.id) ;"); + if ($this->db->field_exists('exportname', 'satellite')) { + $this->db->query("INSERT INTO satellite (name, exportname, orbit) SELECT distinct 'MESAT1','', 'LEO' FROM satellite WHERE NOT EXISTS (SELECT 1 FROM satellite WHERE name = 'MESAT1');"); + $this->db->query("INSERT INTO satellitemode (name, satelliteid, uplink_mode, uplink_freq, downlink_mode, downlink_freq) SELECT 'V/U', id, 'LSB', '145925000', 'USB', '435825000' FROM satellite WHERE name = 'MESAT1' and NOT EXISTS (SELECT 1 FROM satellitemode WHERE satelliteid = satellite.id) ;"); + } $this->db->query("UPDATE cron SET description = 'Up- and Download QSOs to LoTW' WHERE id = 'lotw_lotw_upload';"); //Mark MESAT1 QSOs LoTW sent state as invalid/ignore until it is recognized by LoTW diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 770e1f12c..ff9234b62 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -3178,6 +3178,30 @@ class Logbook_model extends CI_Model { return $query; } + /* Return total number of QSOs per operator */ + function total_operators($yr = 'All') { + + //Load logbook model and get station locations + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + if (!$logbooks_locations_array) { + return null; + } + + //get statistics from database + $this->db->select('IFNULL(IF(COL_OPERATOR = "", COL_STATION_CALLSIGN, COL_OPERATOR), COL_STATION_CALLSIGN) AS operator, count( * ) AS count', FALSE); + $this->db->where_in('station_id', $logbooks_locations_array); + $this->where_year($yr); + $this->db->group_by('operator'); + $this->db->order_by('count', 'DESC'); + + $query = $this->db->get($this->config->item('table_name')); + + //return result + return $query; + } + function get_QSLStats($StationLocationsArray = null) { if ($StationLocationsArray == null) { diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 8b6abf873..b3c028d4b 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -596,14 +596,12 @@ class Logbookadvanced_model extends CI_Model { } function get_modes() { - if (!$this->logbooks_locations_array) { - return null; - } $modes = array(); $this->db->select('distinct col_mode, coalesce(col_submode, "") col_submode', FALSE); - $this->db->where_in('station_id', $this->logbooks_locations_array); + $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); + $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); $this->db->order_by('col_mode, col_submode', 'ASC'); $query = $this->db->get($this->config->item('table_name')); @@ -619,6 +617,57 @@ class Logbookadvanced_model extends CI_Model { return $modes; } + function get_worked_bands() { + // get all worked slots from database + $sql = "SELECT distinct LOWER(`COL_BAND`) as `COL_BAND` FROM `".$this->config->item('table_name')."` thcv + JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND COL_PROP_MODE != \"SAT\" ORDER BY col_band"; + + $data = $this->db->query($sql, array($this->session->userdata('user_id'))); + + $worked_slots = array(); + foreach($data->result() as $row){ + array_push($worked_slots, $row->COL_BAND); + } + + $sql = "SELECT distinct LOWER(`COL_PROP_MODE`) as `COL_PROP_MODE` FROM `".$this->config->item('table_name')."` thcv + JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND COL_PROP_MODE = \"SAT\""; + + $SAT_data = $this->db->query($sql, array($this->session->userdata('user_id'))); + + foreach($SAT_data->result() as $row){ + array_push($worked_slots, strtoupper($row->COL_PROP_MODE)); + } + + usort( + $worked_slots, + function($b, $a) { + sscanf($a, '%f%s', $ac, $ar); + sscanf($b, '%f%s', $bc, $br); + if ($ar == $br) { + return ($ac < $bc) ? -1 : 1; + } + return ($ar < $br) ? -1 : 1; + } + ); + + return $worked_slots; + } + + function get_worked_sats() { + // get all worked sats from database + $sql = "SELECT distinct col_sat_name FROM ".$this->config->item('table_name')." thcv + JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? and coalesce(col_sat_name, '') <> '' ORDER BY col_sat_name"; + + $data = $this->db->query($sql, array($this->session->userdata('user_id'))); + + $worked_sats = array(); + foreach($data->result() as $row){ + array_push($worked_sats, $row->col_sat_name); + } + + return $worked_sats; + } + function getQslsForQsoIds($ids) { $this->db->select('*'); $this->db->from($this->config->item('table_name')); diff --git a/application/views/continents/index.php b/application/views/continents/index.php index 643979e06..c72b72186 100644 --- a/application/views/continents/index.php +++ b/application/views/continents/index.php @@ -40,7 +40,7 @@ @@ -67,4 +67,4 @@ - \ No newline at end of file + diff --git a/application/views/statistics/index.php b/application/views/statistics/index.php index 568b9eae2..0829892cf 100644 --- a/application/views/statistics/index.php +++ b/application/views/statistics/index.php @@ -14,11 +14,13 @@ var lang_statistics_years = ""; var lang_statistics_modes = ""; var lang_statistics_bands = ""; + var lang_statistics_operators = ""; var lang_statistics_number_of_qso_worked_each_year = ""; var lang_statistics_year = ""; var lang_statistics_number_of_qso_worked = ""; var lang_gen_hamradio_mode = ""; var lang_gen_hamradio_band = ""; + var lang_gen_hamradio_operator = ""; var lang_gen_satellite = ""; @@ -67,6 +69,9 @@ + @@ -88,6 +93,10 @@
+
+
+
+
diff --git a/assets/js/sections/hamsat.js b/assets/js/sections/hamsat.js index 2d7cf9cd6..adaffaf7d 100644 --- a/assets/js/sections/hamsat.js +++ b/assets/js/sections/hamsat.js @@ -139,7 +139,7 @@ function loadActivationsTable(rows, show_workable_only) { for (var j=0; j < activation.grids_wkd.length; j++) { if (!grids.some(str => str.includes(activation.grids[j].substring(0, 4)))) { if (activation.grids_wkd[j] == 1) { - grids.push(""+activation.grids[j].substring(0, 4)+"") + grids.push(""+activation.grids[j].substring(0, 4)+"") } else { grids.push(""+activation.grids[j].substring(0, 4)+"") } diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index f82fcc8e4..d9b25393e 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -813,9 +813,18 @@ $(document).ready(function () { action: function (dialogItself) { $('#optionButton').prop("disabled", false); $('#closeButton').prop("disabled", true); - saveOptions(); - dialogItself.close(); - location.reload(); + saveOptions().then(() => { + dialogItself.close(); + location.reload(); + }).catch(error => { + BootstrapDialog.alert({ + title: 'Error', + message: 'An error occurred while saving options: ' + error, + type: BootstrapDialog.TYPE_DANGER, // Sets the dialog style to "danger" + closable: true, + buttonLabel: 'Close' + }); + }); } }, { @@ -1263,61 +1272,65 @@ function printlabel() { function saveOptions() { $('#saveButton').prop("disabled", true); $('#closeButton').prop("disabled", true); - $.ajax({ - url: base_url + 'index.php/logbookadvanced/setUserOptions', - type: 'post', - data: { - datetime: $('input[name="datetime"]').is(':checked') ? true : false, - de: $('input[name="de"]').is(':checked') ? true : false, - dx: $('input[name="dx"]').is(':checked') ? true : false, - mode: $('input[name="mode"]').is(':checked') ? true : false, - rsts: $('input[name="rsts"]').is(':checked') ? true : false, - rstr: $('input[name="rstr"]').is(':checked') ? true : false, - band: $('input[name="band"]').is(':checked') ? true : false, - myrefs: $('input[name="myrefs"]').is(':checked') ? true : false, - name: $('input[name="name"]').is(':checked') ? true : false, - qslvia: $('input[name="qslvia"]').is(':checked') ? true : false, - qsl: $('input[name="qsl"]').is(':checked') ? true : false, - clublog: $('input[name="clublog"]').is(':checked') ? true : false, - lotw: $('input[name="lotw"]').is(':checked') ? true : false, - eqsl: $('input[name="eqsl"]').is(':checked') ? true : false, - qslmsgs: $('input[name="qslmsgs"]').is(':checked') ? true : false, - qslmsgr: $('input[name="qslmsgr"]').is(':checked') ? true : false, - dxcc: $('input[name="dxcc"]').is(':checked') ? true : false, - state: $('input[name="state"]').is(':checked') ? true : false, - cqzone: $('input[name="cqzone"]').is(':checked') ? true : false, - ituzone: $('input[name="ituzone"]').is(':checked') ? true : false, - iota: $('input[name="iota"]').is(':checked') ? true : false, - pota: $('input[name="pota"]').is(':checked') ? true : false, - operator: $('input[name="operator"]').is(':checked') ? true : false, - comment: $('input[name="comment"]').is(':checked') ? true : false, - propagation: $('input[name="propagation"]').is(':checked') ? true : false, - contest: $('input[name="contest"]').is(':checked') ? true : false, - gridsquare: $('input[name="gridsquare"]').is(':checked') ? true : false, - sota: $('input[name="sota"]').is(':checked') ? true : false, - dok: $('input[name="dok"]').is(':checked') ? true : false, - wwff: $('input[name="wwff"]').is(':checked') ? true : false, - sig: $('input[name="sig"]').is(':checked') ? true : false, - region: $('input[name="region"]').is(':checked') ? true : false, - continent: $('input[name="continent"]').is(':checked') ? true : false, - distance: $('input[name="distance"]').is(':checked') ? true : false, - antennaazimuth: $('input[name="antennaazimuth"]').is(':checked') ? true : false, - antennaelevation: $('input[name="antennaelevation"]').is(':checked') ? true : false, - qrz: $('input[name="qrz"]').is(':checked') ? true : false, - profilename: $('input[name="profilename"]').is(':checked') ? true : false, - stationpower: $('input[name="stationpower"]').is(':checked') ? true : false, - gridsquare_layer: $('input[name="gridsquareoverlay"]').is(':checked') ? true : false, - path_lines: $('input[name="pathlines"]').is(':checked') ? true : false, - cqzone_layer: $('input[name="cqzones"]').is(':checked') ? true : false, - ituzone_layer: $('input[name="ituzones"]').is(':checked') ? true : false, - nightshadow_layer: $('input[name="nightshadow"]').is(':checked') ? true : false, - }, - success: function(data) { - $('#saveButton').prop("disabled", false); - $('#closeButton').prop("disabled", false); - }, - error: function() { - $('#saveButton').prop("disabled", false); - }, + return new Promise((resolve, reject) => { + $.ajax({ + url: base_url + 'index.php/logbookadvanced/setUserOptions', + type: 'post', + data: { + datetime: $('input[name="datetime"]').is(':checked') ? true : false, + de: $('input[name="de"]').is(':checked') ? true : false, + dx: $('input[name="dx"]').is(':checked') ? true : false, + mode: $('input[name="mode"]').is(':checked') ? true : false, + rsts: $('input[name="rsts"]').is(':checked') ? true : false, + rstr: $('input[name="rstr"]').is(':checked') ? true : false, + band: $('input[name="band"]').is(':checked') ? true : false, + myrefs: $('input[name="myrefs"]').is(':checked') ? true : false, + name: $('input[name="name"]').is(':checked') ? true : false, + qslvia: $('input[name="qslvia"]').is(':checked') ? true : false, + qsl: $('input[name="qsl"]').is(':checked') ? true : false, + clublog: $('input[name="clublog"]').is(':checked') ? true : false, + lotw: $('input[name="lotw"]').is(':checked') ? true : false, + eqsl: $('input[name="eqsl"]').is(':checked') ? true : false, + qslmsgs: $('input[name="qslmsgs"]').is(':checked') ? true : false, + qslmsgr: $('input[name="qslmsgr"]').is(':checked') ? true : false, + dxcc: $('input[name="dxcc"]').is(':checked') ? true : false, + state: $('input[name="state"]').is(':checked') ? true : false, + cqzone: $('input[name="cqzone"]').is(':checked') ? true : false, + ituzone: $('input[name="ituzone"]').is(':checked') ? true : false, + iota: $('input[name="iota"]').is(':checked') ? true : false, + pota: $('input[name="pota"]').is(':checked') ? true : false, + operator: $('input[name="operator"]').is(':checked') ? true : false, + comment: $('input[name="comment"]').is(':checked') ? true : false, + propagation: $('input[name="propagation"]').is(':checked') ? true : false, + contest: $('input[name="contest"]').is(':checked') ? true : false, + gridsquare: $('input[name="gridsquare"]').is(':checked') ? true : false, + sota: $('input[name="sota"]').is(':checked') ? true : false, + dok: $('input[name="dok"]').is(':checked') ? true : false, + wwff: $('input[name="wwff"]').is(':checked') ? true : false, + sig: $('input[name="sig"]').is(':checked') ? true : false, + region: $('input[name="region"]').is(':checked') ? true : false, + continent: $('input[name="continent"]').is(':checked') ? true : false, + distance: $('input[name="distance"]').is(':checked') ? true : false, + antennaazimuth: $('input[name="antennaazimuth"]').is(':checked') ? true : false, + antennaelevation: $('input[name="antennaelevation"]').is(':checked') ? true : false, + qrz: $('input[name="qrz"]').is(':checked') ? true : false, + profilename: $('input[name="profilename"]').is(':checked') ? true : false, + stationpower: $('input[name="stationpower"]').is(':checked') ? true : false, + gridsquare_layer: $('input[name="gridsquareoverlay"]').is(':checked') ? true : false, + path_lines: $('input[name="pathlines"]').is(':checked') ? true : false, + cqzone_layer: $('input[name="cqzones"]').is(':checked') ? true : false, + ituzone_layer: $('input[name="ituzones"]').is(':checked') ? true : false, + nightshadow_layer: $('input[name="nightshadow"]').is(':checked') ? true : false, + }, + success: function(data) { + $('#saveButton').prop("disabled", false); + $('#closeButton').prop("disabled", false); + resolve(data); + }, + error: function(error) { + $('#saveButton').prop("disabled", false); + reject(error); + }, + }); }); } diff --git a/assets/js/sections/statistics.js b/assets/js/sections/statistics.js index cf1a0c5e2..2f0e22461 100644 --- a/assets/js/sections/statistics.js +++ b/assets/js/sections/statistics.js @@ -46,6 +46,12 @@ $("a[href='#qsotab']").on('shown.bs.tab', function(e) { $("#yr").show(); }); +$("a[href='#operatorstab']").on('shown.bs.tab', function(e) { + totalOperatorQsos(); + activeTab='totalOperatorQsos()' + $("#yr").show(); +}); + $("a[href='#satqsostab']").on('shown.bs.tab', function(e) { totalSatQsosC(); activeTab='totalSatQsosC()' @@ -515,6 +521,149 @@ function totalBandQsos() { }); } +function totalOperatorQsos() { + // using this to change color of legend and label according to background color + var color = ifDarkModeThemeReturn('white', 'grey'); + + $.ajax({ + url: base_url+'index.php/statistics/get_operators', + type: 'post', + data: { yr: $("#yr option:selected").val() }, + success: function (data) { + if (data.length > 0) { + $(".operators").html(''); + $(".operators").append('

' + lang_statistics_operators + '


'); + + // appending table to hold the data + $("#operatorTable").append('' + + '' + + '' + + '' + + '' + + '' + + '' + + '
#' + lang_gen_hamradio_operator + '' + lang_statistics_number_of_qso_worked + '
'); + var labels = []; + var dataQso = []; + var totalQso = Number(0); + + var $myTable = $('.operatorTable'); + var i = 1; + + // building the rows in the table + var rowElements = data.map(function (row) { + + var $row = $(''); + + var $iterator = $('').html(i++); + var $type = $('').html(row.operator); + var $content = $('').html(row.count); + + $row.append($iterator, $type, $content); + + return $row; + }); + + // finally inserting the rows + $myTable.append(rowElements); + + $.each(data, function () { + labels.push(this.operator); + dataQso.push(this.count); + totalQso = Number(totalQso) + Number(this.count); + }); + + const COLORS = ["#3366cc", "#dc3912", "#ff9900", "#109618", "#990099", "#0099c6", "#dd4477", "#66aa00", "#b82e2e", "#316395", "#994499"] + var ctx = document.getElementById("operatorChart").getContext('2d'); + var myChart = new Chart(ctx, { + plugins: [ChartPieChartOutlabels], + type: 'doughnut', + data: { + labels: labels, + datasets: [{ + label: 'Number of QSO\'s worked', + data: dataQso, + borderColor: 'rgba(54, 162, 235, 1)', + backgroundColor: ["#3366cc", "#dc3912", "#ff9900", "#109618", "#990099", "#0099c6", "#dd4477", "#66aa00", "#b82e2e", "#316395", "#994499"], + borderWidth: 1, + }] + }, + options: { + layout: { + padding: 100 + }, + title: { + fontColor: color, + fullSize: true, + }, + responsive: true, + maintainAspectRatio: true, + plugins: { + legend: { + display: false, + labels: { + boxWidth: 15, + color: color, + font: { + size: 14, + } + }, + position: 'right', + align: "middle" + }, + outlabels: { + display: function(context) { // Hide labels with low percentage + return ((context.dataset.data[context.dataIndex] / totalQso * 100) > 1) + }, + backgroundColor: COLORS, + borderColor: COLORS, + borderRadius: 2, // Border radius of Label + borderWidth: 2, // Thickness of border + color: 'white', + stretch: 10, + padding: 0, + font: { + resizable: true, + minSize: 12, + maxSize: 25, + family: Chart.defaults.font.family, + size: Chart.defaults.font.size, + style: Chart.defaults.font.style, + lineHeight: Chart.defaults.font.lineHeight, + }, + zoomOutPercentage: 100, + textAlign: 'start', + backgroundColor: COLORS, + } + } + } + }); + + $('.operatorTable').DataTable({ + responsive: false, + ordering: false, + "scrollY": "400px", + "scrollCollapse": true, + "paging": false, + "scrollX": true, + "language": { + url: getDataTablesLanguageUrl(), + }, + bFilter: false, + bInfo: false, + }); + + // using this to change color of csv-button if dark mode is chosen + var background = $('body').css("background-color"); + + if (background != ('rgb(255, 255, 255)')) { + $(".buttons-csv").css("color", "white"); + } + } + } + }); +} + function totalSatQsos() { // using this to change color of legend and label according to background color var color = ifDarkModeThemeReturn('white', 'grey'); diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 48a295a01..a111a7872 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -567,7 +567,7 @@ msgstr "" #: application/views/bands/index.php:32 #: application/views/interface_assets/header.php:400 #: application/views/statistics/index.php:16 -#: application/views/statistics/index.php:65 +#: application/views/statistics/index.php:67 msgid "Bands" msgstr "" @@ -714,7 +714,7 @@ msgstr "" msgid "Update Contest" msgstr "" -#: application/controllers/Continents.php:25 +#: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 #: application/views/interface_assets/header.php:163 @@ -1274,8 +1274,8 @@ msgstr "" #: application/views/simplefle/index.php:157 #: application/views/statistics/antennaanalytics.php:31 #: application/views/statistics/index.php:15 -#: application/views/statistics/index.php:20 -#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:64 #: application/views/timeline/index.php:19 application/views/user/edit.php:244 #: application/views/user/edit.php:267 application/views/user/edit.php:290 #: application/views/user/edit.php:313 application/views/user/edit.php:337 @@ -1548,7 +1548,7 @@ msgstr "" #: application/views/simplefle/index.php:156 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/antennaanalytics.php:19 -#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:22 #: application/views/timeline/index.php:7 #: application/views/timeplotter/index.php:14 #: application/views/user/edit.php:242 application/views/user/edit.php:265 @@ -1595,6 +1595,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:116 +#: application/views/statistics/index.php:23 #: application/views/user/edit.php:255 application/views/user/edit.php:278 #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 @@ -2379,13 +2380,13 @@ msgstr "" msgid "Statistics" msgstr "" -#: application/controllers/Statistics.php:209 +#: application/controllers/Statistics.php:238 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "" -#: application/controllers/Statistics.php:224 +#: application/controllers/Statistics.php:253 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" @@ -2916,82 +2917,82 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:3875 +#: application/models/Logbook_model.php:3899 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:3876 +#: application/models/Logbook_model.php:3900 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 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:4187 +#: application/models/Logbook_model.php:4211 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4198 +#: application/models/Logbook_model.php:4222 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4259 +#: application/models/Logbook_model.php:4283 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4279 +#: application/models/Logbook_model.php:4303 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4300 +#: application/models/Logbook_model.php:4324 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4581 +#: application/models/Logbook_model.php:4605 #: application/views/simplefle/index.php:40 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:4642 +#: application/models/Logbook_model.php:4666 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4648 +#: application/models/Logbook_model.php:4672 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4653 +#: application/models/Logbook_model.php:4677 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4656 +#: application/models/Logbook_model.php:4680 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4659 +#: application/models/Logbook_model.php:4683 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4662 +#: application/models/Logbook_model.php:4686 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4665 +#: application/models/Logbook_model.php:4689 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5475 +#: application/models/Logbook_model.php:5499 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3073,8 +3074,8 @@ msgstr "" #: application/views/dashboard/index.php:296 #: application/views/dayswithqso/index.php:41 #: application/views/dayswithqso/index.php:81 -#: application/views/statistics/index.php:18 -#: application/views/statistics/index.php:36 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:38 #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" @@ -3557,7 +3558,7 @@ msgstr "" #: application/views/satellite/skedtable.php:7 #: application/views/satellite/skedtable.php:56 #: application/views/sattimers/index.php:38 -#: application/views/statistics/index.php:22 +#: application/views/statistics/index.php:24 msgid "Satellite" msgstr "" @@ -5921,6 +5922,8 @@ msgstr "" #: 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 "" @@ -6672,7 +6675,7 @@ msgid "VUCC Gridsquare" msgstr "" #: application/views/continents/index.php:63 -#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:20 msgid "# of QSO's worked" msgstr "" @@ -8437,8 +8440,8 @@ msgstr "" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 -#: application/views/statistics/index.php:48 -#: application/views/statistics/index.php:102 +#: application/views/statistics/index.php:50 +#: application/views/statistics/index.php:111 msgid "Satellites" msgstr "" @@ -8777,8 +8780,8 @@ msgid "Label types" msgstr "" #: application/views/labels/index.php:81 -#: application/views/statistics/index.php:68 -#: application/views/statistics/index.php:105 +#: application/views/statistics/index.php:70 +#: application/views/statistics/index.php:114 #: application/views/widgets/qsos.php:3 msgid "QSOs" msgstr "" @@ -9712,7 +9715,7 @@ msgid "Category" msgstr "" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 -#: application/views/qso/index.php:31 application/views/statistics/index.php:44 +#: application/views/qso/index.php:31 application/views/statistics/index.php:46 #: application/views/user/edit.php:169 msgid "General" msgstr "" @@ -12211,25 +12214,25 @@ msgid "Elevation" msgstr "" #: application/views/statistics/index.php:14 -#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:61 msgid "Years" msgstr "" -#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" msgstr "" -#: application/views/statistics/index.php:29 +#: application/views/statistics/index.php:31 msgid "Explore the logbook." msgstr "" -#: application/views/statistics/index.php:33 +#: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" msgstr "" -#: application/views/statistics/index.php:71 -#: application/views/statistics/index.php:108 +#: application/views/statistics/index.php:76 +#: application/views/statistics/index.php:117 msgid "Unique callsigns" msgstr "" diff --git a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo index 28ea93809..5777f19a0 100644 Binary files a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po index a3f006ed3..e4bad9743 100644 --- a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po @@ -5,12 +5,13 @@ # Casper van Lieburg , 2024. # Fabian Berg , 2024. # PE1PQX , 2025. +# Alexander , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-23 16:03+0000\n" -"Last-Translator: PE1PQX \n" +"PO-Revision-Date: 2025-01-26 15:27+0000\n" +"Last-Translator: Alexander \n" "Language-Team: Dutch \n" "Language: nl_NL\n" @@ -138,7 +139,7 @@ msgstr "1. Welkom" #: install/index.php:38 msgid "2. Pre Checks" -msgstr "2. Eerste contrôle" +msgstr "2. Voorcontrole" #: install/index.php:41 msgid "3. Configuration" @@ -276,7 +277,7 @@ msgstr "" #: install/index.php:321 msgid "" "After that, you have to restart your webserver and start the installer again." -msgstr "" +msgstr "Daarna moet je je webserver herstarten en de installer opnieuw starten." #: install/index.php:322 #, php-format @@ -339,6 +340,12 @@ msgid "" "credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " "an XML subscription. HamQTH does not always provide the locator information." msgstr "" +"Deze configuratie is optioneel. Het opzoeken van roepnamen zal beschikbaar " +"zijn voor alle gebruikers van deze installatie. Je kunt kiezen tussen " +"QRZ.com en HamQTH. Terwijl HamQTH ook zonder gebruikersnaam en wachtwoord " +"werkt, heb je inloggegevens nodig voor QRZ.com. Om ook de Call Locator in " +"QRZ.com te krijgen, heb je een XML-abonnement nodig. HamQTH biedt niet " +"altijd de locatorinformatie." #: install/index.php:368 install/index.php:449 install/index.php:901 msgid "Username" @@ -390,6 +397,8 @@ msgid "" "Optional: Enable Error Logging by setting the log threshold bigger then 0. " "Only enable this if you really need it." msgstr "" +"Optioneel: Schakel foutlogboekregistratie in door de logdrempel groter dan 0 " +"in te stellen. Schakel dit alleen in als je het echt nodig hebt." #: install/index.php:407 msgid "0 - No logs" @@ -507,7 +516,7 @@ msgstr "Achternaam" #: install/index.php:895 msgid "Callsign" -msgstr "Callsign" +msgstr "Roepnaam" #: install/index.php:905 msgid "Gridsquare/Locator" @@ -606,12 +615,16 @@ msgid "" "The callsign should not contain any pre- or suffixes as it is used as " "personal operator callsign." msgstr "" +"De roepnaam mag geen voor- of achtervoegsels bevatten, omdat deze wordt " +"gebruikt als persoonlijke operatorroepnaam." #: install/index.php:1345 msgid "" "The callsign can not contain any special characters. It's your personal " "callsign without any pre- or suffixes." msgstr "" +"De roepnaam mag geen speciale tekens bevatten. Het is je persoonlijke " +"roepnaam zonder voor- of achtervoegsels." #: install/index.php:1478 msgid "Error: At least Hostname/IP, Database Name and Username are required."